]> git.ozlabs.org Git - petitboot/blobdiff - devices.c
Make kboot_parser global options array static
[petitboot] / devices.c
index 4936f9ab2adfc515c61ff30a990dcc7cdcfea369..37798105d58d87528b252833955df332324de04c 100644 (file)
--- a/devices.c
+++ b/devices.c
@@ -13,7 +13,7 @@
 #include "petitboot-paths.h"
 #include "devices/message.h"
 
-#define PBOOT_DEFAULT_ICON     "usbpen.png"
+#define PBOOT_DEFAULT_ICON     "tux.png"
 
 static const char *default_icon = artwork_pathname(PBOOT_DEFAULT_ICON);
 
@@ -282,9 +282,9 @@ void pboot_exec_option(void *data)
 {
        struct boot_option *opt = data;
        char *kexec_opts[10];
-       int nr_opts = 2;
+       int i, nr_opts = 2;
 
-       kexec_opts[0] = "/sbin/kexec";
+       kexec_opts[0] = "/usr/sbin/kexec";
        kexec_opts[1] = "-f";
        if (opt->initrd_file) {
                kexec_opts[nr_opts] = malloc(10 + strlen(opt->initrd_file));
@@ -300,5 +300,14 @@ void pboot_exec_option(void *data)
 
        kexec_opts[nr_opts++] = opt->boot_image_file;
        kexec_opts[nr_opts] = NULL;
+
+       LOG("calling kexec:\n");
+       for (i = 0; i < nr_opts; i++) {
+               LOG("\t'%s'\n", kexec_opts[i]);
+       }
+       fflush(stdout);
+
        execv(kexec_opts[0], kexec_opts);
+
+       LOG("kexec failed: %s", strerror(errno));
 }