diff options
| author | Michael Brown | 2011-03-07 01:37:50 +0100 |
|---|---|---|
| committer | Michael Brown | 2011-03-07 01:37:50 +0100 |
| commit | 34b6ecb2f1d7940a0065cbabd6f9dcd439b4c841 (patch) | |
| tree | ea583bf6fde26b2ed12ee3c6b117055e555555d9 /src/arch/i386/interface/syslinux | |
| parent | [spi] Reset device on each access (diff) | |
| download | ipxe-34b6ecb2f1d7940a0065cbabd6f9dcd439b4c841.tar.gz ipxe-34b6ecb2f1d7940a0065cbabd6f9dcd439b4c841.tar.xz ipxe-34b6ecb2f1d7940a0065cbabd6f9dcd439b4c841.zip | |
[image] Simplify image management
Refactor the {load,exec} image operations as {probe,exec}. This makes
the probe mechanism cleaner, eliminates some forward declarations,
avoids holding magic state in image->priv, eliminates the possibility
of screwing up between the "load" and "exec" stages, and makes the
documentation simpler since the concept of "loading" (as distinct from
"executing") no longer needs to be explained.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch/i386/interface/syslinux')
| -rw-r--r-- | src/arch/i386/interface/syslinux/comboot_call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/i386/interface/syslinux/comboot_call.c b/src/arch/i386/interface/syslinux/comboot_call.c index 950832702..1dbc830fd 100644 --- a/src/arch/i386/interface/syslinux/comboot_call.c +++ b/src/arch/i386/interface/syslinux/comboot_call.c @@ -217,7 +217,7 @@ static int comboot_fetch_kernel ( char *kernel_file, char *cmdline ) { goto out; } if ( ( rc = imgfetch ( kernel, kernel_file, - register_image ) ) != 0 ) { + register_and_select_image ) ) != 0 ) { DBG ( "COMBOOT: could not fetch kernel: %s\n", strerror ( rc ) ); goto out; |
