12345678910111213141516171819202122232425262728293031323334353637383940 |
- From 221b57404b29190e0b37f03b81dd3ee6a0fc9ce0 Mon Sep 17 00:00:00 2001
- From: =?UTF-8?q?Vincent=20Stehl=C3=A9?= <vincent.stehle@freescale.com>
- Date: Tue, 12 Aug 2014 10:17:31 +0200
- Subject: [PATCH] mx6qsabre_common: boot Linux to /init in mfgtools mode
- MIME-Version: 1.0
- Content-Type: text/plain; charset=UTF-8
- Content-Transfer-Encoding: 8bit
- Buildroot supplies a nice /init wrapper script to use when booting from a
- ramdisk.
- This patch tells u-boot to tell the kernel to boot into /init (instead of
- /linuxrc) on i.MX6, when booting in mfgtools mode. This way we can boot a
- buildroot system entirely through USB.
- Signed-off-by: Vincent Stehlé <vincent.stehle@freescale.com>
- Signed-off-by: Julien Olivain <julien.olivain@oss.nxp.com>
- [Julien: rebased patch on lf-6.6.23-2.0.0]
- Signed-off-by: Julien Olivain <ju.o@free.fr>
- Upstream: Not applicable, Buildroot specific.
- ---
- include/configs/imx_env.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
- diff --git a/include/configs/imx_env.h b/include/configs/imx_env.h
- index 1b34478fc3f..9106d59ff9f 100644
- --- a/include/configs/imx_env.h
- +++ b/include/configs/imx_env.h
- @@ -54,7 +54,7 @@
-
- #define CFG_MFG_ENV_SETTINGS_DEFAULT \
- "mfgtool_args=setenv bootargs console=${console},${baudrate} " \
- - "rdinit=/linuxrc " \
- + "rdinit=/init " \
- "clk_ignore_unused "\
- "\0" \
- "kboot="MFG_BOOT_CMD"\0"\
- --
- 2.45.2
|