Module Name:    src
Committed By:   pooka
Date:           Fri Sep  4 17:15:21 UTC 2009

Modified Files:
        src/sys/rump/librump/rumpkern: emul.c

Log Message:
add a few global symbols required by kernel code


To generate a diff of this commit:
cvs rdiff -u -r1.91 -r1.92 src/sys/rump/librump/rumpkern/emul.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/librump/rumpkern/emul.c
diff -u src/sys/rump/librump/rumpkern/emul.c:1.91 src/sys/rump/librump/rumpkern/emul.c:1.92
--- src/sys/rump/librump/rumpkern/emul.c:1.91	Mon Jul 20 17:12:43 2009
+++ src/sys/rump/librump/rumpkern/emul.c	Fri Sep  4 17:15:21 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: emul.c,v 1.91 2009/07/20 17:12:43 pooka Exp $	*/
+/*	$NetBSD: emul.c,v 1.92 2009/09/04 17:15:21 pooka Exp $	*/
 
 /*
  * Copyright (c) 2007 Antti Kantee.  All Rights Reserved.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.91 2009/07/20 17:12:43 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.92 2009/09/04 17:15:21 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/malloc.h>
@@ -113,6 +113,10 @@
 int max_devsw_convs = 0;
 int mem_no = 2;
 
+struct device *booted_device;
+struct device *booted_wedge;
+int booted_partition;
+
 kmutex_t tty_lock;
 
 int

Reply via email to