9
0
Fork 0

ARM: OMAP: unconditionally use /boot/barebox.env

The startup process falls back to /dev/defaultenv automatically,
no need to decide here.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2013-09-26 14:52:17 +02:00
parent 5913b71943
commit 41dd510b5c
1 changed files with 1 additions and 4 deletions

View File

@ -124,10 +124,7 @@ static int omap_env_init(void)
return 0;
}
if (IS_ENABLED(CONFIG_OMAP_BUILD_IFT))
default_environment_path = "/dev/defaultenv";
else
default_environment_path = "/boot/barebox.env";
default_environment_path = "/boot/barebox.env";
return 0;
}