diff --git a/config/examples/amd64_config.xml b/config/examples/amd64_config.xml
index 4130915..744609a 100644
--- a/config/examples/amd64_config.xml
+++ b/config/examples/amd64_config.xml
@@ -36,6 +36,7 @@
+
diff --git a/config/examples/cross-ppc_config.xml b/config/examples/cross-ppc_config.xml
index 9df5921..1df7305 100644
--- a/config/examples/cross-ppc_config.xml
+++ b/config/examples/cross-ppc_config.xml
@@ -41,6 +41,7 @@
+
diff --git a/config/examples/cross-sparc32_config.xml b/config/examples/cross-sparc32_config.xml
index 03f3a20..d983a66 100644
--- a/config/examples/cross-sparc32_config.xml
+++ b/config/examples/cross-sparc32_config.xml
@@ -42,6 +42,7 @@
+
diff --git a/config/examples/cross-sparc64_config.xml b/config/examples/cross-sparc64_config.xml
index acffd21..e25b5d0 100644
--- a/config/examples/cross-sparc64_config.xml
+++ b/config/examples/cross-sparc64_config.xml
@@ -42,6 +42,7 @@
+
diff --git a/config/examples/cross-x86_config.xml b/config/examples/cross-x86_config.xml
index dde4111..a77ce30 100644
--- a/config/examples/cross-x86_config.xml
+++ b/config/examples/cross-x86_config.xml
@@ -37,6 +37,7 @@
+
diff --git a/config/examples/ppc_config.xml b/config/examples/ppc_config.xml
index 9df5921..1df7305 100644
--- a/config/examples/ppc_config.xml
+++ b/config/examples/ppc_config.xml
@@ -41,6 +41,7 @@
+
diff --git a/config/examples/sparc32_config.xml b/config/examples/sparc32_config.xml
index 00fdfba..93a690a 100644
--- a/config/examples/sparc32_config.xml
+++ b/config/examples/sparc32_config.xml
@@ -42,6 +42,7 @@
+
diff --git a/config/examples/sparc64_config.xml b/config/examples/sparc64_config.xml
index daa32d2..1903cff 100644
--- a/config/examples/sparc64_config.xml
+++ b/config/examples/sparc64_config.xml
@@ -42,6 +42,7 @@
+
diff --git a/config/examples/x86_config.xml b/config/examples/x86_config.xml
index e6f79bc..15c020d 100644
--- a/config/examples/x86_config.xml
+++ b/config/examples/x86_config.xml
@@ -37,6 +37,7 @@
+
diff --git a/include/libopenbios/bootinfo_load.h b/include/libopenbios/bootinfo_load.h
new file mode 100644
index 0000000..1905a5e
--- /dev/null
+++ b/include/libopenbios/bootinfo_load.h
@@ -0,0 +1,26 @@
+/*
+ * Creation Date: <2010/03/22 18:00:00 mcayland>
+ * Time-stamp: <2010/03/22 18:00:00 mcayland>
+ *
+ *
+ *
+ * CHRP boot info loader
+ *
+ * Copyright (C) 2010 Mark Cave-Ayland (mark.cave-ayland@siriusit.co.uk)
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation
+ *
+ */
+
+#ifndef _H_BOOTINFOLOAD
+#define _H_BOOTINFOLOAD
+
+#include "libopenbios/sys_info.h"
+
+extern int is_bootinfo(char *bootinfo);
+extern int bootinfo_load(struct sys_info *info, const char *filename);
+extern void bootinfo_init_program(void);
+
+#endif /* _H_BOOTINFOLOAD */
diff --git a/libopenbios/bootinfo_load.c b/libopenbios/bootinfo_load.c
new file mode 100644
index 0000000..ed582ea
--- /dev/null
+++ b/libopenbios/bootinfo_load.c
@@ -0,0 +1,252 @@
+/*
+ *
+ *
+ *
+ * bootinfo file loader
+ *
+ * Copyright (C) 2009 Laurent Vivier (Laurent@vivier.eu)
+ *
+ * Original XML parser by Blue Swirl
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * version 2
+ *
+ */
+
+#include "config.h"
+#include "libopenbios/bindings.h"
+#include "libopenbios/bootinfo_load.h"
+#include "libopenbios/ofmem.h"
+#include "libc/vsprintf.h"
+
+//#define DEBUG_BOOTINFO
+
+#ifdef DEBUG_BOOTINFO
+#define DPRINTF(fmt, args...) \
+ do { printk("%s: " fmt, __func__ , ##args); } while (0)
+#else
+#define DPRINTF(fmt, args...) \
+ do { } while (0)
+#endif
+
+static char *
+get_device( const char *path )
+{
+ int i;
+ static char buf[1024];
+
+ for (i = 0; i < sizeof(buf) && path[i] && path[i] != ':'; i++)
+ buf[i] = path[i];
+ buf[i] = 0;
+
+ return buf;
+}
+
+static int
+get_partition( const char *path )
+{
+ while ( *path && *path != ':' )
+ path++;
+
+ if (!*path)
+ return -1;
+ path++;
+
+ if (!strchr(path, ',')) /* check if there is a ',' */
+ return -1;
+
+ return atol(path);
+}
+
+static char *
+get_filename( const char * path , char **dirname)
+{
+ static char buf[1024];
+ char *filename;
+
+ while ( *path && *path != ':' )
+ path++;
+
+ if (!*path) {
+ *dirname = NULL;
+ return NULL;
+ }
+ path++;
+
+ while ( *path && isdigit(*path) )
+ path++;
+
+ if (*path == ',')
+ path++;
+
+ strncpy(buf, path, sizeof(buf));
+ buf[sizeof(buf) - 1] = 0;
+
+ filename = strrchr(buf, '\\');
+ if (filename) {
+ *dirname = buf;
+ (*filename++) = 0;
+ } else {
+ *dirname = NULL;
+ filename = buf;
+ }
+
+ return filename;
+}
+
+int
+is_bootinfo(char *bootinfo)
+{
+ return (strncasecmp(bootinfo, "
+ Debian/GNU Linux Installation on IBM CHRP hardware
+ Debian/GNU Linux for PowerPC
+ boot &device;:\install\yaboot
+
+
+ CHRP system bindings are described at:
+ http://playground.sun.com/1275/bindings/chrp/chrp1_7a.ps
+*/
+
+void
+bootinfo_init_program(void)
+{
+ char *base;
+ int proplen;
+ phandle_t chosen;
+ int tag, taglen, script, scriptlen, entity, chrp;
+ char tagbuf[128], c;
+ char *device, *filename, *directory;
+ int partition;
+ int current, size;
+ char *bootscript;
+ char *tmp;
+ char bootpath[1024];
+
+ feval("0 state-valid !");
+
+ chosen = find_dev("/chosen");
+ tmp = get_property(chosen, "bootpath", &proplen);
+ memcpy(bootpath, tmp, proplen);
+ bootpath[proplen] = 0;
+
+ DPRINTF("bootpath %s\n", bootpath);
+
+ device = get_device(bootpath);
+ partition = get_partition(bootpath);
+ filename = get_filename(bootpath, &directory);
+
+ feval("load-base");
+ base = (char*)POP();
+
+ feval("load-size");
+ size = POP();
+
+ bootscript = malloc(size);
+ if (bootscript == NULL) {
+ DPRINTF("Can't malloc %d bytes\n", size);
+ return;
+ }
+
+ if (!is_bootinfo(base)) {
+ DPRINTF("Not a valid bootinfo memory image\n");
+ return;
+ }
+
+ chrp = 0;
+ tag = 0;
+ taglen = 0;
+ script = 0;
+ scriptlen = 0;
+ entity = 0;
+ current = 0;
+ while (current < size) {
+
+ c = base[current++];
+
+ if (c == '<') {
+ script = 0;
+ tag = 1;
+ taglen = 0;
+ } else if (c == '>') {
+ tag = 0;
+ tagbuf[taglen] = '\0';
+ if (strncasecmp(tagbuf, "chrp-boot", 9) == 0) {
+ chrp = 1;
+ } else if (chrp == 1) {
+ if (strncasecmp(tagbuf, "boot-script", 11) == 0) {
+ script = 1;
+ scriptlen = 0;
+ } else if (strncasecmp(tagbuf, "/boot-script", 12) == 0) {
+
+ script = 0;
+ bootscript[scriptlen] = '\0';
+
+ DPRINTF("got bootscript %s\n",
+ bootscript);
+
+ feval("-1 state-valid !");
+
+ break;
+ } else if (strncasecmp(tagbuf, "/chrp-boot", 10) == 0)
+ break;
+ }
+ } else if (tag && taglen < sizeof(tagbuf)) {
+ tagbuf[taglen++] = c;
+ } else if (script && c == '&') {
+ entity = 1;
+ taglen = 0;
+ } else if (entity && c ==';') {
+ entity = 0;
+ tagbuf[taglen] = '\0';
+ if (strncasecmp(tagbuf, "lt", 2) == 0) {
+ bootscript[scriptlen++] = '<';
+ } else if (strncasecmp(tagbuf, "gt", 2) == 0) {
+ bootscript[scriptlen++] = '>';
+ } else if (strncasecmp(tagbuf, "device", 6) == 0) {
+ strcpy(bootscript + scriptlen, device);
+ scriptlen += strlen(device);
+ } else if (strncasecmp(tagbuf, "partition", 9) == 0) {
+ if (partition != -1)
+ sprintf(bootscript + scriptlen, "%d", partition);
+ else
+ *(bootscript + scriptlen) = 0;
+ scriptlen = strlen(bootscript);
+ } else if (strncasecmp(tagbuf, "directory", 9) == 0) {
+ strcpy(bootscript + scriptlen, directory);
+ scriptlen += strlen(directory);
+ } else if (strncasecmp(tagbuf, "filename", 8) == 0) {
+ strcpy(bootscript + scriptlen, filename);
+ scriptlen += strlen(filename);
+ } else if (strncasecmp(tagbuf, "full-path", 9) == 0) {
+ strcpy(bootscript + scriptlen, bootpath);
+ scriptlen += strlen(bootpath);
+ } else { /* unknown, keep it */
+ bootscript[scriptlen] = '&';
+ strcpy(bootscript + scriptlen + 1, tagbuf);
+ scriptlen += taglen + 1;
+ bootscript[scriptlen] = ';';
+ scriptlen++;
+ }
+ } else if (entity && taglen < sizeof(tagbuf)) {
+ tagbuf[taglen++] = c;
+ } else if (script && scriptlen < size) {
+ bootscript[scriptlen++] = c;
+ }
+ }
+ /* FIXME: should initialize saved-program-state. */
+ push_str(bootscript);
+ feval("bootinfo-size ! bootinfo-entry !");
+}
diff --git a/libopenbios/build.xml b/libopenbios/build.xml
index f466322..6888cbe 100644
--- a/libopenbios/build.xml
+++ b/libopenbios/build.xml
@@ -3,6 +3,7 @@
+
diff --git a/packages/bootinfo-loader.c b/packages/bootinfo-loader.c
index 46a4c85..1497227 100644
--- a/packages/bootinfo-loader.c
+++ b/packages/bootinfo-loader.c
@@ -6,8 +6,6 @@
*
* Copyright (C) 2009 Laurent Vivier (Laurent@vivier.eu)
*
- * Original XML parser by Blue Swirl
- *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2
@@ -16,227 +14,13 @@
#include "config.h"
#include "libopenbios/bindings.h"
+#include "libopenbios/bootinfo_load.h"
#include "packages.h"
-#include "libopenbios/ofmem.h"
-#include "libc/vsprintf.h"
-
-//#define DEBUG_BOOTINFO
-
-#ifdef DEBUG_BOOTINFO
-#define DPRINTF(fmt, args...) \
- do { printk("%s: " fmt, __func__ , ##args); } while (0)
-#else
-#define DPRINTF(fmt, args...) \
- do { } while (0)
-#endif
DECLARE_NODE(bootinfo_loader, INSTALL_OPEN, 0, "+/packages/bootinfo-loader" );
-static char *
-get_device( const char *path )
-{
- int i;
- static char buf[1024];
-
- for (i = 0; i < sizeof(buf) && path[i] && path[i] != ':'; i++)
- buf[i] = path[i];
- buf[i] = 0;
-
- return buf;
-}
-
-static int
-get_partition( const char *path )
-{
- while ( *path && *path != ':' )
- path++;
-
- if (!*path)
- return -1;
- path++;
-
- if (!strchr(path, ',')) /* check if there is a ',' */
- return -1;
-
- return atol(path);
-}
-
-static char *
-get_filename( const char * path , char **dirname)
-{
- static char buf[1024];
- char *filename;
-
- while ( *path && *path != ':' )
- path++;
-
- if (!*path) {
- *dirname = NULL;
- return NULL;
- }
- path++;
-
- while ( *path && isdigit(*path) )
- path++;
-
- if (*path == ',')
- path++;
-
- strncpy(buf, path, sizeof(buf));
- buf[sizeof(buf) - 1] = 0;
-
- filename = strrchr(buf, '\\');
- if (filename) {
- *dirname = buf;
- (*filename++) = 0;
- } else {
- *dirname = NULL;
- filename = buf;
- }
-
- return filename;
-}
-
-/*
- Parse SGML structure like:
-
- Debian/GNU Linux Installation on IBM CHRP hardware
- Debian/GNU Linux for PowerPC
- boot &device;:\install\yaboot
-
-
- CHRP system bindings are described at:
- http://playground.sun.com/1275/bindings/chrp/chrp1_7a.ps
-*/
-
-static void
-bootinfo_loader_init_program( void *dummy )
-{
- char *base;
- int proplen;
- phandle_t chosen;
- int tag, taglen, script, scriptlen, entity, chrp;
- char tagbuf[128], c;
- char *device, *filename, *directory;
- int partition;
- int current, size;
- char *bootscript;
- char *tmp;
- char bootpath[1024];
-
- feval("0 state-valid !");
-
- chosen = find_dev("/chosen");
- tmp = get_property(chosen, "bootpath", &proplen);
- memcpy(bootpath, tmp, proplen);
- bootpath[proplen] = 0;
-
- DPRINTF("bootpath %s\n", bootpath);
-
- device = get_device(bootpath);
- partition = get_partition(bootpath);
- filename = get_filename(bootpath, &directory);
-
- feval("load-base");
- base = (char*)POP();
-
- feval("load-size");
- size = POP();
-
- bootscript = malloc(size);
- if (bootscript == NULL) {
- DPRINTF("Can't malloc %d bytes\n", size);
- return;
- }
-
- chrp = 0;
- tag = 0;
- taglen = 0;
- script = 0;
- scriptlen = 0;
- entity = 0;
- current = 0;
- while (current < size) {
-
- c = base[current++];
-
- if (c == '<') {
- script = 0;
- tag = 1;
- taglen = 0;
- } else if (c == '>') {
- tag = 0;
- tagbuf[taglen] = '\0';
- if (strncasecmp(tagbuf, "chrp-boot", 9) == 0) {
- chrp = 1;
- } else if (chrp == 1) {
- if (strncasecmp(tagbuf, "boot-script", 11) == 0) {
- script = 1;
- scriptlen = 0;
- } else if (strncasecmp(tagbuf, "/boot-script", 12) == 0) {
-
- script = 0;
- bootscript[scriptlen] = '\0';
-
- DPRINTF("got bootscript %s\n",
- bootscript);
-
- feval("-1 state-valid !");
-
- break;
- } else if (strncasecmp(tagbuf, "/chrp-boot", 10) == 0)
- break;
- }
- } else if (tag && taglen < sizeof(tagbuf)) {
- tagbuf[taglen++] = c;
- } else if (script && c == '&') {
- entity = 1;
- taglen = 0;
- } else if (entity && c ==';') {
- entity = 0;
- tagbuf[taglen] = '\0';
- if (strncasecmp(tagbuf, "lt", 2) == 0) {
- bootscript[scriptlen++] = '<';
- } else if (strncasecmp(tagbuf, "gt", 2) == 0) {
- bootscript[scriptlen++] = '>';
- } else if (strncasecmp(tagbuf, "device", 6) == 0) {
- strcpy(bootscript + scriptlen, device);
- scriptlen += strlen(device);
- } else if (strncasecmp(tagbuf, "partition", 9) == 0) {
- if (partition != -1)
- sprintf(bootscript + scriptlen, "%d", partition);
- else
- *(bootscript + scriptlen) = 0;
- scriptlen = strlen(bootscript);
- } else if (strncasecmp(tagbuf, "directory", 9) == 0) {
- strcpy(bootscript + scriptlen, directory);
- scriptlen += strlen(directory);
- } else if (strncasecmp(tagbuf, "filename", 8) == 0) {
- strcpy(bootscript + scriptlen, filename);
- scriptlen += strlen(filename);
- } else if (strncasecmp(tagbuf, "full-path", 9) == 0) {
- strcpy(bootscript + scriptlen, bootpath);
- scriptlen += strlen(bootpath);
- } else { /* unknown, keep it */
- bootscript[scriptlen] = '&';
- strcpy(bootscript + scriptlen + 1, tagbuf);
- scriptlen += taglen + 1;
- bootscript[scriptlen] = ';';
- scriptlen++;
- }
- } else if (entity && taglen < sizeof(tagbuf)) {
- tagbuf[taglen++] = c;
- } else if (script && scriptlen < size) {
- bootscript[scriptlen++] = c;
- }
- }
- /* FIXME: should initialize saved-program-state. */
- push_str(bootscript);
- feval("bootinfo-size ! bootinfo-entry !");
-}
-
NODE_METHODS( bootinfo_loader ) = {
- { "init-program", bootinfo_loader_init_program },
+ { "init-program", bootinfo_init_program },
};
void bootinfo_loader_init( void )
diff --git a/packages/build.xml b/packages/build.xml
index 98db4ed..f530575 100644
--- a/packages/build.xml
+++ b/packages/build.xml
@@ -1,7 +1,7 @@
-
+