SHA256
1
0
forked from pool/u-boot

Accepting request 344483 from Base:System

1

OBS-URL: https://build.opensuse.org/request/show/344483
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=59
This commit is contained in:
Dominique Leuenberger 2015-11-16 17:51:51 +00:00 committed by Git OBS Bridge
parent 46e4570415
commit 885b24e051
68 changed files with 653 additions and 0 deletions

View File

@ -0,0 +1,60 @@
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

@ -0,0 +1,32 @@
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,3 +1,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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,14 @@
-------------------------------------------------------------------
Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com
- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch
-------------------------------------------------------------------
Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com
- 0001-mx6cuboxi-use-load-instead-of-fatload.patch
for cubox-i use load instead of fatload
-------------------------------------------------------------------
Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com

View File

@ -41,6 +41,10 @@ Source300: u-boot-rpmlintrc
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
@ -71,6 +75,8 @@ This package contains documentation for u-boot firmware
%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