Module Name: src Committed By: pooka Date: Sat Oct 10 21:10:04 UTC 2009
Modified Files: src/sys/rump/librump/rumpdev: rump_dev.c Log Message: add some stubs required by raidframe linkage To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/rump/librump/rumpdev/rump_dev.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/rumpdev/rump_dev.c diff -u src/sys/rump/librump/rumpdev/rump_dev.c:1.7 src/sys/rump/librump/rumpdev/rump_dev.c:1.8 --- src/sys/rump/librump/rumpdev/rump_dev.c:1.7 Fri Oct 2 11:01:53 2009 +++ src/sys/rump/librump/rumpdev/rump_dev.c Sat Oct 10 21:10:04 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: rump_dev.c,v 1.7 2009/10/02 11:01:53 pooka Exp $ */ +/* $NetBSD: rump_dev.c,v 1.8 2009/10/10 21:10:04 pooka Exp $ */ /* * Copyright (c) 2009 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rump_dev.c,v 1.7 2009/10/02 11:01:53 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rump_dev.c,v 1.8 2009/10/10 21:10:04 pooka Exp $"); #include <sys/param.h> #include <sys/device.h> @@ -43,6 +43,8 @@ __weak_alias(rump_device_configuration,nocomponent); +const char *rootspec = "rump0a"; /* usually comes from config */ + void rump_dev_init(void) { @@ -71,6 +73,13 @@ KERNEL_UNLOCK_LAST(curlwp); } +void +cpu_rootconf(void) +{ + + panic("%s: unimplemented", __func__); +} + #ifdef __HAVE_DEVICE_REGISTER void device_register(struct device *dev, void *v)