diff --git a/0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch b/0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch new file mode 100644 index 0000000..e9cc40b --- /dev/null +++ b/0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch @@ -0,0 +1,39 @@ +From 33cb0de4447c395229ad381222ad95e18889608e Mon Sep 17 00:00:00 2001 +From: Guillaume GARDET +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 +Cc: Przemyslaw Marczak +Cc: Minkyu Kang + +--- + 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 + diff --git a/0002-odroid-Add-boot-script-boot.scr-support.patch b/0002-odroid-Add-boot-script-boot.scr-support.patch new file mode 100644 index 0000000..d67f282 --- /dev/null +++ b/0002-odroid-Add-boot-script-boot.scr-support.patch @@ -0,0 +1,60 @@ +From 5053f7767e3a0dae83cd8aa85cfeeaf5fd1bc569 Mon Sep 17 00:00:00 2001 +From: Guillaume GARDET +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 +Cc: Przemyslaw Marczak +Cc: Minkyu Kang + +--- + 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 + diff --git a/u-boot-a10-olinuxino-lime.changes b/u-boot-a10-olinuxino-lime.changes index a57fb7d..0b360c1 100644 --- a/u-boot-a10-olinuxino-lime.changes +++ b/u-boot-a10-olinuxino-lime.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-a10-olinuxino-lime.spec b/u-boot-a10-olinuxino-lime.spec index 184e169..e67628a 100644 --- a/u-boot-a10-olinuxino-lime.spec +++ b/u-boot-a10-olinuxino-lime.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-a13-olinuxino.changes b/u-boot-a13-olinuxino.changes index a57fb7d..0b360c1 100644 --- a/u-boot-a13-olinuxino.changes +++ b/u-boot-a13-olinuxino.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-a13-olinuxino.spec b/u-boot-a13-olinuxino.spec index 307eb72..f658630 100644 --- a/u-boot-a13-olinuxino.spec +++ b/u-boot-a13-olinuxino.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-a13-olinuxinom.changes b/u-boot-a13-olinuxinom.changes index a57fb7d..0b360c1 100644 --- a/u-boot-a13-olinuxinom.changes +++ b/u-boot-a13-olinuxinom.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-a13-olinuxinom.spec b/u-boot-a13-olinuxinom.spec index a0b7bb6..ca5d5e4 100644 --- a/u-boot-a13-olinuxinom.spec +++ b/u-boot-a13-olinuxinom.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-a20-olinuxino-lime.changes b/u-boot-a20-olinuxino-lime.changes index a57fb7d..0b360c1 100644 --- a/u-boot-a20-olinuxino-lime.changes +++ b/u-boot-a20-olinuxino-lime.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-a20-olinuxino-lime.spec b/u-boot-a20-olinuxino-lime.spec index 3bf901a..fa56f3c 100644 --- a/u-boot-a20-olinuxino-lime.spec +++ b/u-boot-a20-olinuxino-lime.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-a20-olinuxino-lime2.changes b/u-boot-a20-olinuxino-lime2.changes index a57fb7d..0b360c1 100644 --- a/u-boot-a20-olinuxino-lime2.changes +++ b/u-boot-a20-olinuxino-lime2.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-a20-olinuxino-lime2.spec b/u-boot-a20-olinuxino-lime2.spec index b688b80..e2928e0 100644 --- a/u-boot-a20-olinuxino-lime2.spec +++ b/u-boot-a20-olinuxino-lime2.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-a20-olinuxinomicro.changes b/u-boot-a20-olinuxinomicro.changes index a57fb7d..0b360c1 100644 --- a/u-boot-a20-olinuxinomicro.changes +++ b/u-boot-a20-olinuxinomicro.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-a20-olinuxinomicro.spec b/u-boot-a20-olinuxinomicro.spec index 3a43559..8048ba7 100644 --- a/u-boot-a20-olinuxinomicro.spec +++ b/u-boot-a20-olinuxinomicro.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-am335xevm.changes b/u-boot-am335xevm.changes index a57fb7d..0b360c1 100644 --- a/u-boot-am335xevm.changes +++ b/u-boot-am335xevm.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-am335xevm.spec b/u-boot-am335xevm.spec index d2ddadc..72f7bd3 100644 --- a/u-boot-am335xevm.spec +++ b/u-boot-am335xevm.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-arndale.changes b/u-boot-arndale.changes index a57fb7d..0b360c1 100644 --- a/u-boot-arndale.changes +++ b/u-boot-arndale.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-arndale.spec b/u-boot-arndale.spec index 8f477fc..6bfbcc0 100644 --- a/u-boot-arndale.spec +++ b/u-boot-arndale.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-bananapi.changes b/u-boot-bananapi.changes index a57fb7d..0b360c1 100644 --- a/u-boot-bananapi.changes +++ b/u-boot-bananapi.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-bananapi.spec b/u-boot-bananapi.spec index 11c87a3..13bfaf4 100644 --- a/u-boot-bananapi.spec +++ b/u-boot-bananapi.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-colibrit20.changes b/u-boot-colibrit20.changes index a57fb7d..0b360c1 100644 --- a/u-boot-colibrit20.changes +++ b/u-boot-colibrit20.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-colibrit20.spec b/u-boot-colibrit20.spec index 3493229..8038398 100644 --- a/u-boot-colibrit20.spec +++ b/u-boot-colibrit20.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-cubieboard.changes b/u-boot-cubieboard.changes index a57fb7d..0b360c1 100644 --- a/u-boot-cubieboard.changes +++ b/u-boot-cubieboard.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-cubieboard.spec b/u-boot-cubieboard.spec index 7e6a821..e7e8e93 100644 --- a/u-boot-cubieboard.spec +++ b/u-boot-cubieboard.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-cubieboard2.changes b/u-boot-cubieboard2.changes index a57fb7d..0b360c1 100644 --- a/u-boot-cubieboard2.changes +++ b/u-boot-cubieboard2.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-cubieboard2.spec b/u-boot-cubieboard2.spec index f44e34b..421dc1c 100644 --- a/u-boot-cubieboard2.spec +++ b/u-boot-cubieboard2.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-cubietruck.changes b/u-boot-cubietruck.changes index a57fb7d..0b360c1 100644 --- a/u-boot-cubietruck.changes +++ b/u-boot-cubietruck.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-cubietruck.spec b/u-boot-cubietruck.spec index 04ba1bd..dce3934 100644 --- a/u-boot-cubietruck.spec +++ b/u-boot-cubietruck.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-firefly-rk3288.changes b/u-boot-firefly-rk3288.changes index a57fb7d..0b360c1 100644 --- a/u-boot-firefly-rk3288.changes +++ b/u-boot-firefly-rk3288.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-firefly-rk3288.spec b/u-boot-firefly-rk3288.spec index 3624212..616cc88 100644 --- a/u-boot-firefly-rk3288.spec +++ b/u-boot-firefly-rk3288.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-highbank.changes b/u-boot-highbank.changes index a57fb7d..0b360c1 100644 --- a/u-boot-highbank.changes +++ b/u-boot-highbank.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-highbank.spec b/u-boot-highbank.spec index 7b28e20..50e784c 100644 --- a/u-boot-highbank.spec +++ b/u-boot-highbank.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-jetson-tk1.changes b/u-boot-jetson-tk1.changes index a57fb7d..0b360c1 100644 --- a/u-boot-jetson-tk1.changes +++ b/u-boot-jetson-tk1.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-jetson-tk1.spec b/u-boot-jetson-tk1.spec index 7549dd4..e00e359 100644 --- a/u-boot-jetson-tk1.spec +++ b/u-boot-jetson-tk1.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-melea1000.changes b/u-boot-melea1000.changes index a57fb7d..0b360c1 100644 --- a/u-boot-melea1000.changes +++ b/u-boot-melea1000.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-melea1000.spec b/u-boot-melea1000.spec index 9075aa4..0d61e42 100644 --- a/u-boot-melea1000.spec +++ b/u-boot-melea1000.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-merriia80optimus.changes b/u-boot-merriia80optimus.changes index a57fb7d..0b360c1 100644 --- a/u-boot-merriia80optimus.changes +++ b/u-boot-merriia80optimus.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-merriia80optimus.spec b/u-boot-merriia80optimus.spec index 187b012..d93b9d5 100644 --- a/u-boot-merriia80optimus.spec +++ b/u-boot-merriia80optimus.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-mx53loco.changes b/u-boot-mx53loco.changes index a57fb7d..0b360c1 100644 --- a/u-boot-mx53loco.changes +++ b/u-boot-mx53loco.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-mx53loco.spec b/u-boot-mx53loco.spec index fadf072..d13d9b7 100644 --- a/u-boot-mx53loco.spec +++ b/u-boot-mx53loco.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-mx6cuboxi.changes b/u-boot-mx6cuboxi.changes index a57fb7d..0b360c1 100644 --- a/u-boot-mx6cuboxi.changes +++ b/u-boot-mx6cuboxi.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-mx6cuboxi.spec b/u-boot-mx6cuboxi.spec index af63b71..bc9059e 100644 --- a/u-boot-mx6cuboxi.spec +++ b/u-boot-mx6cuboxi.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-mx6qsabrelite.changes b/u-boot-mx6qsabrelite.changes index a57fb7d..0b360c1 100644 --- a/u-boot-mx6qsabrelite.changes +++ b/u-boot-mx6qsabrelite.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-mx6qsabrelite.spec b/u-boot-mx6qsabrelite.spec index 396ab6c..0c26072 100644 --- a/u-boot-mx6qsabrelite.spec +++ b/u-boot-mx6qsabrelite.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-odroid-xu3.changes b/u-boot-odroid-xu3.changes index a57fb7d..0b360c1 100644 --- a/u-boot-odroid-xu3.changes +++ b/u-boot-odroid-xu3.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-odroid-xu3.spec b/u-boot-odroid-xu3.spec index a302392..907384a 100644 --- a/u-boot-odroid-xu3.spec +++ b/u-boot-odroid-xu3.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-odroid.changes b/u-boot-odroid.changes index a57fb7d..0b360c1 100644 --- a/u-boot-odroid.changes +++ b/u-boot-odroid.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-odroid.spec b/u-boot-odroid.spec index 51f5f8b..36d12c1 100644 --- a/u-boot-odroid.spec +++ b/u-boot-odroid.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-omap3beagle.changes b/u-boot-omap3beagle.changes index a57fb7d..0b360c1 100644 --- a/u-boot-omap3beagle.changes +++ b/u-boot-omap3beagle.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-omap3beagle.spec b/u-boot-omap3beagle.spec index 98411b7..cb41df1 100644 --- a/u-boot-omap3beagle.spec +++ b/u-boot-omap3beagle.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-omap4panda.changes b/u-boot-omap4panda.changes index a57fb7d..0b360c1 100644 --- a/u-boot-omap4panda.changes +++ b/u-boot-omap4panda.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-omap4panda.spec b/u-boot-omap4panda.spec index 609fea1..39c6e48 100644 --- a/u-boot-omap4panda.spec +++ b/u-boot-omap4panda.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-paz00.changes b/u-boot-paz00.changes index a57fb7d..0b360c1 100644 --- a/u-boot-paz00.changes +++ b/u-boot-paz00.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-paz00.spec b/u-boot-paz00.spec index ad015d4..3b266ad 100644 --- a/u-boot-paz00.spec +++ b/u-boot-paz00.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-pcm051rev3.changes b/u-boot-pcm051rev3.changes index a57fb7d..0b360c1 100644 --- a/u-boot-pcm051rev3.changes +++ b/u-boot-pcm051rev3.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-pcm051rev3.spec b/u-boot-pcm051rev3.spec index 3f969c1..58d04b3 100644 --- a/u-boot-pcm051rev3.spec +++ b/u-boot-pcm051rev3.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-rpi.changes b/u-boot-rpi.changes index a57fb7d..0b360c1 100644 --- a/u-boot-rpi.changes +++ b/u-boot-rpi.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-rpi.spec b/u-boot-rpi.spec index 644c1af..f88dc4d 100644 --- a/u-boot-rpi.spec +++ b/u-boot-rpi.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-rpi2.changes b/u-boot-rpi2.changes index a57fb7d..0b360c1 100644 --- a/u-boot-rpi2.changes +++ b/u-boot-rpi2.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-rpi2.spec b/u-boot-rpi2.spec index 1ef8866..808396c 100644 --- a/u-boot-rpi2.spec +++ b/u-boot-rpi2.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-snow.changes b/u-boot-snow.changes index a57fb7d..0b360c1 100644 --- a/u-boot-snow.changes +++ b/u-boot-snow.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-snow.spec b/u-boot-snow.spec index 0754784..f679b39 100644 --- a/u-boot-snow.spec +++ b/u-boot-snow.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot-spring.changes b/u-boot-spring.changes index a57fb7d..0b360c1 100644 --- a/u-boot-spring.changes +++ b/u-boot-spring.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-spring.spec b/u-boot-spring.spec index fb32441..ee1f3e3 100644 --- a/u-boot-spring.spec +++ b/u-boot-spring.spec @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell diff --git a/u-boot.changes b/u-boot.changes index a57fb7d..0b360c1 100644 --- a/u-boot.changes +++ b/u-boot.changes @@ -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 @@ -814,11 +821,6 @@ Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> - 2010.09-MeeGo - 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> - 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 ------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot.spec.in b/u-boot.spec.in index e325d20..b965968 100644 --- a/u-boot.spec.in +++ b/u-boot.spec.in @@ -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 Source2: arndale-bl1.img 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 # https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html Patch50: arndale-apply-cortex-a15-erratas.patch @@ -68,6 +71,8 @@ This package contains documentation for u-boot firmware %prep %setup -q -n u-boot-%{archive_version} +%patch10 -p1 +%patch11 -p1 %patch50 -p1 # is non-free licensed, and we don't need it (bnc#773824) rm -rf board/Marvell