GENERIC changes
Izumi Tsutsui <[email protected]> Sat, 5 Jul 2014 19:48:22 +0900
| Newsgroups | gmane.os.netbsd.ports.x68k |
|---|---|
| Message-ID | <[email protected]> |
Hi, I'd like to commit the following changes against GENERIC for usability etc. - enable NULLFS I'm using it for various machines to handle NFS directories etc. - disable UMAPFS, accf_data, accf_http I guess there are few users who really need these.. - enable MODULAR For users who really want more file-systems or pseudo-devices without re-config kernels Comments? --- Index: GENERIC =================================================================== RCS file: /cvsroot/src/sys/arch/x68k/conf/GENERIC,v retrieving revision 1.173 diff -u -p -d -r1.173 GENERIC --- GENERIC 5 Jul 2014 09:18:47 -0000 1.173 +++ GENERIC 5 Jul 2014 10:39:37 -0000 @@ -80,7 +80,7 @@ options SYSVSEM # System V semaphores options SYSVSHM # System V shared memory ## Loadable kernel module support -#options MODULAR # new style module(7) framework +options MODULAR # new style module(7) framework options USERCONF # userconf(4) support #options PIPE_SOCKETPAIR # smaller, but slower pipe(2) @@ -175,11 +175,11 @@ options COMPAT_BSDPTY # /dev/[pt]ty?? p file-system FFS # Berkeley Fast Filesystem file-system NFS # Sun NFS-compatible filesystem client file-system KERNFS # kernel data-structure filesystem -#file-system NULLFS # NULL layered filesystem +file-system NULLFS # NULL layered filesystem #file-system OVERLAY # overlay file system file-system MFS # memory-based filesystem #file-system FDESC # user file descriptor filesystem -file-system UMAPFS # uid/gid remapping filesystem +#file-system UMAPFS # uid/gid remapping filesystem #file-system LFS # Log-structured filesystem (experimental) file-system PROCFS # /proc file-system CD9660 # ISO 9660 + Rock Ridge file system @@ -428,8 +428,8 @@ bmd* at intio0 addr 0xecebf0 # Nereid # # accept filters -pseudo-device accf_data # "dataready" accept filter -pseudo-device accf_http # "httpready" accept filter +#pseudo-device accf_data # "dataready" accept filter +#pseudo-device accf_http # "httpready" accept filter ## A disk-like interface to files. Can be used to create floppy, CD, ## miniroot images, etc. --- Izumi Tsutsui