make -j 10 sometimes fails to mount the resulting ISO9660 filesystem, added information to help debug the issue

This commit is contained in:
Georges Dupéron 2018-07-29 16:51:07 +02:00
parent 8404cc860e
commit b01673890e

View File

@ -406,9 +406,14 @@ build/test_pass/sudo_fat12_mount: ${os_filename} ${dep_bytes_fat12_start} build/
build/test_pass/sudo_iso_mount: ${os_filename} build/check_makefile | build/mnt_iso build/test_pass/sudo_iso_mount: ${os_filename} build/check_makefile | build/mnt_iso
sudo umount build/mnt_iso || true sudo umount build/mnt_iso || true
sudo mount -o loop,ro $< build/mnt_iso grep '^' build/offsets/* # debug failure to mount the ISO9660 filesystem
(sudo mount -o loop,ro $< build/mnt_iso) || true
dmesg | tail # debug failure to mount the ISO9660 filesystem
hexdump -C os.bat
ls -l build/mnt_iso | grep os.zip ls -l build/mnt_iso | grep os.zip
sudo umount build/mnt_iso sudo umount build/mnt_iso
sudo mount -o loop,ro $< build/mnt_iso
sudo umount build/mnt_iso
touch $@ touch $@
.PHONY: test/macos .PHONY: test/macos