index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | nl6720 <nl6720@gmail.com> | 2021-04-27 13:03:29 +0300 |
---|---|---|
committer | nl6720 <nl6720@gmail.com> | 2021-04-30 20:50:07 +0300 |
commit | 0406f9ca021ff833bf4e6591871d683b4f04727c (patch) | |
tree | ac70fd5ed607c5ecbac19b4c2e9ea3fc693ae893 /archiso | |
parent | a771297e12f77f4aeffa2303b33ffc7d7bbf1e3d (diff) |
-rwxr-xr-x | archiso/mkarchiso | 4 |
diff --git a/archiso/mkarchiso b/archiso/mkarchiso index 410db80..939a7a3 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -413,10 +413,10 @@ _make_bootmode_bios.syslinux.mbr() { if [[ -e "${isofs_dir}/syslinux/hdt.c32" ]]; then install -d -m 0755 -- "${isofs_dir}/syslinux/hdt" if [[ -e "${airootfs_dir}/usr/share/hwdata/pci.ids" ]]; then - gzip -c -9 "${airootfs_dir}/usr/share/hwdata/pci.ids" > \ + gzip -cn9 "${airootfs_dir}/usr/share/hwdata/pci.ids" > \ "${isofs_dir}/syslinux/hdt/pciids.gz" fi - find "${airootfs_dir}/usr/lib/modules" -name 'modules.alias' -print -exec gzip -c -9 '{}' ';' -quit > \ + find "${airootfs_dir}/usr/lib/modules" -name 'modules.alias' -print -exec gzip -cn9 '{}' ';' -quit > \ "${isofs_dir}/syslinux/hdt/modalias.gz" fi |