* util/grub-mkrescue.in: Rename "ata" to "pata" and add ahci when
necessary.
This commit is contained in:
parent
9fc9ce3795
commit
efff4b1cc3
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* util/grub-mkrescue.in: Rename "ata" to "pata" and add ahci when
|
||||||
|
necessary.
|
||||||
|
|
||||||
2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
|
2011-06-27 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Coreboot video support.
|
Coreboot video support.
|
||||||
|
|
|
@ -275,7 +275,7 @@ if test -e "${pc_dir}" ; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# build multiboot core.img
|
# build multiboot core.img
|
||||||
make_image "${multiboot_dir}" i386-multiboot "${iso9660_dir}/boot/multiboot.img" "ata at_keyboard"
|
make_image "${multiboot_dir}" i386-multiboot "${iso9660_dir}/boot/multiboot.img" "pata ahci at_keyboard"
|
||||||
|
|
||||||
if test -e "${efi64_dir}" || test -e "${efi32_dir}"; then
|
if test -e "${efi64_dir}" || test -e "${efi32_dir}"; then
|
||||||
efi_dir=`mktemp -d "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1
|
efi_dir=`mktemp -d "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1
|
||||||
|
@ -296,11 +296,11 @@ if test -e "${efi64_dir}" || test -e "${efi32_dir}"; then
|
||||||
grub_mkisofs_arguments="${grub_mkisofs_arguments} --efi-boot efi.img"
|
grub_mkisofs_arguments="${grub_mkisofs_arguments} --efi-boot efi.img"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
make_image "${qemu_dir}" i386-qemu "${iso9660_dir}/boot/qemu.img" "ata at_keyboard"
|
make_image "${qemu_dir}" i386-qemu "${iso9660_dir}/boot/qemu.img" "pata at_keyboard"
|
||||||
if [ -e "${iso9660_dir}/boot/qemu.img" ] && [ -d "${rom_directory}" ]; then
|
if [ -e "${iso9660_dir}/boot/qemu.img" ] && [ -d "${rom_directory}" ]; then
|
||||||
cp "${iso9660_dir}/boot/qemu.img" "${rom_directory}/qemu.img"
|
cp "${iso9660_dir}/boot/qemu.img" "${rom_directory}/qemu.img"
|
||||||
fi
|
fi
|
||||||
make_image "${coreboot_dir}" i386-coreboot "${iso9660_dir}/boot/coreboot.elf" "ata at_keyboard"
|
make_image "${coreboot_dir}" i386-coreboot "${iso9660_dir}/boot/coreboot.elf" "pata ahci at_keyboard"
|
||||||
if [ -e "${iso9660_dir}/boot/coreboot.elf" ] && [ -d "${rom_directory}" ]; then
|
if [ -e "${iso9660_dir}/boot/coreboot.elf" ] && [ -d "${rom_directory}" ]; then
|
||||||
cp "${iso9660_dir}/boot/coreboot.elf" "${rom_directory}/coreboot.elf"
|
cp "${iso9660_dir}/boot/coreboot.elf" "${rom_directory}/coreboot.elf"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue