[uitl-iso] fix #92; set new efi_part_size back to 31M

This commit is contained in:
udeved 2015-05-12 01:08:23 +02:00
parent 3d0cf8f1f3
commit 384585f61a
2 changed files with 6 additions and 6 deletions

View file

@ -191,12 +191,12 @@ squash_image_dir() {
run_xorriso(){
msg "Creating ISO image..."
local efi_boot_args=""
local efi_boot_args=()
if [[ -f "${work_dir}/iso/EFI/miso/${iso_name}.img" ]]; then
msg2 "Setting efi args. El Torito detected."
efi_boot_args=("-eltorito-alt-boot" \
"-e EFI/miso/${iso_name}.img" \
"-isohybrid-gpt-basdat" \
efi_boot_args=("-eltorito-alt-boot"
"-e EFI/miso/${iso_name}.img"
"-isohybrid-gpt-basdat"
"-no-emul-boot")
fi
@ -221,7 +221,7 @@ run_xorriso(){
# Build ISO
make_iso() {
msg "Start [Build ISO]"
touch "${work_dir}/iso/.buildiso"
touch "${work_dir}/iso/.miso"
for d in $(find "${work_dir}" -maxdepth 1 -type d -name '[^.]*'); do
if [[ "$d" != "${work_dir}/iso" ]] && \
[[ "$(basename "$d")" != "iso" ]] && \

View file

@ -393,7 +393,7 @@ load_profile_config(){
fi
if [[ -z ${efi_part_size} ]]; then
efi_part_size="42M"
efi_part_size="31M"
fi
if [[ -z ${hostname} ]];then