diff --git a/0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch b/0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch new file mode 100644 index 0000000..460c8e9 --- /dev/null +++ b/0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch @@ -0,0 +1,57 @@ +From ca1f908171c0da7ee6ada74f3bf904946ab2abe2 Mon Sep 17 00:00:00 2001 +From: Guillaume GARDET +Date: Mon, 15 Dec 2014 09:57:39 +0100 +Subject: [U-Boot] [PATCH] spl: mmc: Fix raw boot mode (related to commit + 4c5bbc2328a24f5e1ee990c9a9527e48e5fb3b5f) + +As reported by Robert Nelson, commit 4c5bbc2328a24f5e1ee990c9a9527e48e5fb3b5f +may break MMC RAW boot mode. +This patch fixes the check path to fix MMC Raw boot mode. + +Tested raw boot mode and FS boot mode on a pandaboard (rev. A3). + +Reported-by: Robert Nelson +Signed-off-by: Guillaume GARDET + +Cc: Tom Rini +Cc: Robert Nelson + +--- + common/spl/spl_mmc.c | 19 ++++++++++++++++--- + 1 file changed, 16 insertions(+), 3 deletions(-) + +diff --git a/common/spl/spl_mmc.c b/common/spl/spl_mmc.c +index 7bae16b..c2e596b 100644 +--- a/common/spl/spl_mmc.c ++++ b/common/spl/spl_mmc.c +@@ -172,11 +172,24 @@ void spl_mmc_load_image(void) + err = mmc_load_image_raw_sector(mmc, + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR); + #endif +- } else { ++ } ++ ++ switch(boot_mode){ ++ case MMCSD_MODE_RAW: ++#if defined(CONFIG_SPL_FAT_SUPPORT) || defined(CONFIG_SPL_EXT_SUPPORT) ++ case MMCSD_MODE_FS: ++#endif ++#ifdef CONFIG_SUPPORT_EMMC_BOOT ++ case MMCSD_MODE_EMMCBOOT: ++#endif ++ /* Boot mode is ok. Nothing to do. */ ++ break; ++ case MMCSD_MODE_UNDEFINED: ++ default: + #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT +- puts("spl: wrong MMC boot mode\n"); ++ puts("spl: wrong MMC boot mode\n"); + #endif +- hang(); ++ hang(); + } + + if (err) +-- +1.8.4.5 + diff --git a/u-boot-a10-olinuxino-lime.changes b/u-boot-a10-olinuxino-lime.changes index 604f519..e1dddb6 100644 --- a/u-boot-a10-olinuxino-lime.changes +++ b/u-boot-a10-olinuxino-lime.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-a10-olinuxino-lime.spec b/u-boot-a10-olinuxino-lime.spec index 1a36220..2c954e1 100644 --- a/u-boot-a10-olinuxino-lime.spec +++ b/u-boot-a10-olinuxino-lime.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-a20-olinuxino-lime2.changes b/u-boot-a20-olinuxino-lime2.changes index 604f519..e1dddb6 100644 --- a/u-boot-a20-olinuxino-lime2.changes +++ b/u-boot-a20-olinuxino-lime2.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-a20-olinuxino-lime2.spec b/u-boot-a20-olinuxino-lime2.spec index cfc4586..16d966c 100644 --- a/u-boot-a20-olinuxino-lime2.spec +++ b/u-boot-a20-olinuxino-lime2.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-am335xevm.changes b/u-boot-am335xevm.changes index 604f519..e1dddb6 100644 --- a/u-boot-am335xevm.changes +++ b/u-boot-am335xevm.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-am335xevm.spec b/u-boot-am335xevm.spec index 848d9ab..d41fd84 100644 --- a/u-boot-am335xevm.spec +++ b/u-boot-am335xevm.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-arndale.changes b/u-boot-arndale.changes index 604f519..e1dddb6 100644 --- a/u-boot-arndale.changes +++ b/u-boot-arndale.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-arndale.spec b/u-boot-arndale.spec index 4f08c84..b1fe84f 100644 --- a/u-boot-arndale.spec +++ b/u-boot-arndale.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-bananapi.changes b/u-boot-bananapi.changes index 604f519..e1dddb6 100644 --- a/u-boot-bananapi.changes +++ b/u-boot-bananapi.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-bananapi.spec b/u-boot-bananapi.spec index ff61b2a..c488d0e 100644 --- a/u-boot-bananapi.spec +++ b/u-boot-bananapi.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-colibrit20iris.changes b/u-boot-colibrit20iris.changes index 604f519..e1dddb6 100644 --- a/u-boot-colibrit20iris.changes +++ b/u-boot-colibrit20iris.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-colibrit20iris.spec b/u-boot-colibrit20iris.spec index c1dadc8..a39715b 100644 --- a/u-boot-colibrit20iris.spec +++ b/u-boot-colibrit20iris.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-cubieboard.changes b/u-boot-cubieboard.changes index 604f519..e1dddb6 100644 --- a/u-boot-cubieboard.changes +++ b/u-boot-cubieboard.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-cubieboard.spec b/u-boot-cubieboard.spec index 40676f4..2ce6630 100644 --- a/u-boot-cubieboard.spec +++ b/u-boot-cubieboard.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-cubieboard2.changes b/u-boot-cubieboard2.changes index 604f519..e1dddb6 100644 --- a/u-boot-cubieboard2.changes +++ b/u-boot-cubieboard2.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-cubieboard2.spec b/u-boot-cubieboard2.spec index 038b593..9ed9b3e 100644 --- a/u-boot-cubieboard2.spec +++ b/u-boot-cubieboard2.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-cubietruck.changes b/u-boot-cubietruck.changes index 604f519..e1dddb6 100644 --- a/u-boot-cubietruck.changes +++ b/u-boot-cubietruck.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-cubietruck.spec b/u-boot-cubietruck.spec index d878b45..9965b87 100644 --- a/u-boot-cubietruck.spec +++ b/u-boot-cubietruck.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-highbank.changes b/u-boot-highbank.changes index 604f519..e1dddb6 100644 --- a/u-boot-highbank.changes +++ b/u-boot-highbank.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-highbank.spec b/u-boot-highbank.spec index 791d25a..abd2278 100644 --- a/u-boot-highbank.spec +++ b/u-boot-highbank.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-melea1000.changes b/u-boot-melea1000.changes index 604f519..e1dddb6 100644 --- a/u-boot-melea1000.changes +++ b/u-boot-melea1000.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-melea1000.spec b/u-boot-melea1000.spec index 52e0516..480a8d4 100644 --- a/u-boot-melea1000.spec +++ b/u-boot-melea1000.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-mx53loco.changes b/u-boot-mx53loco.changes index 604f519..e1dddb6 100644 --- a/u-boot-mx53loco.changes +++ b/u-boot-mx53loco.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-mx53loco.spec b/u-boot-mx53loco.spec index f7f766d..f62354e 100644 --- a/u-boot-mx53loco.spec +++ b/u-boot-mx53loco.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-mx6qsabrelite.changes b/u-boot-mx6qsabrelite.changes index 604f519..e1dddb6 100644 --- a/u-boot-mx6qsabrelite.changes +++ b/u-boot-mx6qsabrelite.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-mx6qsabrelite.spec b/u-boot-mx6qsabrelite.spec index a5c7d12..b13c89b 100644 --- a/u-boot-mx6qsabrelite.spec +++ b/u-boot-mx6qsabrelite.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-omap3beagle.changes b/u-boot-omap3beagle.changes index 604f519..e1dddb6 100644 --- a/u-boot-omap3beagle.changes +++ b/u-boot-omap3beagle.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-omap3beagle.spec b/u-boot-omap3beagle.spec index c65dd4d..568548f 100644 --- a/u-boot-omap3beagle.spec +++ b/u-boot-omap3beagle.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-omap4panda.changes b/u-boot-omap4panda.changes index 604f519..e1dddb6 100644 --- a/u-boot-omap4panda.changes +++ b/u-boot-omap4panda.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-omap4panda.spec b/u-boot-omap4panda.spec index e975532..836fdd2 100644 --- a/u-boot-omap4panda.spec +++ b/u-boot-omap4panda.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-paz00.changes b/u-boot-paz00.changes index 604f519..e1dddb6 100644 --- a/u-boot-paz00.changes +++ b/u-boot-paz00.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-paz00.spec b/u-boot-paz00.spec index 4c0a7b9..bd32ebf 100644 --- a/u-boot-paz00.spec +++ b/u-boot-paz00.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-rpi.changes b/u-boot-rpi.changes index 604f519..e1dddb6 100644 --- a/u-boot-rpi.changes +++ b/u-boot-rpi.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-rpi.spec b/u-boot-rpi.spec index 317650b..155cfd3 100644 --- a/u-boot-rpi.spec +++ b/u-boot-rpi.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-snow.changes b/u-boot-snow.changes index 604f519..e1dddb6 100644 --- a/u-boot-snow.changes +++ b/u-boot-snow.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-snow.spec b/u-boot-snow.spec index ece7605..7940e31 100644 --- a/u-boot-snow.spec +++ b/u-boot-snow.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot-vexpressaemv8a.changes b/u-boot-vexpressaemv8a.changes index 604f519..e1dddb6 100644 --- a/u-boot-vexpressaemv8a.changes +++ b/u-boot-vexpressaemv8a.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot-vexpressaemv8a.spec b/u-boot-vexpressaemv8a.spec index 72553f2..97ec07f 100644 --- a/u-boot-vexpressaemv8a.spec +++ b/u-boot-vexpressaemv8a.spec @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1 diff --git a/u-boot.changes b/u-boot.changes index 604f519..e1dddb6 100644 --- a/u-boot.changes +++ b/u-boot.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + ------------------------------------------------------------------- Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com diff --git a/u-boot.spec.in b/u-boot.spec.in index c9675d8..503a5a2 100644 --- a/u-boot.spec.in +++ b/u-boot.spec.in @@ -40,6 +40,7 @@ Patch2: fix_beagle_spl_build.patch Patch3: mx53loco-bootscr.patch Patch4: fix_snow_config.patch Patch10: fix_sata.patch +Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch # Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards Patch20: add_snow_usb_boot.patch # Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards @@ -81,6 +82,7 @@ rm -rf board/Marvell %patch3 %patch4 -p1 %patch10 -p1 +%patch11 -p1 %if "%{name}" == "u-boot-snow" # Apply some patches only for u-boot-snow to avoid to break other boards %patch20 -p1