diff options
author | guoyin.chen <guoyin.chen@nxp.com> | 2017-09-07 21:32:35 +0800 |
---|---|---|
committer | guoyin.chen <guoyin.chen@nxp.com> | 2017-09-07 22:42:32 +0800 |
commit | aa7609213b2e9ee6bbec784f7dbf9799fce62ffc (patch) | |
tree | 9eb611d8cf873aa4c8f623e6407bdf9ab795e6ef | |
parent | f7852257913d8c41f324a945eaec06ab4d194ae8 (diff) |
MA-10167 Add soc_type to be imx8mq to align the init.imx8mq.rcn7.1.2_2.1.0_8mq-ear
It will be used by android init to load the init.imx8mq.rc
Change-Id: Id157cfe6952c9ccf4021d9098e25d9e9d545859f
Signed-off-by: guoyin.chen <guoyin.chen@nxp.com>
-rwxr-xr-x | drivers/usb/gadget/f_fastboot.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/gadget/f_fastboot.c b/drivers/usb/gadget/f_fastboot.c index ef1eae6..ce8ea9b 100755 --- a/drivers/usb/gadget/f_fastboot.c +++ b/drivers/usb/gadget/f_fastboot.c @@ -1788,6 +1788,9 @@ void board_fastboot_setup(void) } else if (is_imx8qxp()) { if (!getenv("soc_type")) setenv("soc_type", "imx8qxp"); + } else if (is_imx8m()) { + if (!getenv("soc_type")) + setenv("soc_type", "imx8mq"); } } |