Hello, Petr OLIVKA <Petr.Olivka@vsb.cz> wrote: > I disable HD and FD in BIOS chipset setup or remove Multi IO card > from PC and disable both flopy A: and B: and HD set as NONE in BIOS > setup. > > image 1 type "Non system disk or disk error/insert another disk." (it > is typical MS-DOS boot sector error) and froze > image 2 froze > image 3 type "ramdisk error - press any key to continue" (it is message > from boot.S - netboot boot sector) and froze > > BUT IF I ENABLE AT LEAST ONE FLOPY, EVERY THREE IMAGES WORK FINE, 1 > AND 2 AS DISK A: IMAGE 3 AS DISK C:. IF I ENABLE ONLY HD AND NO FLOPY, > THE SAME BAD RESULT. On my systems disabling all floppy drives does not hang the system, so your problem seems to depend on the type of BIOS used. Since I can't reproduce your problem, I can only assume the cause. It seems to be that part of first.S which tries to determine the number of floppy drives attached to the system. If BIOS int $13, function $08 returns carry, this number will be determined by looking at the system confi- guration word. As stated in Ralf Brown's interrupt list this function $08 might not return Carry set even when accessing a non-existent drive. This seems to be the case on the systems I've tried it on. However, some systems do correctly return Carry, and then first.S will look at the system configuration word. And then a real bug gets into effect. Line 194 of first.S reads getnm3: mov dl,1 but it should read: getnm3: mov dl,#1 This definitely is a bug. However, I'm only guessing that this bug caused your problem. If it does not, please let me know and I will go on for a further search. I've attached a changed file first_c.c, which you can include into the netboot source tree (directory netboot/mknbi-dos). Then you need to recompile mknbi-dos. gero. ===================< netboot/mknbi-dos/first_c.c >==================== /* This file has been generated automatically by makec */ /* DO NOT EDIT! */ #include <common.h> __u8 first_data[] = { 0x8c,0xda,0x8c,0xc8,0x8e,0xd8,0x8c,0x06,0x72,0x05,0x89,0x16,0x70, 0x05,0x89,0x2e,0x74,0x05,0x89,0x36,0x76,0x05,0x89,0x3e,0x78,0x05, 0x89,0xe5,0x8b,0x46,0x04,0xa3,0x66,0x05,0x8b,0x46,0x06,0xa3,0x68, 0x05,0x8b,0x46,0x08,0xa3,0x6a,0x05,0x8b,0x46,0x0a,0xa3,0x6c,0x05, 0xbe,0x33,0x04,0xe8,0xe4,0x03,0xc4,0x1e,0x66,0x05,0xbe,0xdc,0x04, 0x26,0x8b,0x07,0x3b,0x06,0x8e,0x04,0x75,0x2e,0x26,0x8b,0x47,0x02, 0x3b,0x06,0x90,0x04,0x75,0x24,0xbe,0xff,0x04,0x26,0x8a,0x47,0x04, 0xb1,0x04,0xd2,0xe8,0x24,0x0f,0x3c,0x04,0x75,0x13,0x31,0xff,0x8a, 0x85,0x92,0x04,0x08,0xc0,0x74,0x21,0x26,0x3a,0x41,0x10,0x75,0x03, 0x47,0xeb,0xef,0xe8,0xa3,0x03,0x8b,0x36,0x76,0x05,0x8b,0x3e,0x78, 0x05,0x8b,0x2e,0x74,0x05,0x8e,0x06,0x72,0x05,0x8e,0x1e,0x70,0x05, 0xcb,0xbe,0xc0,0x04,0xb0,0x11,0xe8,0x42,0x03,0x8c,0xc0,0x09,0xf8, 0x74,0xda,0x26,0x8a,0x45,0x03,0xa8,0x03,0x75,0xd2,0x26,0x8b,0x45, 0x04,0x26,0x8b,0x5d,0x06,0xa3,0x2e,0x0a,0x89,0x1e,0x30,0x0a,0x26, 0x8b,0x45,0x0c,0x26,0x8b,0x5d,0x0e,0x05,0xff,0x03,0x83,0xd3,0x00, 0xb1,0x0a,0xd3,0xe8,0xb1,0x06,0xd3,0xe3,0x09,0xd8,0xa3,0x32,0x0a, 0x26,0x8a,0x1d,0x80,0xe3,0x0f,0x30,0xff,0xd1,0xe3,0xd1,0xe3,0x26, 0x8b,0x01,0xa3,0x36,0x0a,0x26,0x8b,0x41,0x02,0xa2,0x38,0x0a,0x26, 0x8b,0x41,0x04,0xa3,0x34,0x0a,0x26,0x8a,0x41,0x07,0xa2,0x3c,0x0a, 0x26,0x8a,0x41,0x06,0xa2,0x3b,0x0a,0xbb,0x41,0x00,0x3c,0x80,0x72, 0x03,0xbb,0x74,0x00,0x89,0x1e,0x2c,0x0a,0x50,0xcd,0x11,0xa3,0x3d, 0x0a,0x58,0x3c,0x80,0x73,0x24,0xb4,0x08,0x30,0xd2,0xcd,0x13,0x72, 0x08,0x08,0xd2,0x75,0x26,0xfe,0xc2,0xeb,0x22,0x8b,0x16,0x3d,0x0a, 0xf6,0xc2,0x01,0x74,0x17,0xb1,0x06,0xd2,0xea,0x80,0xe2,0x03,0xfe, 0xc2,0xeb,0x0e,0xb4,0x08,0xb2,0x80,0xcd,0x13,0x72,0x04,0xfe,0xc2, 0xeb,0x02,0xb2,0x01,0x88,0x16,0x3a,0x0a,0xe8,0xe1,0x01,0xb8,0x00, 0x30,0x8e,0xc0,0x31,0xdb,0x30,0xc0,0x31,0xd2,0xe8,0x93,0x06,0xbe, 0x19,0x05,0x72,0x61,0x80,0x3e,0x3b,0x0a,0x80,0x72,0x32,0xbe,0x39, 0x05,0x26,0x80,0x3e,0xbe,0x01,0x80,0x75,0x4f,0x26,0x80,0x3e,0xc2, 0x01,0x04,0x74,0x08,0x26,0x80,0x3e,0xc2,0x01,0x01,0x75,0x3f,0x26, 0x8b,0x16,0xc6,0x01,0x26,0xa1,0xc8,0x01,0x09,0xc0,0x75,0x32,0x30, 0xc0,0xe8,0x5a,0x06,0xbe,0x19,0x05,0x72,0x28,0xbe,0x39,0x05,0xa0, 0x3b,0x0a,0x26,0x38,0x06,0x24,0x00,0x75,0x1b,0x26,0x81,0x3e,0x0b, 0x00,0x00,0x02,0x75,0x12,0x26,0x83,0x3e,0x1a,0x00,0x02,0x75,0x0a, 0x26,0xa1,0x18,0x00,0x3a,0x06,0x38,0x0a,0x74,0x18,0xe8,0x57,0x02, 0x8b,0x36,0x76,0x05,0x8b,0x3e,0x78,0x05,0x8b,0x2e,0x74,0x05,0x8e, 0x06,0x72,0x05,0x8e,0x1e,0x70,0x05,0xcb,0xfc,0x31,0xd2,0xc4,0x3e, 0x6a,0x05,0x8c,0xc0,0x09,0xf8,0x74,0x20,0x26,0x8a,0x05,0x3c,0x02, 0x75,0x19,0x81,0xc7,0xec,0x00,0x89,0xfb,0xbe,0x9f,0x04,0x89,0xdf, 0xb9,0x04,0x00,0xf3,0xa6,0x74,0x0b,0x01,0xce,0x80,0x3c,0x00,0x75, 0xf0,0xeb,0x33,0xeb,0xb7,0x83,0xee,0x04,0x81,0xee,0x9f,0x04,0x89, 0xf0,0x1e,0x8c,0xdb,0x8e,0xc3,0xbf,0xe5,0x0c,0xc5,0x36,0x6a,0x05, 0x89,0xf3,0xba,0x2c,0x01,0x09,0xc0,0x75,0x33,0x31,0xc9,0x81,0xc6, 0xf0,0x00,0xac,0x3c,0x00,0x75,0x0a,0x41,0x83,0xf9,0x10,0x73,0x22, 0xeb,0xf3,0xeb,0x2f,0x3c,0xff,0x75,0x0f,0x89,0xf2,0x29,0xda,0x81, 0xfa,0x2c,0x01,0x73,0x10,0xba,0x2c,0x01,0xeb,0x0b,0xac,0x88,0xc1, 0x30,0xed,0x01,0xce,0x31,0xc9,0xeb,0xd3,0xbe,0x4f,0x05,0xb8,0xe5, 0x0c,0x01,0xd0,0x72,0xa3,0x89,0xd1,0x89,0xde,0xf3,0xa4,0x1f,0x89, 0x16,0xe3,0x0c,0xfa,0xb8,0x00,0x30,0x8e,0xd0,0xbc,0xf0,0xff,0xfc, 0xcd,0x12,0xb1,0x06,0xd3,0xe0,0xbb,0xe5,0x0c,0x03,0x1e,0xe3,0x0c, 0x89,0xda,0xb1,0x04,0xd3,0xeb,0x43,0x29,0xd8,0xa3,0x6e,0x05,0x8e, 0xc0,0xbe,0x80,0x05,0x89,0xf7,0x89,0xd1,0x29,0xf1,0xf3,0xa4,0x8b, 0x1e,0x6e,0x05,0x1e,0x8e,0xdb,0x31,0xc0,0x8e,0xc0,0x26,0xa1,0x4c, 0x00,0xa3,0x1c,0x0a,0x26,0xa1,0x4e,0x00,0xa3,0x1e,0x0a,0x26,0xa1, 0xbc,0x00,0xa3,0x20,0x0a,0x26,0xa1,0xbe,0x00,0xa3,0x22,0x0a,0x26, 0xa1,0xc4,0x03,0xa3,0x24,0x0a,0x26,0xa1,0xc6,0x03,0xa3,0x26,0x0a, 0x26,0xa1,0xe0,0x03,0xa3,0x28,0x0a,0x26,0xa1,0xe2,0x03,0xa3,0x2a, 0x0a,0x1f,0x26,0x89,0x1e,0x4e,0x00,0x26,0xc7,0x06,0x4c,0x00,0xeb, 0x05,0x26,0x89,0x1e,0xbe,0x00,0x26,0xc7,0x06,0xbc,0x00,0x80,0x05, 0x26,0x89,0x1e,0xe2,0x03,0x26,0xc7,0x06,0xe0,0x03,0xa1,0x05,0xbf, 0xc4,0x03,0xbe,0x4a,0x0c,0xb9,0x04,0x00,0xf3,0xa4,0xfb,0x1e,0xb8, 0x00,0x30,0x8e,0xd8,0x31,0xc0,0x8e,0xc0,0x31,0xf6,0xbf,0x00,0x7c, 0xb9,0x00,0x02,0xf3,0xa4,0x1f,0xea,0x00,0x7c,0x00,0x00,0x06,0x56, 0x57,0x8a,0x16,0x3b,0x0a,0x80,0xfa,0x80,0x73,0x61,0x88,0x16,0x83, 0x0c,0xb4,0x08,0xcd,0x13,0x72,0x57,0x30,0xe4,0x88,0xe8,0x40,0xa3, 0xa4,0x0c,0xbe,0xa6,0x0c,0x88,0xc8,0x89,0x44,0x0d,0x88,0xf0,0x40, 0x89,0x44,0x0f,0x80,0xfb,0x05,0x72,0x02,0xb3,0x04,0x30,0xff,0x4b, 0x53,0xd1,0xe3,0xd1,0xe3,0x81,0xc3,0xac,0x04,0x30,0xe4,0x8a,0x07, 0x88,0x44,0x06,0x8a,0x47,0x01,0x89,0x44,0x0b,0x8a,0x47,0x02,0x88, 0x44,0x02,0x8a,0x47,0x03,0x88,0x44,0x0a,0x5b,0x8a,0x87,0xbc,0x04, 0xa2,0xa1,0x0c,0x26,0x8a,0x4d,0x03,0xb8,0x80,0x00,0xd3,0xe0,0x89, 0x04,0xeb,0x02,0xeb,0x36,0x8b,0x44,0x0d,0xf7,0x26,0xa4,0x0c,0x09, 0xd2,0x75,0xf3,0x83,0x7c,0x0f,0x02,0x72,0x04,0xd1,0xe0,0x72,0xe9, 0x89,0x44,0x08,0xb4,0x15,0x8a,0x16,0x3b,0x0a,0xcd,0x13,0x88,0xe3, 0xb8,0x60,0x00,0x72,0x08,0x80,0xfb,0x02,0x75,0x03,0x0d,0x02,0x00, 0xa3,0xa2,0x0c,0xfe,0x06,0x82,0x0c,0x5f,0x5e,0x07,0xc3,0x51,0x88, 0xc5,0xc4,0x3e,0x66,0x05,0x26,0x8a,0x45,0x04,0xe8,0x22,0x00,0x01, 0xc7,0x26,0x3a,0x6d,0x01,0x74,0x18,0x26,0x8a,0x45,0x03,0xa8,0x04, 0x75,0x0a,0x26,0x8a,0x05,0xe8,0x0c,0x00,0x01,0xc7,0xeb,0xe8,0x31, 0xc0,0x8e,0xc0,0x89,0xc7,0x59,0xc3,0x51,0x88,0xc4,0xb1,0x04,0xd2, 0xec,0x25,0x0f,0x0f,0x00,0xe0,0x30,0xe4,0xd1,0xe0,0xd1,0xe0,0x59, 0xc3,0x56,0xfc,0xac,0x08,0xc0,0x74,0x0c,0x53,0xb4,0x0e,0xb3,0x07, 0x30,0xff,0xcd,0x10,0x5b,0xeb,0xef,0x5e,0xc3,0x0d,0x0a,0x44,0x4f, 0x53,0x20,0x4e,0x65,0x74,0x20,0x42,0x6f,0x6f,0x74,0x20,0x49,0x6d, 0x61,0x67,0x65,0x20,0x4c,0x6f,0x61,0x64,0x65,0x72,0x20,0x56,0x65, 0x72,0x73,0x69,0x6f,0x6e,0x20,0x30,0x2e,0x39,0x20,0x28,0x6e,0x65, 0x74,0x62,0x6f,0x6f,0x74,0x29,0x0d,0x0a,0x43,0x6f,0x70,0x79,0x72, 0x69,0x67,0x68,0x74,0x20,0x28,0x43,0x29,0x20,0x31,0x39,0x39,0x35, 0x2d,0x31,0x39,0x39,0x38,0x20,0x47,0x2e,0x20,0x4b,0x75,0x68,0x6c, 0x6d,0x61,0x6e,0x6e,0x0d,0x0a,0x0d,0x0a,0x00,0x36,0x13,0x03,0x1b, 0x47,0x4b,0x2d,0x6d,0x6b,0x6e,0x62,0x69,0x2d,0x44,0x4f,0x53,0x00, 0x63,0x82,0x53,0x63,0x43,0x4d,0x55,0x00,0x53,0x54,0x41,0x4e,0x00, 0x70,0x02,0x02,0xfd,0xe0,0x07,0x01,0xf9,0x70,0x03,0x02,0xf9,0xe0, 0x09,0x01,0xf0,0x00,0x01,0x02,0x07,0x45,0x72,0x72,0x6f,0x72,0x20, 0x69,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x20,0x72,0x65,0x63,0x6f,0x72, 0x64,0x20,0x64,0x61,0x74,0x61,0x0d,0x0a,0x00,0x49,0x6e,0x76,0x61, 0x6c,0x69,0x64,0x20,0x62,0x6f,0x6f,0x74,0x20,0x68,0x65,0x61,0x64, 0x65,0x72,0x20,0x6d,0x61,0x67,0x69,0x63,0x20,0x6e,0x75,0x6d,0x62, 0x65,0x72,0x0d,0x0a,0x00,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20, 0x76,0x65,0x6e,0x64,0x6f,0x72,0x20,0x6d,0x61,0x67,0x69,0x63,0x20, 0x49,0x44,0x0d,0x0a,0x00,0x45,0x72,0x72,0x6f,0x72,0x20,0x77,0x68, 0x69,0x6c,0x65,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x69,0x6e,0x67, 0x20,0x72,0x61,0x6d,0x64,0x69,0x73,0x6b,0x0d,0x0a,0x00,0x57,0x72, 0x6f,0x6e,0x67,0x20,0x72,0x61,0x6d,0x64,0x69,0x73,0x6b,0x20,0x69, 0x6d,0x61,0x67,0x65,0x0d,0x0a,0x00,0x42,0x4f,0x4f,0x54,0x50,0x20, 0x72,0x65,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69, 0x64,0x0d,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0xeb,0x04,0x90,0x52,0x50,0x4c,0x3d,0x06,0x4a, 0x75,0x11,0x51,0xba,0x80,0x05,0xb1,0x04,0xd3,0xea,0x59,0x50,0x0e, 0x58,0x01,0xc2,0x4a,0x58,0xcf,0x2e,0xff,0x2e,0x20,0x0a,0x80,0xfc, 0x9c,0x75,0x44,0x3c,0x01,0x75,0x10,0x2e,0x8b,0x1e,0x30,0x0a,0x2e, 0x8b,0x16,0x2e,0x0a,0x2e,0x8b,0x0e,0x32,0x0a,0xcf,0x3c,0x02,0x75, 0x0b,0x8c,0xcb,0xba,0xe5,0x0c,0x2e,0x8b,0x0e,0xe3,0x0c,0xcf,0x3c, 0x03,0x75,0x0f,0x8c,0xcb,0xba,0x1c,0x0a,0x2e,0x8a,0x0e,0x3b,0x0a, 0x2e,0xa1,0x40,0x0a,0xcf,0x3c,0x04,0x75,0x04,0xe8,0x35,0x03,0xcf, 0x08,0xc0,0x75,0x02,0x86,0xe0,0xcf,0xfb,0x50,0x2e,0xa1,0x42,0x0a, 0x2e,0x0b,0x06,0x44,0x0a,0x75,0x1f,0xb8,0x00,0x43,0xcd,0x2f,0x3c, 0x80,0x75,0x16,0x53,0x06,0xb8,0x10,0x43,0xcd,0x2f,0x2e,0x89,0x1e, 0x42,0x0a,0x2e,0x8c,0x06,0x44,0x0a,0x07,0xe8,0x4d,0x02,0x5b,0x58, 0x2e,0x3a,0x16,0x3b,0x0a,0x74,0x39,0x2e,0x80,0x3e,0x3b,0x0a,0x80, 0x73,0x4a,0x80,0xfa,0x80,0x72,0x13,0x2e,0xf6,0x06,0x3c,0x0a,0xff, 0x74,0x1f,0x80,0xfc,0x08,0xb4,0x80,0x75,0x24,0x30,0xd2,0xeb,0x10, 0x80,0xfc,0x08,0x75,0x0f,0x9c,0x2e,0xff,0x1e,0x1c,0x0a,0x2e,0x8a, 0x16,0x3a,0x0a,0x30,0xe4,0xeb,0x0d,0x2e,0xff,0x2e,0x1c,0x0a,0x80, 0xfc,0x18,0x76,0x06,0xb4,0x01,0xf9,0x1e,0xeb,0x4a,0x1e,0x0e,0x1f, 0x53,0x88,0xe3,0x30,0xff,0xd1,0xe3,0xff,0xa7,0xc4,0x06,0x80,0xfa, 0x80,0x72,0xdd,0x80,0xfc,0x08,0x75,0x0f,0xfe,0xca,0x9c,0x2e,0xff, 0x1e,0x1c,0x0a,0x2e,0x8a,0x16,0x3a,0x0a,0xeb,0xc5,0x52,0xfe,0xca, 0x80,0xfc,0x15,0x75,0x12,0x9c,0x2e,0xff,0x1e,0x1c,0x0a,0x72,0x10, 0x80,0xfc,0x03,0x75,0x0b,0x83,0xc4,0x02,0xeb,0xbc,0x9c,0x2e,0xff, 0x1e,0x1c,0x0a,0x5a,0xeb,0xb3,0x06,0x53,0xe8,0xa6,0x01,0x26,0x88, 0x27,0x5b,0x07,0x1f,0x50,0x9c,0x58,0x55,0x89,0xe5,0x88,0x46,0x08, 0x5d,0x58,0xcf,0xf8,0x06,0x10,0x07,0x1c,0x07,0x1c,0x07,0x7f,0x07, 0x7f,0x07,0x7f,0x07,0x7f,0x07,0x68,0x07,0x7f,0x07,0x84,0x07,0x84, 0x07,0x8a,0x07,0x7f,0x07,0x84,0x07,0x84,0x07,0x7f,0x07,0x7f,0x07, 0x7f,0x07,0x7f,0x07,0x7f,0x07,0x9a,0x07,0x7f,0x07,0x84,0x07,0x84, 0x07,0xeb,0xb5,0xf7,0x06,0x3d,0x0a,0x01,0x00,0x74,0x0b,0x52,0x30, 0xd2,0x9c,0xff,0x1e,0x1c,0x0a,0x5a,0x72,0x02,0x30,0xe4,0x5b,0xeb, 0xe6,0x06,0xe8,0x44,0x01,0x26,0x8a,0x27,0x07,0x5b,0xf8,0xeb,0x9b, 0x5b,0x52,0x50,0xe8,0x8b,0x00,0x58,0x73,0x06,0xb4,0x04,0x5a,0xf9, 0xeb,0xcb,0x51,0x53,0x50,0x88,0xc1,0x30,0xed,0xe3,0x2c,0x3b,0x16, 0x36,0x0a,0x72,0x09,0x58,0xb4,0x04,0x28,0xc8,0x5b,0x59,0xeb,0xe4, 0x58,0x50,0x30,0xc0,0x80,0xfc,0x02,0x74,0x02,0xfe,0xc0,0xe8,0xa0, 0x00,0x73,0x05,0x58,0xb4,0x20,0xeb,0xe5,0x42,0x49,0x81,0xc3,0x00, 0x02,0xeb,0xd2,0x58,0x5b,0x59,0x5a,0x30,0xe4,0xeb,0x8e,0x5b,0x8a, 0x16,0x3a,0x0a,0x8a,0x0e,0x38,0x0a,0x8a,0x2e,0x34,0x0a,0xb6,0x01, 0x31,0xdb,0x31,0xc0,0xfe,0xcd,0xeb,0xe7,0x5b,0x30,0xe4,0xeb,0xe2, 0x5b,0xb4,0x01,0xf9,0xeb,0xdc,0x5b,0x52,0x50,0xe8,0x1d,0x00,0x58, 0xb4,0x00,0x73,0x02,0xb4,0x04,0x5a,0xeb,0xcc,0x5b,0xb4,0x02,0x80, 0xfa,0x80,0x72,0x08,0xfe,0xc4,0x8b,0x16,0x36,0x0a,0x31,0xc9,0xf8, 0xeb,0xb9,0x51,0x80,0xfe,0x02,0x73,0x3b,0x88,0xf2,0x30,0xf6,0x88, 0xe8,0x88,0xcd,0x88,0xcc,0xb1,0x06,0xd2,0xec,0xd1,0xe0,0x01,0xd0, 0x8a,0x16,0x38,0x0a,0x30,0xf6,0xf7,0xe2,0x09,0xd2,0x75,0x1d,0x88, 0xea,0x80,0xe2,0x3f,0x3a,0x16,0x38,0x0a,0x77,0x12,0x30,0xf6,0x4a, 0x78,0x0d,0x01,0xc2,0x72,0x09,0x3b,0x16,0x36,0x0a,0x73,0x03,0xf8, 0xeb,0x01,0xf9,0x59,0xc3,0x51,0x52,0x88,0xc5,0x8c,0xc2,0x89,0xd0, 0xb1,0x0c,0xd3,0xe8,0xb1,0x04,0xd3,0xe2,0x01,0xda,0x15,0x00,0x00, 0x08,0xed,0x74,0x09,0x89,0x16,0x60,0x0c,0xa2,0x62,0x0c,0xeb,0x07, 0x89,0x16,0x68,0x0c,0xa2,0x6a,0x0c,0x5a,0x52,0x89,0xd0,0xb1,0x09, 0xd3,0xe2,0xb1,0x07,0xd3,0xe8,0x03,0x16,0x2e,0x0a,0x13,0x06,0x30, 0x0a,0x08,0xed,0x74,0x09,0x89,0x16,0x68,0x0c,0xa2,0x6a,0x0c,0xeb, 0x07,0x89,0x16,0x60,0x0c,0xa2,0x62,0x0c,0x06,0x56,0x8c,0xc8,0x8e, 0xc0,0xbe,0x4e,0x0c,0xb9,0x00,0x01,0xb8,0x00,0x87,0xcd,0x15,0x5e, 0x07,0x5a,0x59,0xc3,0xbb,0x40,0x00,0x8e,0xc3,0x2e,0x8b,0x1e,0x2c, 0x0a,0xc3,0xe8,0x7b,0x00,0x30,0xe4,0xe8,0x5b,0x00,0x80,0xfc,0x02, 0x72,0x30,0xb4,0x08,0x30,0xdb,0xe8,0x4f,0x00,0x08,0xdb,0x75,0x25, 0x8b,0x1e,0x32,0x0a,0x83,0xc3,0x41,0x39,0xc3,0x77,0x1a,0x53,0x89, 0xc2,0xb4,0x09,0xe8,0x38,0x00,0x5b,0x09,0xc0,0x74,0x0d,0x89,0x16, 0x40,0x0a,0xb4,0x0f,0xe8,0x2a,0x00,0x09,0xc0,0x75,0x08,0xc7,0x06, 0x40,0x0a,0x00,0x00,0xeb,0x1a,0x8b,0x16,0x40,0x0a,0xb4,0x0c,0xe8, 0x15,0x00,0x81,0xc3,0xff,0x03,0x83,0xd2,0x01,0x2b,0x1e,0x2e,0x0a, 0x1b,0x16,0x30,0x0a,0x72,0xde,0xe8,0x3d,0x00,0xc3,0x50,0x55,0x50, 0x89,0xe5,0x8b,0x46,0x06,0x89,0x46,0x04,0x8c,0x4e,0x06,0x58,0x5d, 0x2e,0xff,0x36,0x44,0x0a,0x2e,0xff,0x36,0x42,0x0a,0xcb,0xfa,0x5b, 0x89,0xe0,0x2e,0xa3,0x46,0x0a,0x2e,0x8c,0x16,0x48,0x0a,0x8c,0xc8, 0x8e,0xd0,0xbc,0x48,0x0c,0xfb,0x51,0x52,0x56,0x57,0x06,0x1e,0x8c, 0xc8,0x8e,0xd8,0xff,0xe3,0x5b,0x1f,0x07,0x5f,0x5e,0x5a,0x59,0xfa, 0x2e,0xa1,0x46,0x0a,0x2e,0x8e,0x16,0x48,0x0a,0x89,0xc4,0xfb,0xff, 0xe3,0x53,0xe8,0xc5,0xff,0xa0,0x3b,0x0a,0x3c,0x80,0x72,0x07,0xe8, 0xdc,0xff,0x5b,0xb0,0x01,0xc3,0x1e,0xb8,0x03,0x08,0xcd,0x2f,0x8c, 0xd8,0x8e,0xc0,0x1f,0x26,0x8a,0x45,0x04,0x3a,0x06,0x3b,0x0a,0x74, 0x0b,0x81,0xff,0xff,0xff,0x74,0xde,0x26,0xc4,0x3d,0xeb,0xeb,0x89, 0x3e,0x7e,0x0c,0x8c,0x06,0x80,0x0c,0x26,0x8b,0x45,0x20,0x09,0xc0, 0x75,0xc9,0x31,0xc0,0x8e,0xc0,0x8c,0xc8,0x26,0x3b,0x06,0xe2,0x03, 0x75,0xbc,0x26,0xa1,0xe0,0x03,0x3d,0xa1,0x05,0x75,0xb3,0xbe,0x4a, 0x0c,0xbf,0xc4,0x03,0xb9,0x04,0x00,0xf3,0xa6,0x75,0xa6,0x1e,0xc4, 0x1e,0x1c,0x0a,0x89,0xda,0x8c,0xc0,0x8e,0xd8,0xb4,0x13,0xcd,0x2f, 0x8c,0xd8,0x8c,0xc9,0x39,0xc8,0x75,0x12,0x8c,0xc0,0x39,0xc8,0x75, 0x0c,0x81,0xfb,0xeb,0x05,0x75,0x06,0x81,0xfa,0xeb,0x05,0x74,0x08, 0xb4,0x13,0xcd,0x2f,0x1f,0xe9,0x75,0xff,0x1f,0xfa,0x31,0xc0,0x8e, 0xc0,0xa1,0x28,0x0a,0x26,0xa3,0xe0,0x03,0xa1,0x2a,0x0a,0x26,0xa3, 0xe2,0x03,0xfb,0xc4,0x3e,0x7e,0x0c,0x26,0x83,0x4d,0x1f,0x50,0xf6, 0x06,0x82,0x0c,0xff,0x74,0x0c,0xfc,0xb9,0x60,0x00,0xbe,0x83,0x0c, 0x83,0xc7,0x04,0xf3,0xa4,0x8b,0x16,0x40,0x0a,0x09,0xd2,0x74,0x10, 0x52,0xb4,0x0d,0xe8,0xd9,0xfe,0x5a,0x09,0xc0,0x74,0x05,0xb4,0x0a, 0xe8,0xcf,0xfe,0xba,0x80,0x05,0xb1,0x04,0xd3,0xea,0x8c,0xc8,0x01, 0xc2,0x83,0xea,0x02,0x8e,0xc2,0xbf,0x01,0x00,0x31,0xc0,0xab,0x83, 0xc7,0x05,0xb9,0x04,0x00,0xf3,0xab,0xe8,0xea,0xfe,0x5b,0x30,0xc0, 0xc3,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50, 0x00,0x60,0x09,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x4e,0x65,0x74,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x93, 0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x93,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0x01,0x00,0x02, 0x40,0x00,0x68,0x01,0x00,0x02,0x00,0x09,0x00,0x01,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x60,0x00,0x50, 0x00,0x00,0x02,0x01,0x01,0x00,0x02,0xe0,0x00,0x60,0x09,0xf9,0x07, 0x00,0x0f,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x4e,0x4f, 0x20,0x4e,0x41,0x4d,0x45,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00, 0x00,0x46,0x41,0x54,0x31,0x32,0x20,0x20,0x20,0x00,0x00,0x00,0}; unsigned int first_data_size = sizeof(first_data) - 1; -- The hottest places in Hell are reserved for those who, in times of moral crisis, preserved their neutrality. - Dante -- Gero Kuhlmann, Hannover 0511/6497525 (Voice) gero@gkminix.han.de =========================================================================== This Mail was sent to netboot mailing list by: Gero Kuhlmann <gero@gkminix.han.de> To get help about this list, send a mail with 'help' as the only string in it's body to majordomo@baghira.han.de. If you have problems with this list, send a mail to netboot-owner@baghira.han.de.
For requests or suggestions regarding this mailing list archive please write to netboot@gkminix.han.de.