Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archiso/mkarchiso
diff options
context:
space:
mode:
Diffstat (limited to 'archiso/mkarchiso')
-rwxr-xr-xarchiso/mkarchiso7
1 files changed, 6 insertions, 1 deletions
diff --git a/archiso/mkarchiso b/archiso/mkarchiso
index 2f51ef1..7b706ca 100755
--- a/archiso/mkarchiso
+++ b/archiso/mkarchiso
@@ -214,6 +214,10 @@ _imgcommon () {
fi
cp "${work_dir}/isomounts" "${work_dir}/iso/"
+
+ export LABEL="ARCHISO_$(pwgen -n 8 1 | tr [a-z] [A-Z])"
+ [ -f ${work_dir}/iso/boot/grub/menu.lst ] && sed "s|archisolabel=[^ ]*|archisolabel=${LABEL}|" -i ${work_dir}/iso/boot/grub/menu.lst
+ [ -f ${work_dir}/iso/boot/isolinux/isolinux.cfg ] && sed "s|archisolabel=[^ ]*|archisolabel=${LABEL}|" -i ${work_dir}/iso/boot/isolinux/isolinux.cfg
}
command_iso () {
@@ -251,6 +255,7 @@ command_iso () {
-no-emul-boot -boot-load-size 4 -boot-info-table \
-publisher "Arch Linux <http://www.archlinux.org>" \
-A "Arch Linux Live/Rescue CD" \
+ -V "${LABEL}" \
-o "${imgname}" "${work_dir}/iso/"
}
@@ -267,7 +272,7 @@ command_usb () {
dd if=/dev/zero of="$fsimg" bs=512 count="$imgsz"
# create a filesystem on the image
- mke2fs -m 0 -F "$fsimg"
+ mke2fs -m 0 -F -L "${LABEL}" "$fsimg"
# mount the filesystem and copy data
modprobe loop