Script compiler android and make a file system

來源:互聯網
上載者:User

一、 modify AndroidBoard.mk
gedit device/wolf/smdk6410/AndroidBoard.mk

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := gpio-keys.kcm
LOCAL_MODULE_TAGS := eng
include $(BUILD_KEY_CHAR_MAP)

#copy base files

PRODUCT_COPY_FILES += \
 $(LOCAL_PATH)/asound.conf:system/etc/asound.conf \
 $(LOCAL_PATH)/vold.fstab:system/etc/vold.fstab \
 $(LOCAL_PATH)/init.rc:root/init.rc
 
二、build android source
1. source ./build/envsetup.sh
including device/htc/passion/vendorsetup.sh
including device/samsung/crespo/vendorsetup.sh
including device/wolf/smdk6410/vendorsetup.sh
2. lunch
You're building on Linux

Lunch menu... pick a combo:
     1. generic-eng
     2. simulator
     3. full_passion-userdebug
     4. full_crespo-userdebug
     5. smdk6410-eng

Which would you like? [generic-eng] 5
3 make -j4
三、 make rootfs

#!/bin/sh

PRODUCT=smdk6410
FS_DIR=/home/nfsdir
echo -n "Generating rootfs for Android .."

rm -rf ${FS_DIR}

cp -a out/target/product/${PRODUCT}/root/ ${FS_DIR}
cp -a out/target/product/${PRODUCT}/system/* ${FS_DIR}/system
cp -a out/target/product/${PRODUCT}/data/* ${FS_DIR}/data
chown root:root ${FS_DIR} -R

echo "...done"

echo -n "Install prebuilt packages..."
if [ -f device/wolf/common/busybox-bin.tar.gz ]; then
 tar -xf device/wolf/common/busybox-bin.tar.gz -C ${FS_DIR}/system
fi

echo "...done"

四、setenv
setenv bootargs console=ttySAC0,115200 root=/dev/nfs init=/init nfsroot=10.50.25.10:/home/nfsdir
ip=10.50.25.20:10.50.25.10:10.50.25.1:255.255.255.0:::eth0:off

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.