summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInha Song <ideal.song@samsung.com>2015-01-05 15:29:59 +0900
committerLukasz Majewski <l.majewski@samsung.com>2015-01-15 13:12:24 +0100
commit10f7738217fdf8b18882df11ca07c97a83140472 (patch)
tree88dace1801773fad9b292ad269f815dcafb9ffb3
parent86fb5da073d19663f75fd682d7bd44b087f82bf0 (diff)
downloadu-boot-10f7738217fdf8b18882df11ca07c97a83140472.tar.gz
u-boot-10f7738217fdf8b18882df11ca07c97a83140472.tar.bz2
u-boot-10f7738217fdf8b18882df11ca07c97a83140472.zip
tizen: env: bootargs: add root filesystem type to ext4 in bootargs
This patch add bootargs rootfstype to "rootfstype=ext4". To use rootfstype option, can specify the type of root filesystem. Change-Id: Id25808bb27af9735c8f3139ea6388b45a2eace4b Signed-off-by: Inha Song <ideal.song@samsung.com>
-rw-r--r--include/configs/tizen.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/configs/tizen.h b/include/configs/tizen.h
index b7c727656a..6646e035c9 100644
--- a/include/configs/tizen.h
+++ b/include/configs/tizen.h
@@ -91,7 +91,7 @@
"fi;\0" \
"kernel_args=" \
"setenv bootargs root=/dev/mmcblk${mmcrootdev}p${mmcrootpart}" \
- " rootwait ${console} ${opts}\0" \
+ " rootfstype=${rootfstype} rootwait ${console} ${opts}\0" \
"checkboard=" \
"if test ${boardname} = trats2; then " \
"setenv console" CONFIG_CONSOLE_TTY2";" \
@@ -131,6 +131,7 @@
"fi;\0" \
"mmcbootdev=0\0" \
"mmcrootdev=0\0" \
+ "rootfstype=ext4\0" \
"bootdelay=0\0" \
"dfu_alt_info=Please reset the board.\0" \
"dfu_usb_con=0\0" \