User Tools

Site Tools


util:dos_bootcd
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


util:dos_bootcd [2006/08/04 01:41] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== DOS BootCD ======
 +Die ewige Suche nach der DOS BootCD hat endlich ein Ende.
 +Diese ist auch fuer den Linuxer interessant, da die meisten
 +Biose nur von DOS aus geflashed werden koennen. Ausserdem
 +ist das gefrickel mit (meist mehreren) Floppies einfach nervig.
  
 +===== DOS BootFloppy =====
 +Die wird tatsaechlich gebraucht, die BootCD basiert darauf.
 +In diesem Beispiel wird [[http://www.biosflash.com/zips/drdos.zip|drdos]]
 +verwendet.
 +
 +===== Flash Files zum Image hinzufuegen =====
 +  mount -t vfat -o loop FLOPPY.IMG /mnt
 +  df /mnt # check free space
 +  rm /mnt/qbasic.* # make some space
 +  cp FLASHPGM.EXE FLASHROM.BIN /mnt
 +  umount /mnt
 +
 +===== BootCD bauen =====
 +  mkdir /tmp/bootcd # temporary directory for CD image
 +  cp FLOPPY.IMG /tmp/bootcd/ # add floopy image to CD root
 +  mkisofs -r -b FLOPPY.IMG -c boot.cat -o /tmp/bootcd.iso /tmp/bootcd
 +  cdrecord dev=X,Y,Z /tmp/bootcd.iso
 +  rm -r /tmp/bootcd # cleanup temporary files
 +  rm /tmp/bootcd.iso
 +Der Parameter ''-c'' zu mkisofs wird zwar benoetigt, die Datei als
 +Argument allerdings erstellt.
 +
 +===== BootCD brennen =====
 +Das Brennen ist voellig unkritisch, einfach die Iso auf CD klatschen.
 +
 +===== Links =====
 +[[http://www.nenie.org/misc/flashbootcd.html]]
util/dos_bootcd.txt · Last modified: 2006/08/04 01:41 by 127.0.0.1