SHA256
1
0
forked from pool/u-boot

Accepting request 265450 from Base:System

1

OBS-URL: https://build.opensuse.org/request/show/265450
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=38
This commit is contained in:
Dominique Leuenberger 2014-12-17 18:15:45 +00:00 committed by Git OBS Bridge
parent 886f663d28
commit f5ead649c6
41 changed files with 217 additions and 0 deletions

View File

@ -0,0 +1,57 @@
From ca1f908171c0da7ee6ada74f3bf904946ab2abe2 Mon Sep 17 00:00:00 2001
From: Guillaume GARDET <guillaume.gardet@free.fr>
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 <robertcnelson@gmail.com>
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
Cc: Tom Rini <trini@ti.com>
Cc: Robert Nelson <robertcnelson@gmail.com>
---
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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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