etherboot-developers Mailing List for Etherboot (Page 226)
Brought to you by:
marty_connor,
stefanhajnoczi
You can subscribe to this list here.
| 2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
(10) |
Sep
(3) |
Oct
(10) |
Nov
(47) |
Dec
(20) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
(41) |
Feb
(107) |
Mar
(76) |
Apr
(103) |
May
(66) |
Jun
(72) |
Jul
(27) |
Aug
(31) |
Sep
(33) |
Oct
(18) |
Nov
(33) |
Dec
(67) |
| 2002 |
Jan
(25) |
Feb
(62) |
Mar
(79) |
Apr
(74) |
May
(67) |
Jun
(104) |
Jul
(155) |
Aug
(234) |
Sep
(87) |
Oct
(93) |
Nov
(54) |
Dec
(114) |
| 2003 |
Jan
(146) |
Feb
(104) |
Mar
(117) |
Apr
(189) |
May
(96) |
Jun
(40) |
Jul
(133) |
Aug
(136) |
Sep
(113) |
Oct
(142) |
Nov
(99) |
Dec
(185) |
| 2004 |
Jan
(233) |
Feb
(151) |
Mar
(109) |
Apr
(96) |
May
(200) |
Jun
(175) |
Jul
(162) |
Aug
(118) |
Sep
(107) |
Oct
(77) |
Nov
(121) |
Dec
(114) |
| 2005 |
Jan
(201) |
Feb
(271) |
Mar
(113) |
Apr
(119) |
May
(69) |
Jun
(46) |
Jul
(21) |
Aug
(37) |
Sep
(13) |
Oct
(4) |
Nov
(19) |
Dec
(46) |
| 2006 |
Jan
(10) |
Feb
(18) |
Mar
(85) |
Apr
(2) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(10) |
Jul
(20) |
Aug
(9) |
Sep
(11) |
Oct
(4) |
Nov
(1) |
Dec
(40) |
| 2008 |
Jan
(19) |
Feb
(8) |
Mar
(37) |
Apr
(28) |
May
(38) |
Jun
(63) |
Jul
(31) |
Aug
(22) |
Sep
(37) |
Oct
(38) |
Nov
(49) |
Dec
(24) |
| 2009 |
Jan
(48) |
Feb
(51) |
Mar
(80) |
Apr
(55) |
May
(34) |
Jun
(57) |
Jul
(20) |
Aug
(83) |
Sep
(17) |
Oct
(81) |
Nov
(53) |
Dec
(40) |
| 2010 |
Jan
(55) |
Feb
(28) |
Mar
(36) |
Apr
(7) |
May
|
Jun
|
Jul
(7) |
Aug
|
Sep
|
Oct
(1) |
Nov
(3) |
Dec
|
| 2011 |
Jan
(1) |
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(6) |
Oct
|
Nov
(10) |
Dec
|
| 2012 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Miles N. <ca...@Iv...> - 2002-11-07 23:08:10
|
You may already be aware of this, but I needed the following four-line
patch to make the development version 5.1.2 posted on Sourceforge work
with my mknbi-1.2 mknbi-dos image.
-----8<-----
diff -urN etherboot-5.1.2-orig/src/nic.c etherboot-5.1.2/src/nic.c
--- etherboot-5.1.2-orig/src/nic.c Sat Nov 2 04:18:28 2002
+++ etherboot-5.1.2/src/nic.c Wed Nov 6 09:29:34 2002
@@ -587,8 +587,10 @@
if ((rc = fnc(tr->u.data.download,
++bcounter, len, len < packetsize)) <= 0)
return(rc);
- if (len < packetsize) /* End of data */
+ if (len < packetsize) { /* End of data --- fnc should not have returned */
+ printf("tftp download complete, but\n");
return (1);
+ }
}
return (0);
}
diff -urN etherboot-5.1.2-orig/src/osloader.c etherboot-5.1.2/src/osloader.c
--- etherboot-5.1.2-orig/src/osloader.c Tue Nov 5 20:35:26 2002
+++ etherboot-5.1.2/src/osloader.c Wed Nov 6 09:28:08 2002
@@ -535,7 +535,7 @@
} else
return 0;
}
- do {
+ for (;;) {
if (len == 0) /* Detect truncated files */
eof = 0;
while (tctx.seglen == 0) {
@@ -584,13 +584,15 @@
/* Avoid lock-up */
if ( sh.length == 0 ) longjmp(restart_etherboot, -2);
}
+ if ((len <= 0) && !eof)
+ break;
i = (tctx.seglen > len) ? len : tctx.seglen;
memcpy(phys_to_virt(curaddr), data, i);
tctx.seglen -= i;
curaddr += i;
len -= i;
data += i;
- } while ((len > 0) || eof);
+ }
return 0;
}
#endif
-----8<-----
Thanks for your work on Etherboot. It's much, much less crappy than I
remember it being five years ago. Take care.
--
Le fascisme est la dictature ouverte de la bourgeoisie.
-- Georg Dimitrov
|
|
From: deng z. <dz...@ho...> - 2002-11-06 13:27:46
|
Who can give me a adevice for how to build a NOVELL RPL BOOTROM with Etherboot? Thanks very much! _________________________________________________________________ 免费下载 MSN Explorer: http://explorer.msn.com/lccn/ |
|
From: <ke...@us...> - 2002-11-06 11:56:26
|
>gcc -DPCBIOS -DCONFIG_PCI -DCONFIG_ISA -DBACKOFF_LIMIT=7 -DCONGESTED -DTAGGED >_IMAGE -DELF_IMAGE -DDOWNLOAD_PROTO_NFS -Os -ffreestanding -fstrength-reduce >-fomit-frame-pointer -mcpu=i386 -malign-jumps=1 -malign-loops=1 -malign-funct >ions=1 -Wall -W -Wno-format -DVERSION_MAJOR=5 -DVERSION_MINOR=1 -DVERSION=\"5 >.1.2\" -DRELOC=0x20000 -o bin32/nfs.o -c nfs.c >nfs.c: In function `await_rpc': >nfs.c:67: `udphdr' undeclared (first use in this function) >nfs.c:67: (Each undeclared identifier is reported only once >nfs.c:67: for each function it appears in.) >nfs.c:73: parse error before `return' >nfs.c:58: warning: unused parameter `ptype' >make: *** [bin32/nfs.o] Error 1 This has been fixed in the CVS, but Eric you'll find another error in main.c in loadkernel() when -DDOWNLOAD_PROTO_NFS is defined. |
|
From: Gabor Z. P. <gz...@pa...> - 2002-11-06 11:47:18
|
Linux 2.4.20-rc1 libc-2.2.5.so gcc 2.95.4 GNU ld version 2.13.90.0.10 20021010 gcc -DPCBIOS -DCONFIG_PCI -DCONFIG_ISA -DBACKOFF_LIMIT=7 -DCONGESTED -DTAGGED_IMAGE -DELF_IMAGE -DDOWNLOAD_PROTO_NFS -Os -ffreestanding -fstrength-reduce -fomit-frame-pointer -mcpu=i386 -malign-jumps=1 -malign-loops=1 -malign-functions=1 -Wall -W -Wno-format -DVERSION_MAJOR=5 -DVERSION_MINOR=1 -DVERSION=\"5.1.2\" -DRELOC=0x20000 -o bin32/nfs.o -c nfs.c nfs.c: In function `await_rpc': nfs.c:67: `udphdr' undeclared (first use in this function) nfs.c:67: (Each undeclared identifier is reported only once nfs.c:67: for each function it appears in.) nfs.c:73: parse error before `return' nfs.c:58: warning: unused parameter `ptype' make: *** [bin32/nfs.o] Error 1 |
|
From: <ke...@us...> - 2002-11-06 04:34:20
|
I have released Etherboot 5.1.2 at http://sourceforge.net/projects/etherboot MD5sum: bea588bdc8803ace8f4d907202b051e5 etherboot-5.1.2.tar.bz2 sha1sum: cea51663c4373b351ec821d89754ae5717c5d61d etherboot-5.1.2.tar.bz2 Yet to do: Announce in etherboot-users list, add link to download page, announce on Freshmeat. I'll be busy for the next 3 days or so. This gives you some time to prepare the rom-o-matic site, Marty. :-) |
|
From: <ke...@us...> - 2002-11-04 01:35:47
|
>It looks as though the changes to the rom-o-matic code won't be too >hard. Mostly new parameters. NIC hasn't changed format, so that won't >be a problem. The ide and floppy entries at the bottom of NIC look >interesting; I'll have to see what magic is going on there. One thing that absolutely must be done is to put a readme just before download explaining that existing images must be rebuilt with mknbi-1.2-10 or later (or to use the latest LTSP images, which I believe are recent enough), otherwise we'll get this flood of why doesn't it work with this image I've had since 1972? :-) |
|
From: Marty C. <md...@et...> - 2002-11-04 01:22:02
|
On Sunday, November 3, 2002, at 05:36 PM, Ken Yap wrote:
> Eric do you think it's ready for a 5.1.2 release? If so I'll start
> working on the config for rom-o-matic, I know Marty's busy.
Feel free to work on that if you like. I'm actually a little less busy
than I was, and can help. If you'd like to take the opportunity to
play with PHP, by all means go ahead. I guess I should download the
release and take a peek...
Alright, I just downloaded rc8 and did:
diff -u ~/etherboot-5.1.2rc8/src/Config ~/etherboot-5.0.7/src/Config
and
diff -u ~/etherboot-5.1.2rc8/src/NIC ~/etherboot-5.0.7/src/NIC
Nice work Eric. I hope to be of some help with drivers soon.
It looks as though the changes to the rom-o-matic code won't be too
hard. Mostly new parameters. NIC hasn't changed format, so that won't
be a problem. The ide and floppy entries at the bottom of NIC look
interesting; I'll have to see what magic is going on there.
It's nice to be able to sit on a cold Sunday evening in Cambridge and
look at some nice code for a change. Maybe I can help with driver
conversion for multicast support.
Anyway, great work, folks. What sorts of things could you use some
help on?
Marty
--
Try: http://rom-o-matic.net/ to make Etherboot images instantly.
Name: Marty Connor
US Mail: Entity Cyber, Inc.; P.O. Box 391827;
Cambridge, MA 02139; USA
Voice: (617) 491-6935; Fax: (617) 491-7046
Email: md...@et...
Web: http://www.etherboot.org/
|
|
From: <ke...@us...> - 2002-11-03 23:56:02
|
>> Eric do you think it's ready for a 5.1.2 release? If so I'll start >> working on the config for rom-o-matic, I know Marty's busy. > >I think so, if the FreeBSD compile fixes are in. I haven't put those in yet. I'll do that in the next few days. >At this point if there are problems with relocation, or with >multicast we can fairly certainly say that it is the driver. > >It is definitely time to stabalizing what we have or we >may never get to 5.2.x. > >And what we need now are bug reports. And without >at least a development release I doubt we will get them. Ok let's make this the last RC then. |
|
From: <ebi...@ln...> - 2002-11-03 23:51:42
|
ke...@us... (Ken Yap) writes: > >Hmm. I am totally mystified. I fixed this a while ago, and > >in some confusion it must have regressed. > > > >Anyway I just checked in the compile fix. again? > > Thanks, that worked this time. > > I've put etherboot 5.1.2rc8 at: > > www.etherboot.org/etherboot-5.1.2rc8.tar.bz2 > > Eric do you think it's ready for a 5.1.2 release? If so I'll start > working on the config for rom-o-matic, I know Marty's busy. I think so, if the FreeBSD compile fixes are in. At this point if there are problems with relocation, or with multicast we can fairly certainly say that it is the driver. It is definitely time to stabalizing what we have or we may never get to 5.2.x. And what we need now are bug reports. And without at least a development release I doubt we will get them. Eric |
|
From: <ke...@us...> - 2002-11-03 22:37:06
|
>Hmm. I am totally mystified. I fixed this a while ago, and >in some confusion it must have regressed. > >Anyway I just checked in the compile fix. again? Thanks, that worked this time. I've put etherboot 5.1.2rc8 at: www.etherboot.org/etherboot-5.1.2rc8.tar.bz2 Eric do you think it's ready for a 5.1.2 release? If so I'll start working on the config for rom-o-matic, I know Marty's busy. |
|
From: <ebi...@ln...> - 2002-11-03 15:27:14
|
ke...@us... writes: > Eric, > > I've checked out your changes and I want to release rc8, but fa311.c > doesn't compile: Hmm. I am totally mystified. I fixed this a while ago, and in some confusion it must have regressed. Anyway I just checked in the compile fix. again? Eric |
|
From: <ke...@us...> - 2002-11-02 09:37:20
|
Eric, I've checked out your changes and I want to release rc8, but fa311.c doesn't compile: fa311.c: In function `fa311_probe': fa311.c:141: `p' undeclared (first use in this function) fa311.c:141: (Each undeclared identifier is reported only once fa311.c:141: for each function it appears in.) fa311.c:144: warning: assignment makes integer from pointer without a cast fa311.c:134: warning: unused variable `pci_bus' fa311.c:131: warning: unused variable `ioaddr' fa311.c: In function `fa311_reset': fa311.c:218: warning: unused parameter `nic' fa311.c: In function `fa311_disable': fa311.c:336: warning: passing arg 1 of `iounmap' makes pointer from integer without a cast fa311.c: At top level: fa311.c:444: warning: missing initializer fa311.c:444: warning: (near initialization for `fa311_driver.class') make: *** [bin32/fa311.o] Error 1 Are there some changes you haven't checked in? |
|
From: <ebi...@ln...> - 2002-10-30 11:19:14
|
hc...@et... writes: > Strange.. > > I tried to put kernel.elf on the first partition but it failed. > I organized my 1G hdd as follows. > > Disk /dev/hda: 16 heads, 63 sectors, 2100 cylinders > Units = cylinders of 1008 * 512 bytes > > Device Boot Start End Blocks Id System > /dev/hda1 1 3 1480+ 83 Linux > /dev/hda2 4 2100 1056888 83 Linux > > In the hda1 I placed kernel.elf with dd if=kernel.elf of=/dev/hda1 and > placed rootfs on hda2 > But It fails to find elf image. > What did I wrong? > I make kernel.elf with mkelfImage version 1.16. Try that in units of sectors. If you are not careful some versions of fdisk will cylinder align your partitions, and will start your first partition at 63 sectors. Which is a little to far on the disk. You should be able to force it though using units of sectors. Eric |
|
From: <hc...@et...> - 2002-10-30 09:10:58
|
Strange..
I tried to put kernel.elf on the first partition but it failed.
I organized my 1G hdd as follows.
Disk /dev/hda: 16 heads, 63 sectors, 2100 cylinders
Units = cylinders of 1008 * 512 bytes
Device Boot Start End Blocks Id System
/dev/hda1 1 3 1480+ 83 Linux
/dev/hda2 4 2100 1056888 83 Linux
In the hda1 I placed kernel.elf with dd if=kernel.elf of=/dev/hda1 and
placed rootfs on hda2
But It fails to find elf image.
What did I wrong?
I make kernel.elf with mkelfImage version 1.16.
----------
LinuxBIOS-1.0.0 수굅월낡떵뎠볕喀껐갛疊蛭彧嶸減璋彧剃程薪鴨공껐같蘖滯彭같껐같蚓敍疊蛭彭같객같蚓敍澐彭같답少宋柔彩彭輦悚듈醇連奄彭輦떪粹靷穡程捷全輒공같같綏嘯
adjusted_boot_notes = 0x0fdb9d54
HEECHUL:esp = 0x11968
ROM segment 0x0000 length 0x0000 reloc 0x00020000
Etherboot 5.1.2rc7 (GPL) Tagged ELF for [EEPRO100][IDE]
CPU 2052 Mhz
Boot from (N)etwork (D)isk (F)loppy or from (L)ocal? D
Probing pci disk...
[IDE]disk-1 1058400k cap: 0f00
Searching for image...
................................<abort>
Probing pci disk...
[IDE]
Probing isa disk...
-
HeeChul Yun,
Embedded S/W Team at ETRI
e-mail: hc...@et...
phone: +82-42-860-1673
> > Now I can boot from IDE. but I have a question.
> > It seems that current etherboot ide support doesn't support
> partition or
> > filesystem.
> > So now I just installed kernel image without creating any partition
> > (dd kernel.elf of=/dev/hda), but it is too wasteful. Is
> there any way to
> > place both kernel
> > and root filesystem on the same ide disk?
>
> As long as the ELF header is within the first 8K of the disk it will
> work. So just make certain your first partition starts at sector 1,
> and is big enough to hold your boot elf image, and you can use
> the disk for multiple things.
>
> Eric
>
|
|
From: <ebi...@ln...> - 2002-10-30 08:08:11
|
hc...@et... writes:
> I recently check out etherboot from the cvs to do boot from ide.
> At the first try, It could't found ide controller with saying "No adaptor
> found"
> After tracking down the codes I found the reason in scan_bus() function in
> pci.c
Interesting bug. The fix looks sane. Committed.
> The problem was that it skips to probe my ide controller.
> My board is organized as follows.
> 00:02.3 <-- UBS controller
> 00:02.4 <-- empty
> 00:02.5 <-- IDE controller
>
> When scan_bus probes all devfn, after reading PCI_VENDOR_ID from empty
> 00:02.4 it set hdr_type=0. therefore it skip to probe rest of functions
> including 00:02.5.
>
> To avoid this situation I modified the code as follows to prevent to set
> hdr_type = 0.
> I'm not sure why original code set hdr_type = 0 when the slot return null
> vendor_id.
> But anyway I can boot from the disk by just removing this line.
>
> static void scan_bus(int type, struct pci_device *dev)
> {
> .
> .
> buses=256;
> for (bus = first_bus; bus < buses; ++bus) {
> for (devfn = first_devfn; devfn < 0xff; ++devfn) {
> if (PCI_FUNC (devfn) == 0)
> pcibios_read_config_byte(bus, devfn,
> PCI_HEADER_TYPE, &hdr_type);
> else if (!(hdr_type & 0x80)) /* not a multi-
> function device */
> continue;
>
> pcibios_read_config_dword(bus, devfn,
> PCI_VENDOR_ID, &l);
> /* some broken boards return 0 if a slot is empty:
> */
> if (l == 0xffffffff || l == 0x00000000) {
> // hdr_type = 0; // <- I removed this line.
> hcyun.
> continue;
> }
> .
> .
>
>
> Now I can boot from IDE. but I have a question.
> It seems that current etherboot ide support doesn't support partition or
> filesystem.
> So now I just installed kernel image without creating any partition
> (dd kernel.elf of=/dev/hda), but it is too wasteful. Is there any way to
> place both kernel
> and root filesystem on the same ide disk?
As long as the ELF header is within the first 8K of the disk it will
work. So just make certain your first partition starts at sector 1,
and is big enough to hold your boot elf image, and you can use
the disk for multiple things.
Eric
|
|
From: <kf1...@hk...> - 2002-10-30 01:28:08
|
Reply to: Anselm Martin Hoffmeister=20 <ans...@gm...>: > > Hi, > >=20 > > I experience problem of booting WinME DOS as its > IO.SYS=20 > > loading HIMEM.SYS automatically. This conflicts > with the=20 > > initial ramdisk installed at or above 1M in High > Memory=20 > > Area. >=20 > In former DOS versions, there was a switch to > himem.sys called /testmem:off. > IIRC, himem.sys is loaded automagically always > _after_ config.sys if it had > not been specified. I have no mileage on WinME, but > I believe on Win98 you > could simply enter > DEVICE=3DC:\windows\himem.sys /testmem:off > and it did exactly this. > This way you could avoid your RAM be "checked", > which should preserve the > ramdisk. Thank you. The /testmem:off switch does not work with WinME DOS. > =20 > > If we could install the initial ramdisk in Low > Memory Area,=20 > > may be we can withstand the automatic testing of > High=20 > > Memory Area by the HIMEM.SYS loaded up by IO.SYS. > Possible in theory. The problem I see is that > MS-DOS uses the Lowmem area > without asking, so it could load e.g. command.com > right there and you couldn't > even say "zap" before your virtual disk is nuked. > =20 I think we ought to test it out if the problem exists. It=20 depends on which part of the 640K DOS uses and which part=20 of the 640K the ramdisk is installed. > > So is it possible to install the initial ramdisk > in the=20 > > first 640K of the Low Memory Area? >=20 > If you like, read the documentation about the NBI > format, shipped along with > etherboot. Could you give a hint which file it is in? Thanks a lot indeed! Best wishes, Johnson CHEN > =20 > Anselm Martin Hoffmeister > <an...@ho...> >=20 > --=20 > +++ GMX - Mail, Messaging & more http://www.gmx.net > +++ > NEU: Mit GMX ins Internet. Rund um die Uhr f=FCr 1 ct/ > Min. surfen! >=20 >=20 ---------------------------------------------------------- This mail is sent through HKedCity http://www.hkedcity.net |
|
From: Gregg C L. <dr...@wo...> - 2002-10-30 00:47:16
|
Hello again from Gregg C Levine Any that works will be good. I am rather board agnostic at this point, so all is necessary, as that it works, with out a complaint from itself, rather then the actual vendor. Gregg C Levine dr...@wo... "Oh my!" The Second Doctor's nearly favorite phrase. ----- Original Message ----- From: "Ronald G Minnich" <rmi...@la...> To: <ja...@Mc...> Cc: "Gregg C Levine" <dr...@wo...>; "Marty Connor" <ma...@et...>; "Etherboot Users" <eth...@li...>; "Etherboot Developers" <eth...@li...> Sent: Tuesday, October 29, 2002 6:48 PM Subject: Re: [Etherboot-developers] LinuxWorld NY 2003 > On Tue, 29 Oct 2002 ja...@Mc... wrote: > > > How about an EPIA running linuxbios, etherboot and booting up LTSP ? > > That would be *really* fine, but what about graphics? Do graphics work > easily on that board? > > I could try to set that up on an M810LMR I have here? > > ron > > |
|
From: Ronald G M. <rmi...@la...> - 2002-10-29 23:48:30
|
On Tue, 29 Oct 2002 ja...@Mc... wrote: > How about an EPIA running linuxbios, etherboot and booting up LTSP ? That would be *really* fine, but what about graphics? Do graphics work easily on that board? I could try to set that up on an M810LMR I have here? ron |
|
From: <ja...@Mc...> - 2002-10-29 23:42:47
|
On Tue, 29 Oct 2002, Ronald G Minnich wrote: > I think it would be kind of cool to have a linuxbios-capable board in your > booth. I stopped by at LW 2002 in SF and the guy there (was it you Marty) > thought it was pretty fun. > > Maybe an EPIA running linuxbios and etherboot? How about an EPIA running linuxbios, etherboot and booting up LTSP ? Jim McQuillan ja...@Lt... |
|
From: Ronald G M. <rmi...@la...> - 2002-10-29 23:35:18
|
I think it would be kind of cool to have a linuxbios-capable board in your booth. I stopped by at LW 2002 in SF and the guy there (was it you Marty) thought it was pretty fun. Maybe an EPIA running linuxbios and etherboot? ro |
|
From: Gregg C L. <dr...@wo...> - 2002-10-29 23:21:06
|
Hello from Gregg C Levine Hmm. Since I'll be around this year, as always, I should think we should demo the usual things, and include having either the client, or server, booting from Linux BIOS. And if you want to, I'll even contribute some of my copious free time, for this years, sessions. I'm kidding about that comment, about time. I meant, "free time", for this coming year's LinuxWorld NY 2003, I will be glad to contribute some time. All you would need to do, Marty, is to show me, what to do, and I'll do it. It will save you to make EPROMS, and to answer questions. Those that you can't answer, I will, if I can. We should get the Linux BIOS folks involved in this one. Gregg C Levine dr...@wo... "Oh my!" The Second Doctor's nearly favorite phrase. ----- Original Message ----- From: "Marty Connor" <ma...@et...> To: "Etherboot Users" <eth...@li...> Cc: "Etherboot Developers" <eth...@li...> Sent: Tuesday, October 29, 2002 1:11 PM Subject: [Etherboot-developers] LinuxWorld NY 2003 > Hello Everyone, > > The Etherboot Project will be exhibiting at the LinuxWorld Conference & > Expo in New York, January 22- 24, 2003! You can check out show > information at http://www.linuxworldexpo.com/ > > This will be our 5th show in a row, and they get better every time! I > hope that lots of folks can come, and we can certainly use some help in > the booth. We will be in .ORG booth #5. > > LinuxWorld Expos are a great time to meet and greet fellow Free and Open > Software community members, and there are always interesting new products > and ideas. > > We'll be sending reminders as the time grows nearer, but we just got our > confirmation the other day, and wanted to give you an early "heads up". > Let us know if you plan to come soon (Ken.. Markus.. Eric.. Michael.. > Don... etc... ;) There's a nice big dinner for anyone who can make it. > > So, what cool things should we demo this time around? ;) > > Marty > > -- > Try: http://rom-o-matic.net/ to make Etherboot images instantly. > > Name: Marty Connor > US Mail: Entity Cyber, Inc.; P.O. Box 391827; > Cambridge, MA 02139; USA > Voice: (617) 491-6935; Fax: (617) 491-7046 > Email: ma...@et... > Web: http://www.etherboot.org/ > > > > > > |
|
From: Marty C. <ma...@et...> - 2002-10-29 18:11:32
|
Hello Everyone, The Etherboot Project will be exhibiting at the LinuxWorld Conference & Expo in New York, January 22- 24, 2003! You can check out show information at http://www.linuxworldexpo.com/ This will be our 5th show in a row, and they get better every time! I hope that lots of folks can come, and we can certainly use some help in the booth. We will be in .ORG booth #5. LinuxWorld Expos are a great time to meet and greet fellow Free and Open Software community members, and there are always interesting new products and ideas. We'll be sending reminders as the time grows nearer, but we just got our confirmation the other day, and wanted to give you an early "heads up". Let us know if you plan to come soon (Ken.. Markus.. Eric.. Michael.. Don... etc... ;) There's a nice big dinner for anyone who can make it. So, what cool things should we demo this time around? ;) Marty -- Try: http://rom-o-matic.net/ to make Etherboot images instantly. Name: Marty Connor US Mail: Entity Cyber, Inc.; P.O. Box 391827; Cambridge, MA 02139; USA Voice: (617) 491-6935; Fax: (617) 491-7046 Email: ma...@et... Web: http://www.etherboot.org/ |
|
From: Anselm M. H. <ans...@gm...> - 2002-10-29 09:44:28
|
> Hi, > > I experience problem of booting WinME DOS as its IO.SYS > loading HIMEM.SYS automatically. This conflicts with the > initial ramdisk installed at or above 1M in High Memory > Area. In former DOS versions, there was a switch to himem.sys called /testmem:off. IIRC, himem.sys is loaded automagically always _after_ config.sys if it had not been specified. I have no mileage on WinME, but I believe on Win98 you could simply enter DEVICE=C:\windows\himem.sys /testmem:off and it did exactly this. This way you could avoid your RAM be "checked", which should preserve the ramdisk. > If we could install the initial ramdisk in Low Memory Area, > may be we can withstand the automatic testing of High > Memory Area by the HIMEM.SYS loaded up by IO.SYS. Possible in theory. The problem I see is that MS-DOS uses the Lowmem area without asking, so it could load e.g. command.com right there and you couldn't even say "zap" before your virtual disk is nuked. > So is it possible to install the initial ramdisk in the > first 640K of the Low Memory Area? If you like, read the documentation about the NBI format, shipped along with etherboot. Anselm Martin Hoffmeister <an...@ho...> -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ NEU: Mit GMX ins Internet. Rund um die Uhr für 1 ct/ Min. surfen! |
|
From: <kf1...@hk...> - 2002-10-29 02:13:20
|
Hi, I experience problem of booting WinME DOS as its IO.SYS loading HIMEM.SYS automatically. This conflicts with the initial ramdisk installed at or above 1M in High Memory Area. I need to run dos programs in WinME DOS and I can put all my programs and WinME DOS on a 360K floppy. If we could install the initial ramdisk in Low Memory Area, may be we can withstand the automatic testing of High Memory Area by the HIMEM.SYS loaded up by IO.SYS. So is it possible to install the initial ramdisk in the first 640K of the Low Memory Area? Thanks for anybody's enlightenment. Best regards, Johnson CHEN ---------------------------------------------------------- This mail is sent through HKedCity http://www.hkedcity.net |
|
From: Ronald G M. <rmi...@la...> - 2002-10-28 20:40:20
|
On 28 Oct 2002, Eric W. Biederman wrote: > Oh, duh. The difference is: > make bin32/ide_disk.elf Sorry! Should have tried that :-( thanks ron |