Displaying 3 results from an estimated 3 matches for "sizemb".
Did you mean:
size1mb
2007 Oct 09
1
DOS/Freedos: Can't use mkfloppyimg.sh or mkdiskimage for +8M images ( Murali (????? ?????) )
...is smaller than 8megs, everything is working
fine as expected.
To create my dos image, I did use Murali
script and pick the freedos floppy image from
http://www.fdos.org/bootdisks/autogen/FDSTD.144.gz
I modify cwhosthe script, put FDSTD.144 as the OLDIMAGE
I set NEWIMAGE to dexter1.img
I set the SIZEMB to 10
The script return the following information
Your floppy image is in dexter1.img. When using it in iso/pxelinux, dont forget to add
"floppy c=10 s=32 h=64" to the argument of memdisk
I modify syslinux.cfg/isolinux.cfg and create a menu entry
label Dexter-bios8217-bmc146
menu la...
2004 Feb 14
0
Memdisk/floppy image question
...be included with syslinux?
Basically given an existing floppy image, it creates a larger image and
copies its contents over and sets up the bootsector of the newimage
appropriately.
---- SCRIPT STARTS -----
#!/bin/bash
NEWIMAGE=dosimage.img
OLDIMAGE=oldimage.img # Name of an existing dos image
SIZEMB=8
MKDOSFS=mkdosfs # binary for mkdosfs
SIZEKB=`echo "$SIZEMB 1024 * p" | dc`
NUMSECT=`echo "$SIZEKB 2 * p" | dc`
MNTNEW=`mktemp -d /tmp/mntptnew.XXXXXX` # Create a mountpoint
MNTOLD=`mktemp -d /tmp/mntptold.XXXXXX` # Name of an existing mountpoint
# Create the filesystem
OUTL...
2007 Oct 10
1
DOS/Freedos: Can't use mkfloppyimg.sh or mkdiskimage for +8M images ( Solved)
...ng
> fine as expected.
>
> To create my dos image, I did use Murali
> script and pick the freedos floppy image from
> http://www.fdos.org/bootdisks/autogen/FDSTD.144.gz
>
> I modify cwhosthe script, put FDSTD.144 as the OLDIMAGE
> I set NEWIMAGE to dexter1.img
> I set the SIZEMB to 10
>
> The script return the following information
> Your floppy image is in dexter1.img. When using it in iso/pxelinux, dont forget to add
> "floppy c=10 s=32 h=64" to the argument of memdisk
>
> I modify syslinux.cfg/isolinux.cfg and create a menu entry
> label D...