SHA256
1
0
forked from pool/u-boot

Accepting request 346692 from Base:System

1

OBS-URL: https://build.opensuse.org/request/show/346692
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=60
This commit is contained in:
Dominique Leuenberger 2015-12-01 08:19:08 +00:00 committed by Git OBS Bridge
parent 885b24e051
commit 46c68da928
73 changed files with 408 additions and 506 deletions

View File

@ -1,60 +0,0 @@
From 755324c432f62306487786f89efce96398291a03 Mon Sep 17 00:00:00 2001
From: "Matwey V. Kornilov" <matwey.kornilov@gmail.com>
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 <matwey.kornilov@gmail.com>
[trini: Drop omap3_logic.h settings which were a warning and no longer
correct usage].
Signed-off-by: Tom Rini <trini@konsulko.com>
---
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 <config_distro_defaults.h>
+
#endif /* __CONFIG_TI_ARMV7_COMMON_H__ */
--
2.1.4

View File

@ -1,32 +0,0 @@
From 80416e65668e210019b4e12bff563053cd4d2188 Mon Sep 17 00:00:00 2001
From: Thomas Bechtold <tbechtold@suse.com>
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

View File

@ -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 <trini@konsulko.com>
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 <balbi@ti.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
---
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

View File

@ -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"

View File

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

View File

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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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