in message 3DA3D18E.4000109@onelabs.com you wrote:
LinuxBIOS was designed to use Linux to boot the OS of choice.
So was PPCBoot, but without excluding the resto of the world.
It uses some assembly to do some basic init and config and then jumps to Linux to fully configure the rest of the system, after that LinuxBIOS jumps to whatever OS kernel is wanted.
So your boot sequence is LinuxBIOS => Linux => LinuxBIOS => Target OS?
Seems a bit overkill to me. Especially in systems where (flash) memory is tight it might be a PITA to have to reserve space for a Linux kernel just to initialize the hardware.
LinuxBIOS has booted; Linux, Plan9 and Win-CE. There is currently an effort to boot BSD and also another to boot Win32 (probably XP). Architectures include x86 and Alpha. IA64 is also in the works.
The current version of PPCBoot boots Linux, VxWorks, QNX, and NetBSD.
It comes with out-of-the-box configurations for 98 x PowerPC boards (MPC8xx, MPC824x, MPC8260, MPX7xx, MPC74xx, IBM 4xx), 3 x StrongARM boards, 2 x ARM7 and 3 x ARM9 systems. This includes a couple of commercial products like boards by esd, Gespac, Microsys, TQ, but also desktop systems like the AmigaOne or real-life products (from ISDN routers, Bluetooth LAN Access Points to bigger things like huge mobile cranes).
Ports for ColdFire and XScale are in the works. x86 is being discussed.
For simple systems PPCboot looks like a great way to go. LinuxBIOS would add support and config for more complex systems that include PCI, PCI Express, Infiniband and Hypertransport.
It seems you do not know much about PPCBoot.
PPCBoot supports a LOT of devices, of course including PCI. But also plain flash, DOC, flash disk, Compact Flash, harddisk, CDROM, SCSI devices, even some USB.
PPCBoot provides a very powerful method to store configuration parameters and command sequences. In most systems you do not need tools like ifconfig, route, etc. because PPCBoot can pass all required information to the Linux kernel's IP autoconfig mechanism. The environment is protected, and can be stored redundand so it is a very reliable mechanism.
PPCBoot also provides powerful scripting capabilties; busybox' "hush" shell has been integrated, so you can write standard shell scripts or run conditional command sequences using "if...then...else...fi", "for...do...done", "while...do...done", "until...do...done", or using shortcuts like "cmd1 && cmd2" or "cmd1 || cmd2".
A lot of complicated things like reliable software upgrade procedures with guaranteed fall-back to the old, working version can be implemented in PPCBoot with just a few lines of script.
PPCBoot also provides many additional features that are less frequently required, but very handy when you need them, for example dial-in support (so you can attach a modem to the serial console for remote administration), password protection, extensive POST code, etc. etc.
* Bari Ari bari@onelabs.com [021009 16:03]:
in message 3DA3D18E.4000109@onelabs.com you wrote:
LinuxBIOS was designed to use Linux to boot the OS of choice.
So was PPCBoot, but without excluding the resto of the world.
Neither does LinuxBIOS.. It can load plan9 and winCE afaik.
It uses some assembly to do some basic init and config and then jumps to Linux to fully configure the rest of the system, after that LinuxBIOS jumps to whatever OS kernel is wanted.
So your boot sequence is LinuxBIOS => Linux => LinuxBIOS => Target OS?
Seems a bit overkill to me. Especially in systems where (flash) memory is tight it might be a PITA to have to reserve space for a Linux kernel just to initialize the hardware.
It's LinuxBIOS => EtherBoot => TargetOS. Linux itself is basically not needed.
For simple systems PPCboot looks like a great way to go. LinuxBIOS would add support and config for more complex systems that include PCI, PCI Express, Infiniband and Hypertransport.
Is there any hypertransport setup code yet? One might assume that some major three letter hardware vendor would not want that code to become public?
Best regards, Stefan Reinauer
On Wed, 9 Oct 2002, Bari Ari wrote:
LinuxBIOS was designed to use Linux to boot the OS of choice.
So was PPCBoot, but without excluding the resto of the world.
this is not the forum for PPCBoot vs. LinuxBIOS arguments. I Just Don't Care. I am sure PPCBoot is wonderful software!
So your boot sequence is LinuxBIOS => Linux => LinuxBIOS => Target OS?
no. The boot sequence is: - LinuxBIOS -> Linux -> OS (i.e. on Pink) - LinuxBIOS -> 9load -> Plan 9 - LinuxBIOS -> Etherboot built in to linuxbios -> OS of choice - LinuxBios -> Etherboot (external ) -> OS of choice
In other words, we have lots of boot sequences depending on the target system and OS.
The issue of *BSD is not that we can't boot it. We can. The issue is that *BSD wants to make BIOS calls we don't support.
Seems a bit overkill to me. Especially in systems where (flash) memory is tight it might be a PITA to have to reserve space for a Linux kernel just to initialize the hardware.
We Have Our Reasons. And, we don't always load linux in flash.
The current version of PPCBoot boots Linux, VxWorks, QNX, and NetBSD.
terrific! I'm happy for you. But this is not a competition.
It seems you do not know much about PPCBoot.
funny, as it seem syou don't know much about linuxbios. So we all need to read more :-)
PPCBoot also provides powerful scripting capabilties; busybox' "hush" shell has been integrated, so you can write standard shell scripts or run conditional command sequences using "if...then...else...fi", "for...do...done", "while...do...done", "until...do...done", or using shortcuts like "cmd1 && cmd2" or "cmd1 || cmd2".
I really don't much like firmware that starts taking on the attributes of an OS, but to each his own. If you're going to put an OS in firmware, just make it an OS, not a pseudo-OS. But that's just my opinion.
anyway, I am sure PPCBoot is wonderful, and we should be sharing code, not getting out our rulers to see whose BIOS is bigger.
ron