diff options
author | Enric Balletbò i Serra <eballetbo@gmail.com> | 2015-09-07 08:28:09 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-09-11 17:15:28 -0400 |
commit | 40372244f206fcf94eadfcd1d063185373d5d25d (patch) | |
tree | 79e6a59ea220ce091868f5747a4729dc221b342e /board/isee | |
parent | da73de52ae59dac30ab4b6fd1c5acb880492d718 (diff) | |
download | u-boot-40372244f206fcf94eadfcd1d063185373d5d25d.zip u-boot-40372244f206fcf94eadfcd1d063185373d5d25d.tar.gz u-boot-40372244f206fcf94eadfcd1d063185373d5d25d.tar.bz2 |
igep00x0: Switch to use the generic distro configuration and environment.
This patch changes a little bit the environment, current environment was broken
for a long time, and board don't as expected sometimes, on production systems
this is fixed adding boot script. I think it's time to change this to make a
system conformant environment and use generic distro configurations and
environment instead. We can use a boot script for the old way boot mode.
Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
Diffstat (limited to 'board/isee')
-rw-r--r-- | board/isee/igep00x0/igep00x0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/isee/igep00x0/igep00x0.c b/board/isee/igep00x0/igep00x0.c index 693fce7..6eb191c 100644 --- a/board/isee/igep00x0/igep00x0.c +++ b/board/isee/igep00x0/igep00x0.c @@ -153,10 +153,10 @@ void set_fdt(void) { switch (gd->bd->bi_arch_number) { case MACH_TYPE_IGEP0020: - setenv("dtbfile", "omap3-igep0020.dtb"); + setenv("fdtfile", "omap3-igep0020.dtb"); break; case MACH_TYPE_IGEP0030: - setenv("dtbfile", "omap3-igep0030.dtb"); + setenv("fdtfile", "omap3-igep0030.dtb"); break; } } |