Make persistent changes to init.rc

后端 未结 8 2123
没有蜡笔的小新
没有蜡笔的小新 2020-12-07 22:39

I want to change the init.rc file of an android pad. But after I change it and reboot the system, the original init.rc comes back.

How can

8条回答
  •  渐次进展
    2020-12-07 23:11

    Unpack the uramdisk using following command in host PC(Linux)

    mkdir /tmp/initrc cd /tmp/initrd
    sudo mount /dev/sdb1 /mnt          
    

    sdb1 is partion where uramdisk/uInitrd resides.

    dd bs=1 skip=64 if=/mnt/uInitrd of=initrd.gz
    gunzip initrd.gz
    

    At this point running the command file initrd should show:

    mkdir fs
    cd fs
    cpio -id < ../initrd
    

    Make changes to init.rc

    Pack uramdisk using following commands:

    find ./ | cpio -H newc -o > ../newinitrd
    cd ..
    gzip newinitrd
    mkimage -A arm -O linux -C gzip -T ramdisk -n "My Android Ramdisk Image" -d newinitrd.gz uInitrd-new
    

提交回复
热议问题