Accepting request 337194 from Base:System
1 OBS-URL: https://build.opensuse.org/request/show/337194 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=56
This commit is contained in:
parent
9179ad19f0
commit
1d5f8b35ed
@ -0,0 +1,39 @@
|
|||||||
|
From 33cb0de4447c395229ad381222ad95e18889608e Mon Sep 17 00:00:00 2001
|
||||||
|
From: Guillaume GARDET <guillaume.gardet@free.fr>
|
||||||
|
Date: Mon, 28 Sep 2015 11:13:07 +0200
|
||||||
|
Subject: [PATCH V2 1/2] odroid: replace 'fatload' with 'load' to be able to use
|
||||||
|
EXT* partitions
|
||||||
|
|
||||||
|
Replace 'fatload' command by 'load', to be able to use EXT*
|
||||||
|
partitions while keeping FAT partition compatibility.
|
||||||
|
|
||||||
|
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
|
||||||
|
Cc: Przemyslaw Marczak <p.marczak@samsung.com>
|
||||||
|
Cc: Minkyu Kang <mk7.kang@samsung.com>
|
||||||
|
|
||||||
|
---
|
||||||
|
include/configs/odroid.h | 6 +++---
|
||||||
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/include/configs/odroid.h b/include/configs/odroid.h
|
||||||
|
index 1afe04a..e45b00e 100644
|
||||||
|
--- a/include/configs/odroid.h
|
||||||
|
+++ b/include/configs/odroid.h
|
||||||
|
@@ -108,11 +108,11 @@
|
||||||
|
* 2. ROOT: -
|
||||||
|
*/
|
||||||
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
||||||
|
- "loadkernel=fatload mmc ${mmcbootdev}:${mmcbootpart} ${kerneladdr} " \
|
||||||
|
+ "loadkernel=load mmc ${mmcbootdev}:${mmcbootpart} ${kerneladdr} " \
|
||||||
|
"${kernelname}\0" \
|
||||||
|
- "loadinitrd=fatload mmc ${mmcbootdev}:${mmcbootpart} ${initrdaddr} " \
|
||||||
|
+ "loadinitrd=load mmc ${mmcbootdev}:${mmcbootpart} ${initrdaddr} " \
|
||||||
|
"${initrdname}\0" \
|
||||||
|
- "loaddtb=fatload mmc ${mmcbootdev}:${mmcbootpart} ${fdtaddr} " \
|
||||||
|
+ "loaddtb=load mmc ${mmcbootdev}:${mmcbootpart} ${fdtaddr} " \
|
||||||
|
"${fdtfile}\0" \
|
||||||
|
"check_ramdisk=" \
|
||||||
|
"if run loadinitrd; then " \
|
||||||
|
--
|
||||||
|
1.8.4.5
|
||||||
|
|
60
0002-odroid-Add-boot-script-boot.scr-support.patch
Normal file
60
0002-odroid-Add-boot-script-boot.scr-support.patch
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
From 5053f7767e3a0dae83cd8aa85cfeeaf5fd1bc569 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Guillaume GARDET <guillaume.gardet@free.fr>
|
||||||
|
Date: Mon, 5 Oct 2015 10:59:32 +0200
|
||||||
|
Subject: [PATCH V2 2/2] odroid: Add boot script (boot.scr) support
|
||||||
|
|
||||||
|
Add boot script (boot.scr) support. If no boot script are
|
||||||
|
found, it boots as usual.
|
||||||
|
|
||||||
|
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
|
||||||
|
Cc: Przemyslaw Marczak <p.marczak@samsung.com>
|
||||||
|
Cc: Minkyu Kang <mk7.kang@samsung.com>
|
||||||
|
|
||||||
|
---
|
||||||
|
include/configs/odroid.h | 9 +++++++++
|
||||||
|
1 file changed, 9 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/include/configs/odroid.h b/include/configs/odroid.h
|
||||||
|
index e45b00e..f79847b 100644
|
||||||
|
--- a/include/configs/odroid.h
|
||||||
|
+++ b/include/configs/odroid.h
|
||||||
|
@@ -108,6 +108,8 @@
|
||||||
|
* 2. ROOT: -
|
||||||
|
*/
|
||||||
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
||||||
|
+ "loadbootscript=load mmc ${mmcbootdev}:${mmcbootpart} ${scriptaddr} " \
|
||||||
|
+ "boot.scr\0" \
|
||||||
|
"loadkernel=load mmc ${mmcbootdev}:${mmcbootpart} ${kerneladdr} " \
|
||||||
|
"${kernelname}\0" \
|
||||||
|
"loadinitrd=load mmc ${mmcbootdev}:${mmcbootpart} ${initrdaddr} " \
|
||||||
|
@@ -129,6 +131,9 @@
|
||||||
|
"kernel_args=" \
|
||||||
|
"setenv bootargs root=/dev/mmcblk${mmcrootdev}p${mmcrootpart}" \
|
||||||
|
" rootwait ${console} ${opts}\0" \
|
||||||
|
+ "boot_script=" \
|
||||||
|
+ "run loadbootscript;" \
|
||||||
|
+ "source ${scriptaddr}\0" \
|
||||||
|
"boot_fit=" \
|
||||||
|
"setenv kerneladdr 0x42000000;" \
|
||||||
|
"setenv kernelname Image.itb;" \
|
||||||
|
@@ -152,6 +157,9 @@
|
||||||
|
"run kernel_args;" \
|
||||||
|
"bootz ${kerneladdr} ${initrd_addr} ${fdt_addr};\0" \
|
||||||
|
"autoboot=" \
|
||||||
|
+ "if test -e mmc 0 boot.scr; then; " \
|
||||||
|
+ "run boot_script; " \
|
||||||
|
+ "fi; " \
|
||||||
|
"if test -e mmc 0 Image.itb; then; " \
|
||||||
|
"run boot_fit;" \
|
||||||
|
"elif test -e mmc 0 zImage; then; " \
|
||||||
|
@@ -171,6 +179,7 @@
|
||||||
|
"consoleoff=set console console=ram; save; reset\0" \
|
||||||
|
"initrdname=uInitrd\0" \
|
||||||
|
"initrdaddr=42000000\0" \
|
||||||
|
+ "scriptaddr=0x42000000\0" \
|
||||||
|
"fdtaddr=40800000\0"
|
||||||
|
|
||||||
|
/* I2C */
|
||||||
|
--
|
||||||
|
1.8.4.5
|
||||||
|
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add boot script support to odroid board:
|
||||||
|
* 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
* 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de
|
||||||
|
|
||||||
@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
|
|||||||
- 2010.09-MeeGo
|
- 2010.09-MeeGo
|
||||||
- Don't build against i586, BMC#10159
|
- Don't build against i586, BMC#10159
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
|
||||||
- 2010.09-MeeGo
|
|
||||||
- Add Das u-boot package - FEA#9723
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
|
||||||
- 2010.09.rc1-MeeGo
|
- 2010.09.rc1-MeeGo
|
||||||
@ -842,3 +844,4 @@ Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
|
|||||||
- update to 2009.11.1
|
- update to 2009.11.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 31 00:00:00 UTC 2010 -
|
||||||
|
@ -37,6 +37,9 @@ Url: http://www.denx.de/wiki/U-Boot
|
|||||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
Source2: arndale-bl1.img
|
Source2: arndale-bl1.img
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Odroid patches
|
||||||
|
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||||
|
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||||
# openSUSE fixes hopefully going upstream soon
|
# openSUSE fixes hopefully going upstream soon
|
||||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||||
@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch10 -p1
|
||||||
|
%patch11 -p1
|
||||||
%patch50 -p1
|
%patch50 -p1
|
||||||
# is non-free licensed, and we don't need it (bnc#773824)
|
# is non-free licensed, and we don't need it (bnc#773824)
|
||||||
rm -rf board/Marvell
|
rm -rf board/Marvell
|
||||||
|
Loading…
Reference in New Issue
Block a user