Add memtest support.
[syslinux-debian/hramrach.git] / debian / syslinux-dev.README.Debian
blob2c630bc6bc23774163583e6b20fceab767fd3488
1 syslinux
2 --------
4 Floppy images
5 =============
7 As of syslinux 4.01+dfsg-1, the syslinux package doesn't contain premade floppy
8 images anymore. Floppy drives are to be considered extinct in 2010.
10 However, if still want floppy images, you can produce them on your own:
12 1. install mtools:
14   # apt-get install mtools
16 2. build the images:
18   # for SIZE in 720 1200 1440 1743; \
19     do \
20         dd if=/dev/zero of=img${SIZE}k bs=1k count=${SIZE};
21     done
23   # for DRIVE in a: b: c: d:;\
24     do \
25         MTOOLSRC=/usr/share/syslinux/examples/mtoolsrc \
26         mformat ${DRIVE}; \
27     done
29   # for SIZE in 720 1200 1440 1743; \
30     do \
31         syslinux -s debian/build/img${SIZE}k; \
32     done
34 3. be happy :)
37 BIOS+EFI netboot
38 ================
40 As of syslinux 5 (with splitout loaders) and syslinux 6 (added efi support),
41 it becomes a bit more tricky to fiddle things arround. If you want to
42 have both bios and efi32/efi64 boot support from one single tftp boot directory,
43 have a look at: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=720589
45  -- Daniel Baumann <mail@daniel-baumann.ch>  Mon, 12 Jul 2010 19:22:36 +0200