Check-in [625f7382df]
Logged in as anonymous
Overview
Comment:Load kernel modules one by one (so all possible would be loaded)
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 625f7382df2c4d6ed0e6fb74903159d16bac4c09918b625b447beb52efd8b892
User & Date: arcade on 2023-08-13 07:15:46.790
Other Links: manifest | tags
Context
2023-08-18
13:37
add defaults, add CWD check-in: be5654b61b user: arcade tags: trunk
2023-08-13
07:15
Load kernel modules one by one (so all possible would be loaded) check-in: 625f7382df user: arcade tags: trunk
07:12
Fix second run, now init is executred once check-in: 97ff336c8d user: arcade tags: trunk
Changes
Modified init.mk from [850c3a593a] to [9ab476e53e].
108
109
110
111
112
113
114
115
116



117
118
119
120
121
122
123

hostname:
	echo "MRC:$@> Setting to ${HOSTNAME}."
	hostname ${HOSTNAME}

kld: bootfs
.if defined(KLD_LIST)
	echo "MRC:$@> Loading kernel modules: ${KLD_LIST}" ;\
	kldload -n ${KLD_LIST}



.endif

# ldconfig
.for path in ${LDCONFIG_PATHS} /etc/ld-elf.so.conf
.if exists(${path})
ldc+=${path}
.endif







|
|
>
>
>







108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126

hostname:
	echo "MRC:$@> Setting to ${HOSTNAME}."
	hostname ${HOSTNAME}

kld: bootfs
.if defined(KLD_LIST)
	echo "MRC:$@> Loading kernel modules: ${KLD_LIST}"
.	for KLD in ${KLD_LIST}
	kldload -n ${KLD} || echo "MRC:$@> Failed to load module: ${KLD}"
.	endfor
	true
.endif

# ldconfig
.for path in ${LDCONFIG_PATHS} /etc/ld-elf.so.conf
.if exists(${path})
ldc+=${path}
.endif