mkimage 的一种用法

../out/host/linux-x86/bin/mkbootfs $FILE/recovery_test | ../out/host/linux-x86/bin/minigzip > $FILE/ramdisk-recovery.img

./mkimage -A arm -O linux -T multi -C none -a 80800000 -e 80800000 -d arch/arm/boot/zImage:$FILE/ramdisk-recovery.img ./recovery.img

利用mkimage将zImage跟ramdisk-recovery.img一起打包,做出ramfs文件系统。这样整个根目录都是出于内存文件系统,不用耗用flash空间,这样大大节省了flash空间

你可能感兴趣的:(linux,Flash)