From 7c8c67d6582815812bfb77dd4aa607de5f398e31 Mon Sep 17 00:00:00 2001 From: Matthias Rabe Date: Fri, 25 Aug 2017 20:01:12 +0200 Subject: ARM: i.MX: phytec-som-imx: env: add android boot options Set needed bootargs for android in mmc, emmc and nand boot. Signed-off-by: Matthias Rabe Signed-off-by: Christian Hemp --- arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/emmc | 5 +++++ arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/mmc | 5 +++++ arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/nand | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/emmc b/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/emmc index 83924df5d7..4e286dc325 100644 --- a/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/emmc +++ b/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/emmc @@ -1,5 +1,10 @@ #!/bin/sh +if [ -f /mnt/mmc3/android ]; then + # configure here the android specific stuff + global linux.bootargs.sec="selinux=0 enforcing=0" +fi + global.bootm.image="/mnt/mmc3/linuximage" global.bootm.oftree="/mnt/mmc3/oftree" global.linux.bootargs.dyn.root="root=/dev/mmcblk3p2 rootwait rw" diff --git a/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/mmc b/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/mmc index 332fc26ad0..df874f0a38 100644 --- a/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/mmc +++ b/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/mmc @@ -1,5 +1,10 @@ #!/bin/sh +if [ -f /mnt/mmc/android ]; then + # configure here the android specific stuff + global linux.bootargs.sec="selinux=0 enforcing=0" +fi + global.bootm.image="/mnt/mmc/linuximage" global.bootm.oftree="/mnt/mmc/oftree" global.linux.bootargs.dyn.root="root=/dev/mmcblk0p2 rootwait rw" diff --git a/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/nand b/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/nand index e4eded530d..0c2b1cbe4c 100644 --- a/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/nand +++ b/arch/arm/boards/phytec-som-imx6/defaultenv-physom-imx6/boot/nand @@ -2,6 +2,11 @@ [ ! -e /dev/nand0.root.ubi ] && ubiattach /dev/nand0.root +if [ -e /dev/nand0.root.ubi.system ]; then + # configure here the android specific stuff + global linux.bootargs.sec="selinux=0 enforcing=0" +fi + global.bootm.image="/dev/nand0.root.ubi.kernel" global.bootm.oftree="/dev/nand0.root.ubi.oftree" global.linux.bootargs.dyn.root="root=ubi0:root ubi.mtd=root rootfstype=ubifs rw" -- cgit v1.2.3