Explorar el Código

[build] Pad .hd image type to 32 KB

The disk partition prefix code in hdprefix.S reads the gPXE image in
tracks, not individual sectors.  This means it will attempt to read
beyond the end of the image if the .hd image type is not padded to 32
KB.

This issue is affects virtualization software which may execute a .hd or
.usb image file directly - effectively running a machine with a tiny
disk containing just the gPXE image.  Boot will fail when gPXE tries to
read beyond the end of disk.
tags/v1.0.0-rc1
Stefan Hajnoczi hace 15 años
padre
commit
9760005fe8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/arch/i386/Makefile.pcbios

+ 1
- 1
src/arch/i386/Makefile.pcbios Ver fichero

@@ -31,7 +31,7 @@ MEDIA		+= exe
31 31
 #
32 32
 PAD_rom		= $(PADIMG) --blksize=512 --byte=0xff $@
33 33
 PAD_dsk		= $(PADIMG) --blksize=512 $@
34
-PAD_hd		= $(PADIMG) --blksize=512 $@
34
+PAD_hd		= $(PADIMG) --blksize=32768 $@
35 35
 
36 36
 # rule to make a non-emulation ISO boot image
37 37
 NON_AUTO_MEDIA	+= iso

Loading…
Cancelar
Guardar