From: Inha Song Date: Mon, 5 Jan 2015 06:29:59 +0000 (+0900) Subject: tizen: env: bootargs: add root filesystem type to ext4 in bootargs X-Git-Tag: submit/tizen/20150105.074110^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0108431d9a0ebae872bfdafa1a1f32ea4694be19;p=platform%2Fkernel%2Fu-boot.git 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 --- 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" \