Use gdisk instead of fdisk when printing partition table

This commit is contained in:
Georges Dupéron 2018-07-15 03:41:48 +02:00
parent 51de94c2f3
commit b15dc2d597

View File

@ -287,7 +287,12 @@ build/os.file: ${os_filename} build/check_makefile
file -kr $< > $@
build/os.fdisk: ${os_filename} build/check_makefile
fdisk -l $< > $@
# gdisk commands:
# * Print partition table
# * Recovery and transformation options
# * print prOtective MBR table
# * Quit
printf 'p\nr\no\nq\n' | gdisk $< > $@
build/os.offsets: ${offset_names:%=build/offsets/%.hex} build/check_makefile
grep '^' ${offset_names:%=build/offsets/%.hex} | sed -e 's/:/: 0x/' > $@