diff options
| author | pooka <pooka@NetBSD.org> | 2009-09-11 19:01:08 +0000 |
|---|---|---|
| committer | pooka <pooka@NetBSD.org> | 2009-09-11 19:01:08 +0000 |
| commit | 4aaa6d0b91b50b384b1dc9ae015e0b561127b7ea (patch) | |
| tree | fa72a4258ba751896f300a44171b45320752b6a9 /sys/rump/dev/lib/libdisk | |
| parent | 003e844b7347054e0f3bc678079bac6f0532451f (diff) | |
librumpdev_disk doesn't compile on a lot of platforms, so replace
it with a dummy for now until I can work out the problems (nothing
in-tree links against it yet).
Diffstat (limited to 'sys/rump/dev/lib/libdisk')
| -rw-r--r-- | sys/rump/dev/lib/libdisk/Makefile | 8 | ||||
| -rw-r--r-- | sys/rump/dev/lib/libdisk/dummy.c | 1 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sys/rump/dev/lib/libdisk/Makefile b/sys/rump/dev/lib/libdisk/Makefile index 12b13e81648..e40c0b776dc 100644 --- a/sys/rump/dev/lib/libdisk/Makefile +++ b/sys/rump/dev/lib/libdisk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2009/09/07 20:50:35 pooka Exp $ +# $NetBSD: Makefile,v 1.3 2009/09/11 19:01:08 pooka Exp $ # .PATH: ${.CURDIR}/../../../../kern \ @@ -7,10 +7,12 @@ LIB= rumpdev_disk # sys/kern -SRCS= kern_physio.c subr_disk.c subr_disk_mbr.c subr_disk_open.c +#SRCS= kern_physio.c subr_disk.c subr_disk_mbr.c subr_disk_open.c # sys/dev -SRCS+= dksubr.c dk.c +#SRCS+= dksubr.c dk.c + +SRCS+= dummy.c CFLAGS+= -Wno-pointer-sign diff --git a/sys/rump/dev/lib/libdisk/dummy.c b/sys/rump/dev/lib/libdisk/dummy.c new file mode 100644 index 00000000000..649bd33a2a4 --- /dev/null +++ b/sys/rump/dev/lib/libdisk/dummy.c @@ -0,0 +1 @@ +int kludge; |
