SHA256
1
0
forked from pool/u-boot

Accepting request 361454 from Base:System

1

OBS-URL: https://build.opensuse.org/request/show/361454
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=67
This commit is contained in:
Dominique Leuenberger 2016-02-26 21:18:42 +00:00 committed by Git OBS Bridge
parent 9cf390d5d5
commit 345ef19d7b
86 changed files with 611 additions and 524 deletions

View File

@ -1,35 +0,0 @@
From 1db191ae86e2f315d12ceaae800bf0b83931433e Mon Sep 17 00:00:00 2001
From: Oscar Curero <oscar@naiandei.net>
Date: Fri, 15 Jan 2016 00:46:13 +0100
Subject: [PATCH] udoo:use load instead of fatload
That way the FS can also be ext2/3/4
Signed-off-by: Oscar Curero <oscar@naiandei.net>
---
include/configs/udoo.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/configs/udoo.h b/include/configs/udoo.h
index 8ec073d..3d0cafa 100644
--- a/include/configs/udoo.h
+++ b/include/configs/udoo.h
@@ -96,11 +96,11 @@
"mmcargs=setenv bootargs console=${console},${baudrate} " \
"root=${mmcroot}\0" \
"loadbootscript=" \
- "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
+ "load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
"bootscript=echo Running bootscript from mmc ...; " \
"source\0" \
- "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
- "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
+ "loadimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
+ "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
"mmcboot=echo Booting from mmc ...; " \
"run mmcargs; " \
"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
--
2.1.4

View File

@ -1,36 +0,0 @@
From patchwork Sat Dec 12 09:27:08 2015
Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Subject: [U-Boot] am335x_evm: Don't undef CONFIG_BOOTDELAY
From: matwey.kornilov@gmail.com
X-Patchwork-Id: 555979
Message-Id: <1449912428-3715-1-git-send-email-matwey.kornilov@gmail.com>
To: u-boot@lists.denx.de,
trini@ti.com
Cc: "Matwey V. Kornilov" <matwey.kornilov@gmail.com>
Date: Sat, 12 Dec 2015 12:27:08 +0300
config_distro_defaults.h is already included in configs/ti_am335x_common.h (by means of ti_armv7_common.h)
We don't need to #undef CONFIG_BOOTDELAY because it drops default bootdelay which already defined on this line.
Signed-off-by: Matwey V. Kornilov <matwey.kornilov@gmail.com>
---
include/configs/am335x_evm.h | 4 ----
1 file changed, 4 deletions(-)
diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h
index c51db8c..cf6a606 100644
--- a/include/configs/am335x_evm.h
+++ b/include/configs/am335x_evm.h
@@ -18,10 +18,6 @@
#include <configs/ti_am335x_common.h>
-/* Don't override the distro default bootdelay */
-#undef CONFIG_BOOTDELAY
-#include <config_distro_defaults.h>
-
#ifndef CONFIG_SPL_BUILD
#ifndef CONFIG_FIT
# define CONFIG_FIT

View File

@ -1,19 +1,17 @@
--- a/arch/arm/Kconfig 2015-11-17 02:29:51.000000000 +0100 --- a/arch/arm/Kconfig 2016-02-22 14:28:53.389302698 +0100
+++ b/arch/arm/Kconfig 2015-11-25 11:12:36.541154689 +0100 +++ b/arch/arm/Kconfig 2016-02-15 22:44:30.000000000 +0100
@@ -741,10 +741,6 @@ source "arch/arm/imx-common/Kconfig" @@ -782,8 +782,6 @@ source "arch/arm/imx-common/Kconfig"
source "board/BuR/kwb/Kconfig" source "board/BuR/kwb/Kconfig"
source "board/BuR/tseries/Kconfig" source "board/BuR/tseries/Kconfig"
source "board/CarMediaLab/flea3/Kconfig" source "board/CarMediaLab/flea3/Kconfig"
-source "board/Marvell/aspenite/Kconfig" -source "board/Marvell/aspenite/Kconfig"
-source "board/Marvell/db-88f6820-gp/Kconfig"
-source "board/Marvell/db-mv784mp-gp/Kconfig"
-source "board/Marvell/gplugd/Kconfig" -source "board/Marvell/gplugd/Kconfig"
source "board/armadeus/apf27/Kconfig" source "board/armadeus/apf27/Kconfig"
source "board/armltd/vexpress/Kconfig" source "board/armltd/vexpress/Kconfig"
source "board/armltd/vexpress64/Kconfig" source "board/armltd/vexpress64/Kconfig"
--- a/arch/arm/mach-kirkwood/Kconfig 2015-11-25 11:12:36.542154670 +0100 --- a/arch/arm/mach-kirkwood/Kconfig 2016-02-15 22:44:30.000000000 +0100
+++ b/arch/arm/mach-kirkwood/Kconfig 2015-11-25 11:13:01.452700046 +0100 +++ b/arch/arm/mach-kirkwood/Kconfig 2016-02-22 14:51:13.348129705 +0100
@@ -54,10 +54,6 @@ endchoice @@ -57,10 +57,6 @@ endchoice
config SYS_SOC config SYS_SOC
default "kirkwood" default "kirkwood"

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e5792fba9399d9804aa2ef667f14ff771e2cdece72367d340250265bf095a5d5
size 10602974

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:68fde0cde843e3e0fac52da98e397ddc3032addb66c11cfb2e04fc86320418c1
size 11047372

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-a10-olinuxino-lime Name: u-boot-a10-olinuxino-lime
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the a10-olinuxino-lime arm platform Summary: The u-boot firmware for the a10-olinuxino-lime arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-a13-olinuxino Name: u-boot-a13-olinuxino
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the a13-olinuxino arm platform Summary: The u-boot firmware for the a13-olinuxino arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-a13-olinuxinom Name: u-boot-a13-olinuxinom
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the a13-olinuxinom arm platform Summary: The u-boot firmware for the a13-olinuxinom arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-a20-olinuxino-lime Name: u-boot-a20-olinuxino-lime
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the a20-olinuxino-lime arm platform Summary: The u-boot firmware for the a20-olinuxino-lime arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-a20-olinuxino-lime2 Name: u-boot-a20-olinuxino-lime2
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the a20-olinuxino-lime2 arm platform Summary: The u-boot firmware for the a20-olinuxino-lime2 arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-a20-olinuxinomicro Name: u-boot-a20-olinuxinomicro
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the a20-olinuxinomicro arm platform Summary: The u-boot firmware for the a20-olinuxinomicro arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-am335xboneblack Name: u-boot-am335xboneblack
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the am335xboneblack arm platform Summary: The u-boot firmware for the am335xboneblack arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-am335xevm Name: u-boot-am335xevm
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the am335xevm arm platform Summary: The u-boot firmware for the am335xevm arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-am57xxevm Name: u-boot-am57xxevm
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the am57xxevm arm platform Summary: The u-boot firmware for the am57xxevm arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-am57xxevmnodt Name: u-boot-am57xxevmnodt
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the am57xxevmnodt arm platform Summary: The u-boot firmware for the am57xxevmnodt arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-arndale Name: u-boot-arndale
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the arndale arm platform Summary: The u-boot firmware for the arndale arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-bananapi Name: u-boot-bananapi
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the bananapi arm platform Summary: The u-boot firmware for the bananapi arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-colibrit20 Name: u-boot-colibrit20
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the colibrit20 arm platform Summary: The u-boot firmware for the colibrit20 arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-cubieboard Name: u-boot-cubieboard
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the cubieboard arm platform Summary: The u-boot firmware for the cubieboard arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-cubieboard2 Name: u-boot-cubieboard2
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the cubieboard2 arm platform Summary: The u-boot firmware for the cubieboard2 arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-cubietruck Name: u-boot-cubietruck
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the cubietruck arm platform Summary: The u-boot firmware for the cubietruck arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-firefly-rk3288 Name: u-boot-firefly-rk3288
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the firefly-rk3288 arm platform Summary: The u-boot firmware for the firefly-rk3288 arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-highbank Name: u-boot-highbank
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the highbank arm platform Summary: The u-boot firmware for the highbank arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-hyundaia7hd Name: u-boot-hyundaia7hd
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the hyundaia7hd arm platform Summary: The u-boot firmware for the hyundaia7hd arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-jetson-tk1 Name: u-boot-jetson-tk1
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the jetson-tk1 arm platform Summary: The u-boot firmware for the jetson-tk1 arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-melea1000 Name: u-boot-melea1000
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the melea1000 arm platform Summary: The u-boot firmware for the melea1000 arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-merriia80optimus Name: u-boot-merriia80optimus
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the merriia80optimus arm platform Summary: The u-boot firmware for the merriia80optimus arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-mx53loco Name: u-boot-mx53loco
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the mx53loco arm platform Summary: The u-boot firmware for the mx53loco arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-mx6cuboxi Name: u-boot-mx6cuboxi
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the mx6cuboxi arm platform Summary: The u-boot firmware for the mx6cuboxi arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-mx6qsabrelite Name: u-boot-mx6qsabrelite
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the mx6qsabrelite arm platform Summary: The u-boot firmware for the mx6qsabrelite arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-odroid-xu3 Name: u-boot-odroid-xu3
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the odroid-xu3 arm platform Summary: The u-boot firmware for the odroid-xu3 arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-odroid Name: u-boot-odroid
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the odroid arm platform Summary: The u-boot firmware for the odroid arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-omap3beagle Name: u-boot-omap3beagle
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the omap3beagle arm platform Summary: The u-boot firmware for the omap3beagle arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-omap4panda Name: u-boot-omap4panda
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the omap4panda arm platform Summary: The u-boot firmware for the omap4panda arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-orangepipc Name: u-boot-orangepipc
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the orangepipc arm platform Summary: The u-boot firmware for the orangepipc arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-p2371-2180 Name: u-boot-p2371-2180
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the p2371-2180 arm platform Summary: The u-boot firmware for the p2371-2180 arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-paz00 Name: u-boot-paz00
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the paz00 arm platform Summary: The u-boot firmware for the paz00 arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-pcm051rev3 Name: u-boot-pcm051rev3
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the pcm051rev3 arm platform Summary: The u-boot firmware for the pcm051rev3 arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-qemu-ppce500 Name: u-boot-qemu-ppce500
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the qemu-ppce500 arm platform Summary: The u-boot firmware for the qemu-ppce500 arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-rpi Name: u-boot-rpi
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the rpi arm platform Summary: The u-boot firmware for the rpi arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-rpi2 Name: u-boot-rpi2
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the rpi2 arm platform Summary: The u-boot firmware for the rpi2 arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-snow Name: u-boot-snow
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the snow arm platform Summary: The u-boot firmware for the snow arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-spring Name: u-boot-spring
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the spring arm platform Summary: The u-boot firmware for the spring arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -26,10 +26,10 @@
%define udoo_spl 1 %define udoo_spl 1
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-udoo Name: u-boot-udoo
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the udoo arm platform Summary: The u-boot firmware for the udoo arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org
- Update to 2016.03-rc2
- Remove upstreamed patches:
* U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
* 0001-udoo-use-load-instead-of-fatload.patch
- Refresh drop-marvell.patch
- Remove dropped doc from file list: doc/README.Modem
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org

View File

@ -19,10 +19,10 @@
# 'archive_version' differs from 'version' for RC version only # 'archive_version' differs from 'version' for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot Name: u-boot
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: Tools for the u-boot Firmware Summary: Tools for the u-boot Firmware
License: GPL-2.0 License: GPL-2.0

View File

@ -26,10 +26,10 @@
%define udoo_spl UDOO_SPL %define udoo_spl UDOO_SPL
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2016.01 %define archive_version 2016.03-rc2
Name: u-boot-BOARDNAME Name: u-boot-BOARDNAME
Version: 2016.01 Version: 2016.03~rc2
Release: 0 Release: 0
Summary: The u-boot firmware for the BOARDNAME arm platform Summary: The u-boot firmware for the BOARDNAME arm platform
License: GPL-2.0 License: GPL-2.0
@ -38,14 +38,10 @@ Url: http://www.denx.de/wiki/U-Boot
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
Source2: arndale-bl1.img Source2: arndale-bl1.img
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
# Backport UPSTREAM patch: Fix bootdelay on Beaglebone board
Patch1: U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch
# PATCH-FIX-UPSTREAM udoo-fix-fatload.patch -- fix udoo booting
Patch2: 0001-udoo-use-load-instead-of-fatload.patch
# Fix exynos KVM support # Fix exynos KVM support
Patch3: u-boot-exynos.patch Patch1: u-boot-exynos.patch
# PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available # PATCH-FIX-UPSTREAM fix boot on partition when RAW mode is also available
Patch4: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch Patch2: 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824) # Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -85,8 +81,6 @@ This package contains documentation for u-boot firmware
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch1 -p1 %patch1 -p1
%patch2 -p1 %patch2 -p1
%patch3 -p1
%patch4 -p1
# is non-free licensed, and we don't need it (bnc#773824) # is non-free licensed, and we don't need it (bnc#773824)
rm -rf board/Marvell rm -rf board/Marvell
%patch99 -p1 %patch99 -p1
@ -162,7 +156,7 @@ install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns %doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi %doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb %doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem %doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
# Copy some useful kermit scripts as well # Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image %doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation # Now any h/w dependent Documentation