diff --git a/0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch b/0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch deleted file mode 100644 index 08e983a..0000000 --- a/0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch +++ /dev/null @@ -1,60 +0,0 @@ -From 755324c432f62306487786f89efce96398291a03 Mon Sep 17 00:00:00 2001 -From: "Matwey V. Kornilov" -Date: Thu, 29 Oct 2015 21:54:15 +0300 -Subject: [PATCH] configs: Use config_distro_defaults.h in ti_armv7_common.h - -CONFIG_BOOTDELAY is defined in config_distro_defaults.h - -Signed-off-by: Matwey V. Kornilov -[trini: Drop omap3_logic.h settings which were a warning and no longer - correct usage]. -Signed-off-by: Tom Rini ---- - include/configs/omap3_logic.h | 9 --------- - include/configs/ti_armv7_common.h | 7 ++----- - 2 files changed, 2 insertions(+), 14 deletions(-) - -diff --git a/include/configs/omap3_logic.h b/include/configs/omap3_logic.h -index ecd5615..7b60f29 100644 ---- a/include/configs/omap3_logic.h -+++ b/include/configs/omap3_logic.h -@@ -272,13 +272,4 @@ - - #endif /* (CONFIG_CMD_NET) */ - --/* -- * BOOTP fields -- */ -- --#define CONFIG_BOOTP_SUBNETMASK 0x00000001 --#define CONFIG_BOOTP_GATEWAY 0x00000002 --#define CONFIG_BOOTP_HOSTNAME 0x00000004 --#define CONFIG_BOOTP_BOOTPATH 0x00000010 -- - #endif /* __CONFIG_H */ -diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h -index 32bb805..7810dd6 100644 ---- a/include/configs/ti_armv7_common.h -+++ b/include/configs/ti_armv7_common.h -@@ -67,11 +67,6 @@ - "rootfstype=${mmcrootfstype}\0" - - /* -- * Default to a quick boot delay. -- */ --#define CONFIG_BOOTDELAY 1 -- --/* - * DDR information. If the CONFIG_NR_DRAM_BANKS is not defined, - * we say (for simplicity) that we have 1 bank, always, even when - * we have more. We always start at 0x80000000, and we place the -@@ -288,4 +283,6 @@ - #define NETARGS "" - #endif - -+#include -+ - #endif /* __CONFIG_TI_ARMV7_COMMON_H__ */ --- -2.1.4 - diff --git a/0001-mx6cuboxi-use-load-instead-of-fatload.patch b/0001-mx6cuboxi-use-load-instead-of-fatload.patch deleted file mode 100644 index cb26bfe..0000000 --- a/0001-mx6cuboxi-use-load-instead-of-fatload.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 80416e65668e210019b4e12bff563053cd4d2188 Mon Sep 17 00:00:00 2001 -From: Thomas Bechtold -Date: Sat, 14 Nov 2015 19:21:28 +0100 -Subject: [PATCH] mx6cuboxi: use load instead of fatload - -That way the FS can also be ext2/3/4 . ---- - include/configs/mx6cuboxi.h | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/include/configs/mx6cuboxi.h b/include/configs/mx6cuboxi.h -index 6e89dd1..690e6b0 100644 ---- a/include/configs/mx6cuboxi.h -+++ b/include/configs/mx6cuboxi.h -@@ -114,11 +114,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_r} ${fdtfile}\0" \ -+ "loadimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \ -+ "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr_r} ${fdtfile}\0" \ - "mmcboot=echo Booting from mmc ...; " \ - "run mmcargs; " \ - "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ --- -2.6.2 - diff --git a/U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch b/U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch deleted file mode 100644 index 5af4b30..0000000 --- a/U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +++ /dev/null @@ -1,36 +0,0 @@ -From patchwork Tue Oct 27 23:06:43 2015 -Content-Type: text/plain; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit -Subject: [U-Boot] image.c: Fix non-Android booting with ramdisk and/or device - tree -From: Tom Rini -X-Patchwork-Id: 537133 -Message-Id: <1445987203-23097-1-git-send-email-trini@konsulko.com> -To: u-boot@lists.denx.de -Date: Tue, 27 Oct 2015 19:06:43 -0400 - -In 1fec3c5 I added a check that if we had an Android image we default to -trying the kernel address for a ramdisk. However when we don't have an -Android image buf is NULL and we oops here. Ensure that we have 'buf' -to check first. - -Reported-by: elipe Balbi -Signed-off-by: Tom Rini ---- - common/image.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/common/image.c b/common/image.c -index e607109..85c4f39 100644 ---- a/common/image.c -+++ b/common/image.c -@@ -913,7 +913,7 @@ int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images, - * Look for an Android boot image. - */ - buf = map_sysmem(images->os.start, 0); -- if (genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) -+ if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) - select = argv[0]; - #endif - diff --git a/drop-marvell.patch b/drop-marvell.patch index 34f857f..bf1a525 100644 --- a/drop-marvell.patch +++ b/drop-marvell.patch @@ -1,8 +1,6 @@ -diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig -index 0b07e08..f7ba454 100644 ---- a/arch/arm/Kconfig -+++ b/arch/arm/Kconfig -@@ -710,10 +710,6 @@ source "arch/arm/imx-common/Kconfig" +--- a/arch/arm/Kconfig 2015-11-17 02:29:51.000000000 +0100 ++++ b/arch/arm/Kconfig 2015-11-25 11:12:36.541154689 +0100 +@@ -741,10 +741,6 @@ source "arch/arm/imx-common/Kconfig" source "board/BuR/kwb/Kconfig" source "board/BuR/tseries/Kconfig" source "board/CarMediaLab/flea3/Kconfig" @@ -13,14 +11,13 @@ index 0b07e08..f7ba454 100644 source "board/armadeus/apf27/Kconfig" source "board/armltd/vexpress/Kconfig" source "board/armltd/vexpress64/Kconfig" -diff --git a/arch/arm/mach-kirkwood/Kconfig b/arch/arm/mach-kirkwood/Kconfig -index aab5d19..44ba805 100644 ---- a/arch/arm/mach-kirkwood/Kconfig -+++ b/arch/arm/mach-kirkwood/Kconfig -@@ -51,9 +51,6 @@ endchoice +--- a/arch/arm/mach-kirkwood/Kconfig 2015-11-25 11:12:36.542154670 +0100 ++++ b/arch/arm/mach-kirkwood/Kconfig 2015-11-25 11:13:01.452700046 +0100 +@@ -54,10 +54,6 @@ endchoice config SYS_SOC default "kirkwood" +-source "board/Marvell/openrd/Kconfig" -source "board/Marvell/dreamplug/Kconfig" -source "board/Marvell/guruplug/Kconfig" -source "board/Marvell/sheevaplug/Kconfig" diff --git a/u-boot-2015.10.tar.bz2 b/u-boot-2015.10.tar.bz2 deleted file mode 100644 index 43a687d..0000000 --- a/u-boot-2015.10.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bdc68d5f9455ad933b059c735d983f2c8b6b552dafb062e5ff1444f623021955 -size 10416503 diff --git a/u-boot-2016.01-rc1.tar.bz2 b/u-boot-2016.01-rc1.tar.bz2 new file mode 100644 index 0000000..f13df30 --- /dev/null +++ b/u-boot-2016.01-rc1.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe14a3cd39fd5482fd092c48aaa8ac0a90f629aad6109dd2132de81881bc6d41 +size 10515444 diff --git a/u-boot-a10-olinuxino-lime.changes b/u-boot-a10-olinuxino-lime.changes index 50cf8dc..15c973d 100644 --- a/u-boot-a10-olinuxino-lime.changes +++ b/u-boot-a10-olinuxino-lime.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-a10-olinuxino-lime.spec b/u-boot-a10-olinuxino-lime.spec index ad03fc4..bd0b4ab 100644 --- a/u-boot-a10-olinuxino-lime.spec +++ b/u-boot-a10-olinuxino-lime.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-a10-olinuxino-lime -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the a10-olinuxino-lime arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-a13-olinuxino.changes b/u-boot-a13-olinuxino.changes index 50cf8dc..15c973d 100644 --- a/u-boot-a13-olinuxino.changes +++ b/u-boot-a13-olinuxino.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-a13-olinuxino.spec b/u-boot-a13-olinuxino.spec index f77923b..bc1ae26 100644 --- a/u-boot-a13-olinuxino.spec +++ b/u-boot-a13-olinuxino.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-a13-olinuxino -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the a13-olinuxino arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-a13-olinuxinom.changes b/u-boot-a13-olinuxinom.changes index 50cf8dc..15c973d 100644 --- a/u-boot-a13-olinuxinom.changes +++ b/u-boot-a13-olinuxinom.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-a13-olinuxinom.spec b/u-boot-a13-olinuxinom.spec index fa96db3..c5cc6ef 100644 --- a/u-boot-a13-olinuxinom.spec +++ b/u-boot-a13-olinuxinom.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-a13-olinuxinom -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the a13-olinuxinom arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-a20-olinuxino-lime.changes b/u-boot-a20-olinuxino-lime.changes index 50cf8dc..15c973d 100644 --- a/u-boot-a20-olinuxino-lime.changes +++ b/u-boot-a20-olinuxino-lime.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-a20-olinuxino-lime.spec b/u-boot-a20-olinuxino-lime.spec index 3b61492..270c890 100644 --- a/u-boot-a20-olinuxino-lime.spec +++ b/u-boot-a20-olinuxino-lime.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-a20-olinuxino-lime -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the a20-olinuxino-lime arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-a20-olinuxino-lime2.changes b/u-boot-a20-olinuxino-lime2.changes index 50cf8dc..15c973d 100644 --- a/u-boot-a20-olinuxino-lime2.changes +++ b/u-boot-a20-olinuxino-lime2.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-a20-olinuxino-lime2.spec b/u-boot-a20-olinuxino-lime2.spec index 2c78a3a..302e193 100644 --- a/u-boot-a20-olinuxino-lime2.spec +++ b/u-boot-a20-olinuxino-lime2.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-a20-olinuxino-lime2 -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the a20-olinuxino-lime2 arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-a20-olinuxinomicro.changes b/u-boot-a20-olinuxinomicro.changes index 50cf8dc..15c973d 100644 --- a/u-boot-a20-olinuxinomicro.changes +++ b/u-boot-a20-olinuxinomicro.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-a20-olinuxinomicro.spec b/u-boot-a20-olinuxinomicro.spec index 84aa110..436d8aa 100644 --- a/u-boot-a20-olinuxinomicro.spec +++ b/u-boot-a20-olinuxinomicro.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-a20-olinuxinomicro -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the a20-olinuxinomicro arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-am335xevm.changes b/u-boot-am335xevm.changes index 50cf8dc..15c973d 100644 --- a/u-boot-am335xevm.changes +++ b/u-boot-am335xevm.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-am335xevm.spec b/u-boot-am335xevm.spec index 75510d4..cb2abfc 100644 --- a/u-boot-am335xevm.spec +++ b/u-boot-am335xevm.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-am335xevm -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the am335xevm arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-arndale.changes b/u-boot-arndale.changes index 50cf8dc..15c973d 100644 --- a/u-boot-arndale.changes +++ b/u-boot-arndale.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-arndale.spec b/u-boot-arndale.spec index 359c877..e8a5fe2 100644 --- a/u-boot-arndale.spec +++ b/u-boot-arndale.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-arndale -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the arndale arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-bananapi.changes b/u-boot-bananapi.changes index 50cf8dc..15c973d 100644 --- a/u-boot-bananapi.changes +++ b/u-boot-bananapi.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-bananapi.spec b/u-boot-bananapi.spec index 5be3bac..0ff2d45 100644 --- a/u-boot-bananapi.spec +++ b/u-boot-bananapi.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-bananapi -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the bananapi arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-beaglex15.changes b/u-boot-beaglex15.changes index 50cf8dc..15c973d 100644 --- a/u-boot-beaglex15.changes +++ b/u-boot-beaglex15.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-beaglex15.spec b/u-boot-beaglex15.spec index f7785de..21c3a62 100644 --- a/u-boot-beaglex15.spec +++ b/u-boot-beaglex15.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-beaglex15 -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the beaglex15 arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-colibrit20.changes b/u-boot-colibrit20.changes index 50cf8dc..15c973d 100644 --- a/u-boot-colibrit20.changes +++ b/u-boot-colibrit20.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-colibrit20.spec b/u-boot-colibrit20.spec index edc190f..7c50be3 100644 --- a/u-boot-colibrit20.spec +++ b/u-boot-colibrit20.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-colibrit20 -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the colibrit20 arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-cubieboard.changes b/u-boot-cubieboard.changes index 50cf8dc..15c973d 100644 --- a/u-boot-cubieboard.changes +++ b/u-boot-cubieboard.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-cubieboard.spec b/u-boot-cubieboard.spec index f2f1c65..84ad04a 100644 --- a/u-boot-cubieboard.spec +++ b/u-boot-cubieboard.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-cubieboard -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the cubieboard arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-cubieboard2.changes b/u-boot-cubieboard2.changes index 50cf8dc..15c973d 100644 --- a/u-boot-cubieboard2.changes +++ b/u-boot-cubieboard2.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-cubieboard2.spec b/u-boot-cubieboard2.spec index 0f88f5a..a233f70 100644 --- a/u-boot-cubieboard2.spec +++ b/u-boot-cubieboard2.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-cubieboard2 -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the cubieboard2 arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-cubietruck.changes b/u-boot-cubietruck.changes index 50cf8dc..15c973d 100644 --- a/u-boot-cubietruck.changes +++ b/u-boot-cubietruck.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-cubietruck.spec b/u-boot-cubietruck.spec index df44a12..b704361 100644 --- a/u-boot-cubietruck.spec +++ b/u-boot-cubietruck.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-cubietruck -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the cubietruck arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-firefly-rk3288.changes b/u-boot-firefly-rk3288.changes index 50cf8dc..15c973d 100644 --- a/u-boot-firefly-rk3288.changes +++ b/u-boot-firefly-rk3288.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-firefly-rk3288.spec b/u-boot-firefly-rk3288.spec index 68720f7..ace4263 100644 --- a/u-boot-firefly-rk3288.spec +++ b/u-boot-firefly-rk3288.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-firefly-rk3288 -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the firefly-rk3288 arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-highbank.changes b/u-boot-highbank.changes index 50cf8dc..15c973d 100644 --- a/u-boot-highbank.changes +++ b/u-boot-highbank.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-highbank.spec b/u-boot-highbank.spec index c638936..b30d136 100644 --- a/u-boot-highbank.spec +++ b/u-boot-highbank.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-highbank -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the highbank arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-jetson-tk1.changes b/u-boot-jetson-tk1.changes index 50cf8dc..15c973d 100644 --- a/u-boot-jetson-tk1.changes +++ b/u-boot-jetson-tk1.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-jetson-tk1.spec b/u-boot-jetson-tk1.spec index 8d1c327..432c0ac 100644 --- a/u-boot-jetson-tk1.spec +++ b/u-boot-jetson-tk1.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-jetson-tk1 -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the jetson-tk1 arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-melea1000.changes b/u-boot-melea1000.changes index 50cf8dc..15c973d 100644 --- a/u-boot-melea1000.changes +++ b/u-boot-melea1000.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-melea1000.spec b/u-boot-melea1000.spec index 16692e8..a66cbb5 100644 --- a/u-boot-melea1000.spec +++ b/u-boot-melea1000.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-melea1000 -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the melea1000 arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-merriia80optimus.changes b/u-boot-merriia80optimus.changes index 50cf8dc..15c973d 100644 --- a/u-boot-merriia80optimus.changes +++ b/u-boot-merriia80optimus.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-merriia80optimus.spec b/u-boot-merriia80optimus.spec index d15035a..b7d9a9c 100644 --- a/u-boot-merriia80optimus.spec +++ b/u-boot-merriia80optimus.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-merriia80optimus -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the merriia80optimus arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-mx53loco.changes b/u-boot-mx53loco.changes index 50cf8dc..15c973d 100644 --- a/u-boot-mx53loco.changes +++ b/u-boot-mx53loco.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-mx53loco.spec b/u-boot-mx53loco.spec index 9c2fccf..7b71c5f 100644 --- a/u-boot-mx53loco.spec +++ b/u-boot-mx53loco.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-mx53loco -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the mx53loco arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-mx6cuboxi.changes b/u-boot-mx6cuboxi.changes index 50cf8dc..15c973d 100644 --- a/u-boot-mx6cuboxi.changes +++ b/u-boot-mx6cuboxi.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-mx6cuboxi.spec b/u-boot-mx6cuboxi.spec index 7ba3632..602177c 100644 --- a/u-boot-mx6cuboxi.spec +++ b/u-boot-mx6cuboxi.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 1 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-mx6cuboxi -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the mx6cuboxi arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-mx6qsabrelite.changes b/u-boot-mx6qsabrelite.changes index 50cf8dc..15c973d 100644 --- a/u-boot-mx6qsabrelite.changes +++ b/u-boot-mx6qsabrelite.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-mx6qsabrelite.spec b/u-boot-mx6qsabrelite.spec index ea92c3c..9f73f2a 100644 --- a/u-boot-mx6qsabrelite.spec +++ b/u-boot-mx6qsabrelite.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-mx6qsabrelite -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the mx6qsabrelite arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-odroid-xu3.changes b/u-boot-odroid-xu3.changes index 50cf8dc..15c973d 100644 --- a/u-boot-odroid-xu3.changes +++ b/u-boot-odroid-xu3.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-odroid-xu3.spec b/u-boot-odroid-xu3.spec index bccd443..9352846 100644 --- a/u-boot-odroid-xu3.spec +++ b/u-boot-odroid-xu3.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-odroid-xu3 -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the odroid-xu3 arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-odroid.changes b/u-boot-odroid.changes index 50cf8dc..15c973d 100644 --- a/u-boot-odroid.changes +++ b/u-boot-odroid.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-odroid.spec b/u-boot-odroid.spec index efcbbc8..f10479d 100644 --- a/u-boot-odroid.spec +++ b/u-boot-odroid.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-odroid -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the odroid arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-omap3beagle.changes b/u-boot-omap3beagle.changes index 50cf8dc..15c973d 100644 --- a/u-boot-omap3beagle.changes +++ b/u-boot-omap3beagle.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-omap3beagle.spec b/u-boot-omap3beagle.spec index 5c8503c..f368717 100644 --- a/u-boot-omap3beagle.spec +++ b/u-boot-omap3beagle.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-omap3beagle -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the omap3beagle arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-omap4panda.changes b/u-boot-omap4panda.changes index 50cf8dc..15c973d 100644 --- a/u-boot-omap4panda.changes +++ b/u-boot-omap4panda.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-omap4panda.spec b/u-boot-omap4panda.spec index 2fd631c..8976814 100644 --- a/u-boot-omap4panda.spec +++ b/u-boot-omap4panda.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-omap4panda -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the omap4panda arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-paz00.changes b/u-boot-paz00.changes index 50cf8dc..15c973d 100644 --- a/u-boot-paz00.changes +++ b/u-boot-paz00.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-paz00.spec b/u-boot-paz00.spec index 44c21ce..fc62553 100644 --- a/u-boot-paz00.spec +++ b/u-boot-paz00.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-paz00 -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the paz00 arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-pcm051rev3.changes b/u-boot-pcm051rev3.changes index 50cf8dc..15c973d 100644 --- a/u-boot-pcm051rev3.changes +++ b/u-boot-pcm051rev3.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-pcm051rev3.spec b/u-boot-pcm051rev3.spec index 9bd638e..afddeed 100644 --- a/u-boot-pcm051rev3.spec +++ b/u-boot-pcm051rev3.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-pcm051rev3 -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the pcm051rev3 arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-rpi.changes b/u-boot-rpi.changes index 50cf8dc..15c973d 100644 --- a/u-boot-rpi.changes +++ b/u-boot-rpi.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-rpi.spec b/u-boot-rpi.spec index 883ee66..91f308a 100644 --- a/u-boot-rpi.spec +++ b/u-boot-rpi.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-rpi -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the rpi arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-rpi2.changes b/u-boot-rpi2.changes index 50cf8dc..15c973d 100644 --- a/u-boot-rpi2.changes +++ b/u-boot-rpi2.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-rpi2.spec b/u-boot-rpi2.spec index 4ac7754..b326538 100644 --- a/u-boot-rpi2.spec +++ b/u-boot-rpi2.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-rpi2 -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the rpi2 arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-snow.changes b/u-boot-snow.changes index 50cf8dc..15c973d 100644 --- a/u-boot-snow.changes +++ b/u-boot-snow.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-snow.spec b/u-boot-snow.spec index e5108fe..6e81ecf 100644 --- a/u-boot-snow.spec +++ b/u-boot-snow.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-snow -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the snow arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot-spring.changes b/u-boot-spring.changes index 50cf8dc..15c973d 100644 --- a/u-boot-spring.changes +++ b/u-boot-spring.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot-spring.spec b/u-boot-spring.spec index 4445d29..1a59dd3 100644 --- a/u-boot-spring.spec +++ b/u-boot-spring.spec @@ -25,10 +25,10 @@ %define cuboxi_spl 0 # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-spring -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the spring arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1 diff --git a/u-boot.changes b/u-boot.changes index 50cf8dc..15c973d 100644 --- a/u-boot.changes +++ b/u-boot.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + ------------------------------------------------------------------- Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com diff --git a/u-boot.spec b/u-boot.spec index 4f8b39e..9b858a0 100644 --- a/u-boot.spec +++ b/u-boot.spec @@ -19,10 +19,10 @@ # 'archive_version' differs from 'version' for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: Tools for the u-boot Firmware License: GPL-2.0 diff --git a/u-boot.spec.in b/u-boot.spec.in index 7c3a573..501d8b4 100644 --- a/u-boot.spec.in +++ b/u-boot.spec.in @@ -25,10 +25,10 @@ %define cuboxi_spl CUBOXI_SPL # archive_version differs from version for RC version only -%define archive_version 2015.10 +%define archive_version 2016.01-rc1 Name: u-boot-BOARDNAME -Version: 2015.10 +Version: 2016.01~rc1 Release: 0 Summary: The u-boot firmware for the BOARDNAME arm platform License: GPL-2.0 @@ -39,12 +39,6 @@ Source2: arndale-bl1.img Source300: u-boot-rpmlintrc # PATCH-FIX-UPSTREAM Fix build for beagle x15 Patch1: U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch -# PATCH-FIX-UPSTREAM Fix am335x booting -Patch2: U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch -# PATCH-FIX-UPSTREAM cuboxi-ext4load.patch -- fix cuboxi booting -Patch3: 0001-mx6cuboxi-use-load-instead-of-fatload.patch -# PATCH-FEATURE-UPSTREAM -Patch4: 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch # Marvell boards support is non-free licensed, and we don't need it (bnc#773824) Patch99: drop-marvell.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -74,9 +68,6 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell %patch99 -p1