Make wscons device nodes, and build the WSCONS kernel.
This commit is contained in:
parent
9aa9b8ebf5
commit
39b2c33e25
|
@ -1,9 +1,10 @@
|
|||
# $NetBSD: MAKEDEV.conf,v 1.2 2003/10/19 19:07:27 jdolecek Exp $
|
||||
# $NetBSD: MAKEDEV.conf,v 1.3 2003/12/13 23:11:17 ad Exp $
|
||||
|
||||
all_md)
|
||||
makedev minimal
|
||||
makedev wscons
|
||||
makedev fb0 fb1 fb2
|
||||
makedev px0 # px1 px2
|
||||
makedev px0 stic0 stic1 stic2
|
||||
makedev mouse
|
||||
makedev audio
|
||||
makedev scsibus0 scsibus1 scsibus2 scsibus3
|
||||
|
@ -74,7 +75,14 @@ px*)
|
|||
unit=${i#px}
|
||||
rm -f px$unit
|
||||
mknod px$unit c 98 $unit
|
||||
chmod 666 px$unit
|
||||
chmod 600 px$unit
|
||||
;;
|
||||
|
||||
stic*)
|
||||
unit=${i#stic}
|
||||
rm -f stic$unit
|
||||
mknod stic$unit c 98 $unit
|
||||
chmod 600 stic$unit
|
||||
;;
|
||||
|
||||
mouse)
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# $NetBSD: Makefile.inc,v 1.12 2002/12/02 13:18:11 lukem Exp $
|
||||
# $NetBSD: Makefile.inc,v 1.13 2003/12/13 23:11:17 ad Exp $
|
||||
#
|
||||
# etc.pmax/Makefile.inc -- pmax-specific etc Makefile targets
|
||||
#
|
||||
|
||||
KERNEL_SETS= GENERIC
|
||||
KERNEL_SETS= GENERIC WSCONS
|
||||
|
||||
BUILD_KERNELS= INSTALL RAMDISK
|
||||
|
||||
|
|
Loading…
Reference in New Issue