summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Harkin <ryan.harkin@linaro.org>2015-04-30 11:10:54 +0100
committerRyan Harkin <ryan.harkin@linaro.org>2015-04-30 11:10:54 +0100
commit7ae1f82bca31ca675eb7c4e57fc49def851b19a0 (patch)
tree6581e9f4e31752afadb9697194e7d549e1bc264e
parent071cb95869f75cbe0f033c5a8584e7c748764edd (diff)
15.04: add androidboot.hardware=juno
Change-Id: If20fcfebb365adce0455f86a1cd5cd61062538a8 Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
-rw-r--r--members/arm/android/images/armv8-android-juno-lsk/HOWTO_install.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/members/arm/android/images/armv8-android-juno-lsk/HOWTO_install.txt b/members/arm/android/images/armv8-android-juno-lsk/HOWTO_install.txt
index 38d2839..dc4569e 100644
--- a/members/arm/android/images/armv8-android-juno-lsk/HOWTO_install.txt
+++ b/members/arm/android/images/armv8-android-juno-lsk/HOWTO_install.txt
@@ -214,7 +214,7 @@ Choice:1
Once the EFI Shell is running, you will see a countdown. Press the ESC key to abort this countdown. Then, at the "Shell>" prompt, you can launch the kernel from the commandline, by typing the following command:
-bc. kernel dtb=juno.dtb initrd=ramdisk.img console=ttyAMA0,115200
+bc. kernel dtb=juno.dtb initrd=ramdisk.img console=ttyAMA0,115200 androidboot.hardware=juno
You should see output similar to the following (where X replaces build specific info):
@@ -235,7 +235,7 @@ You can automate EFI Shell to boot the kernel on your USB stick.
To do this, you create a file in the boot partition of your disk image called /boot/EFI/startup.nsh. This is an EFI Shell script where you can place the command you use to launch the kernel. For example, I inserted my USB stick into my host Ubuntu maching, mounted the boot partition and did the following:
bc. mkdir -p <mount point of boot partition>/EFI/boot
-echo "kernel dtb=juno.dtb initrd=ramdisk.img console=ttyAMA0,115200" > <mount point of boot partition>/EFI/boot/startup.nsh
+echo "kernel dtb=juno.dtb initrd=ramdisk.img console=ttyAMA0,115200 androidboot.hardware=juno" > <mount point of boot partition>/EFI/boot/startup.nsh
Then I unmounted the boot partition and inserted the USB drive into the Juno board. From this point on, the board will boot directly into the kernel without intervention from the user.