Eric W. Biederman wrote:

> 
>>P.S. Can we have mutiple .stream in a LinuxBIOS image ?? For example,
>>I am trying to use DoC with Kernel image on IDE disk.
>>
> 
> Right now we can compile in multiple drivers but wey only use the
> first one.   Where I envisioned this being used in a minimal
> bootloader compiled from the linuxBIOS source....
> 


Can we have something like

        struct stream *stream = .stream_start;

        while (stream != .stream_end) {
                scan_for_ELF_header;
                load_ELF_from_media;
                stream++;
        }

Ollie


Reply via email to