diff options
Diffstat (limited to 'release')
-rw-r--r-- | release/picobsd/qemu/PICOBSD | 9 | ||||
-rw-r--r-- | release/picobsd/qemu/crunch.conf | 9 |
2 files changed, 15 insertions, 3 deletions
diff --git a/release/picobsd/qemu/PICOBSD b/release/picobsd/qemu/PICOBSD index 837e902d7977..2b4cdabec3c8 100644 --- a/release/picobsd/qemu/PICOBSD +++ b/release/picobsd/qemu/PICOBSD @@ -19,10 +19,12 @@ cpu I586_CPU cpu I686_CPU ident PICOBSD -#options SMP -#device apic +# SMP seems to be needed for kern_et +options SMP +device apic -options SCHED_4BSD # mandatory to have one scheduler +options SCHED_ULE # mandatory to have one scheduler +options PREEMPTION # needed for decent interrupt processing #options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking #options INET6 @@ -115,6 +117,7 @@ device md # Memory "disks" #device faith 1 # IPv6-to-IPv4 relaying (translation) device tap +#options VIMAGE # soner or later we may want to test this #options DEVICE_POLLING # The `bpf' device enables the Berkeley Packet Filter. diff --git a/release/picobsd/qemu/crunch.conf b/release/picobsd/qemu/crunch.conf index d6566ae70563..340ddb12de55 100644 --- a/release/picobsd/qemu/crunch.conf +++ b/release/picobsd/qemu/crunch.conf @@ -133,6 +133,7 @@ libs_so -lalias # natd progs tcpdump special tcpdump srcdir /usr/src/usr.sbin/tcpdump/tcpdump libs_so -lpcap # used by tcpdump +libs_so -lcrypto # used by tcpdump with inet6 # ppp is rather large. Note that as of Jan.01, RELEASE_CRUNCH # makes ppp not use libalias, so you cannot have aliasing. @@ -158,6 +159,9 @@ progs sed progs date progs time progs ping +progs ping6 +progs tar + #progs routed progs ipfw progs traceroute @@ -174,6 +178,8 @@ ln mount_cd9660 cd9660 # ln mount_msdosfs msdos # For a small ssh client/server use dropbear +progs jail jexec jls # why not... + # Now the libraries libs_so -lc # the C library @@ -189,3 +195,6 @@ libs_so -lz libs_so -lbsdxml libs_so -lsbuf libs_so -ljail # used by ifconfig +libs_so -lipsec -lmd # used with ipv6 +libs_so -larchive -lbz2 +libs_so -llzma # added after 207840 |