Due to ramdisk introduced that replace the rootfs partition, adjust the
partition numbers to mount.
Signed-off-by: Jeremy Chang <jeremy.chang(a)linaro.org>
---
init.rc | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/init.rc b/init.rc
index 7f94a21..c2836b9 100644
--- a/init.rc
+++ b/init.rc
@@ -91,10 +91,10 @@ loglevel 3
on fs
# mount mmc partitions
- mount ext4 mmc@blk0p3 /system
- mount ext4 mmc@blk0p3 /system ro remount
- mount ext4 mmc@blk0p5 /cache
- mount ext4 mmc@blk0p6 /data
+ mount ext4 mmc@blk0p2 /system
+ mount ext4 mmc@blk0p2 /system ro remount
+ mount ext4 mmc@blk0p3 /cache
+ mount ext4 mmc@blk0p5 /data
on post-fs
# once everything is setup, no need to modify /
--
1.7.1
In the Linaro set up u-boot will look for uImage (and not for kernel).
This patch is Linaro specific and should not be contibuted to AOSP.
---
target/board/Android.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/target/board/Android.mk b/target/board/Android.mk
index 82dee3c..f3e4729 100644
--- a/target/board/Android.mk
+++ b/target/board/Android.mk
@@ -15,7 +15,7 @@ else
endif # TARGET_NO_BOOTLOADER
ifneq ($(strip $(TARGET_NO_KERNEL)),true)
- INSTALLED_KERNEL_TARGET := $(PRODUCT_OUT)/kernel
+ INSTALLED_KERNEL_TARGET := $(PRODUCT_OUT)/uImage
else
INSTALLED_KERNEL_TARGET :=
endif
--
1.7.1