Displaying 1 result from an estimated 1 matches for "fs_import".
Did you mean:
js_import
2008 Jun 06
0
[PATCH] stubdom: permit compilation without lwip
...3:04:07 2008 +0100
+++ b/extras/mini-os/main.c Fri Jun 06 11:28:09 2008 +0100
@@ -45,7 +44,9 @@
sparse((unsigned long) &__app_bss_start, &__app_bss_end - &__app_bss_start);
+#ifdef HAVE_LWIP
start_networking();
+#endif
init_fs_frontend();
#ifdef CONFIG_QEMU
if (!fs_import) {
@@ -162,6 +163,9 @@
close_all_files();
__libc_fini_array();
printk("main returned %d\n", ret);
+#ifdef HAVE_LWIP
+ stop_networking();
+#endif
unbind_all_ports();
if (!ret) {
/* No problem, just shutdown. */
_______________________________________________...