1d5f8b35ed
1 OBS-URL: https://build.opensuse.org/request/show/337194 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=56
40 lines
1.4 KiB
Diff
40 lines
1.4 KiB
Diff
From 33cb0de4447c395229ad381222ad95e18889608e Mon Sep 17 00:00:00 2001
|
|
From: Guillaume GARDET <guillaume.gardet@free.fr>
|
|
Date: Mon, 28 Sep 2015 11:13:07 +0200
|
|
Subject: [PATCH V2 1/2] odroid: replace 'fatload' with 'load' to be able to use
|
|
EXT* partitions
|
|
|
|
Replace 'fatload' command by 'load', to be able to use EXT*
|
|
partitions while keeping FAT partition compatibility.
|
|
|
|
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
|
|
Cc: Przemyslaw Marczak <p.marczak@samsung.com>
|
|
Cc: Minkyu Kang <mk7.kang@samsung.com>
|
|
|
|
---
|
|
include/configs/odroid.h | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/include/configs/odroid.h b/include/configs/odroid.h
|
|
index 1afe04a..e45b00e 100644
|
|
--- a/include/configs/odroid.h
|
|
+++ b/include/configs/odroid.h
|
|
@@ -108,11 +108,11 @@
|
|
* 2. ROOT: -
|
|
*/
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
- "loadkernel=fatload mmc ${mmcbootdev}:${mmcbootpart} ${kerneladdr} " \
|
|
+ "loadkernel=load mmc ${mmcbootdev}:${mmcbootpart} ${kerneladdr} " \
|
|
"${kernelname}\0" \
|
|
- "loadinitrd=fatload mmc ${mmcbootdev}:${mmcbootpart} ${initrdaddr} " \
|
|
+ "loadinitrd=load mmc ${mmcbootdev}:${mmcbootpart} ${initrdaddr} " \
|
|
"${initrdname}\0" \
|
|
- "loaddtb=fatload mmc ${mmcbootdev}:${mmcbootpart} ${fdtaddr} " \
|
|
+ "loaddtb=load mmc ${mmcbootdev}:${mmcbootpart} ${fdtaddr} " \
|
|
"${fdtfile}\0" \
|
|
"check_ramdisk=" \
|
|
"if run loadinitrd; then " \
|
|
--
|
|
1.8.4.5
|
|
|