Overview
Comment: | add bootfs, hostname, kld, wlans, config comment, network initialization |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2f11a995dc81296c307d98ca422790aa |
User & Date: | arcade on 2019-10-19 08:52:13.717 |
Other Links: | manifest | tags |
Context
2019-10-19
| ||
09:00 | add cleanvar check-in: aea391e34e user: arcade tags: trunk | |
08:52 | add bootfs, hostname, kld, wlans, config comment, network initialization check-in: 2f11a995dc user: arcade tags: trunk | |
06:53 | djkerntz and random check-in: 2b429035c5 user: arcade tags: trunk | |
Changes
Modified Makefile
from [bb021a975c]
to [d9318177ac].
|
| | | 1 2 3 4 5 6 7 8 | .include "/etc/mrc.conf" .if defined(AUTOBOOT) SCRIPTS!=ls *.init *.service .else SCRIPTS!=ls *.service .endif |
︙ | ︙ |
Added bootfs.init version [f2f97d45ef].
Added hostname.init version [99996f3f18].
Modified ifconfig.init
from [09ddedf4e9]
to [773353bac7].
1 2 | # vim:ft=make: | > > > | > > > > | 1 2 3 4 5 6 7 8 9 10 | # vim:ft=make: IFCONFIG_IFACES?=lo0 IFCONFIG_lo0?=inet 127.0.0.1/8 up ifconfig: adjkerntz wlans : Starting interfaces. .for iface in ${IFCONFIG_IFACES} ifconfig ${IFCONFIG_${iface}} .endfor |
Added kld.init version [ed8e95636b].
Modified mrc.conf
from [fa723c0ecd]
to [889a186b78].
1 | # vim:ft=make: | > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # vim:ft=make: # random # ENTROPY_FILE=/var/db/entropy/random # ENTROPY_DIR=/var/db/entropy # hostname # HOSTNAME=Amnesiac # ifconfig # IFCONFIG_IFACES=lo0 # IFCONFIG_lo0=inet 127.0.0.1/8 up # kld # KLD_LIST=### ### ### # wlans # WLANS_###=wlan# # WLANS_wlan#_ARGS=ssid FreeWifi |
Added wlans.init version [b85ed5f68c].