Displaying 2 results from an estimated 2 matches for "dmsize".
Did you mean:
dbsize
2012 Apr 02
3
booting a dos floppy from a disk image over pxe
...age which is initially
loaded over pxe using memdisk.
I've created the disk image as follows:
dd if=/dev/zero of=$IMGLOCATION/$IMGNAME bs=$(( 1024 * 1024 )) count=20
LOOPDEV=$(losetup --show -f $IMGLOCATION/$IMGNAME)
MAJOR_MINOR=$(ls -l $LOOPDEV|awk '{print $5$6}'|sed 's/,/:/')
DMSIZE=$(( $(ls -l $IMGLOCATION/$IMGNAME|awk '{print $5}') / 512 ))
echo 0 $DMSIZE linear $MAJOR_MINOR 0|dmsetup create hdz
fdisk /dev/mapper/hdz<<EOT
n
p
1
t
6
a
1
w
EOT
kpartx -a /dev/mapper/hdz
mkdosfs /dev/mapper/hdz1
Then I put a dosfloppy image and memdisk on the image:
mount /dev/...
2007 Dec 28
0
Wine release 0.9.52
...xStack.
Dmitry Timoshkov (11):
user32: Always clip the button painting to the client rectangle.
gdi32: Add a GdiConvertToDevmodeW test, make it pass under Wine.
gdi32: When compiling with PSDK headers request latest DEVMODE definition.
gdi32: In the calculations use a fixed dmSize, not a passed in (possibly too large) one.
user32: Make sure to setup clipping before any painting is done.
user32: Set the edit text in a combobox only if combobox has strings.
include: Add CONTEXT86_EXTENDED_REGISTERS and CONTEXT86_ALL definitions.
gdi32: Add a test for mi...