summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/phytec-phyflex-imx6/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/boards/phytec-phyflex-imx6/board.c')
-rw-r--r--arch/arm/boards/phytec-phyflex-imx6/board.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/arm/boards/phytec-phyflex-imx6/board.c b/arch/arm/boards/phytec-phyflex-imx6/board.c
index 843edac70c..fe3d1b20e0 100644
--- a/arch/arm/boards/phytec-phyflex-imx6/board.c
+++ b/arch/arm/boards/phytec-phyflex-imx6/board.c
@@ -18,6 +18,8 @@
*/
#include <envfs.h>
+#include <environment.h>
+#include <bootsource.h>
#include <common.h>
#include <gpio.h>
#include <init.h>
@@ -103,6 +105,19 @@ static int phytec_pfla02_init(void)
imx6_bbu_nand_register_handler("nand", BBU_HANDLER_FLAG_DEFAULT);
+ switch (bootsource_get()) {
+ case BOOTSOURCE_MMC:
+ of_device_enable_path("/chosen/environment-sd");
+ break;
+ case BOOTSOURCE_NAND:
+ of_device_enable_path("/chosen/environment-nand");
+ break;
+ default:
+ case BOOTSOURCE_SPI:
+ of_device_enable_path("/chosen/environment-spinor");
+ break;
+ }
+
defaultenv_append_directory(defaultenv_phyflex_imx6);
return 0;