mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 16:23:25 -05:00
16 lines
297 B
Bash
Executable file
16 lines
297 B
Bash
Executable file
#!/bin/sh
|
|
|
|
sed -e '/pty/d' \
|
|
-e '/pass0/d' \
|
|
-e '/apm0/d' \
|
|
-e '/ppp/d' \
|
|
-e '/gzip/d' \
|
|
-e '/splash/d' \
|
|
-e '/PROCFS/d' \
|
|
-e '/KTRACE/d' \
|
|
-e '/SYSVMSG/d' \
|
|
-e 's/GENERIC/BOOTMFS/g'
|
|
|
|
echo "options NFS_NOSERVER"
|
|
echo "options SCSI_NO_OP_STRINGS"
|
|
echo "options SCSI_NO_SENSE_STRINGS"
|