Update make_mksquashfs.sh
This commit is contained in:
parent
1acd796219
commit
a9d65be5fe
1 changed files with 17 additions and 0 deletions
|
@ -16,3 +16,20 @@ cp work/airootfs/pkglist.txt work/iso/arch/boot/x86_64/
|
|||
arch-chroot work/airootfs pacman -Scc
|
||||
mksquashfs work/airootfs work/arch/x86_64/airootfs.sfs
|
||||
md5sum work/arch/x86_64/airootfs.sfs > work/arch/x86_64/airootfs.md5
|
||||
|
||||
read -p "Soll das Image jetzt gemacht werden? [Y/n] " image
|
||||
|
||||
if [ "$root" != "n" ]
|
||||
then
|
||||
mkdir out
|
||||
cd work
|
||||
xorriso -as mkisofs \
|
||||
-iso-level 3 \
|
||||
-full-iso9660-filenames \
|
||||
-volid "SIMON_LINUX" \
|
||||
-eltorito-boot isolinux/isolinux.bin \
|
||||
-eltorito\-catalog isolinux/boot.cat \
|
||||
-no-emul-boot -boot-load-size 4 -boot-info-table \
|
||||
-isohybrid-mbr $(pwd)/arch/isolinux/isohdpfx.bin \
|
||||
-output ../out/arch-simon-linux-$(date "+%y.%m.%d")-x86_64.iso arch
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue