先把Stage2.img復制到一個工作目錄
cp images/stage2.img /tmp
mkdir /tmp/temp
mount -o loop stage2.img /tmp/temp
cp -r /tmp/temp /tmp/stage2
umount /tmp/temp
rm -rf /tmp/temp /tmp/stage2.img
修改stage
cd /tmp/stage2
vi .buildstamp
vi usr/lib/anoconda/dispatch.py
重新打包把sys-fs/squashfs-tools-3.4這個包裝上,因為我們需要裡 面的mksquashfs.
mksquashfs . ../stage2.img -all-root -no-fragments
okey 完 成!