Check-in [35e11e77a2]
Logged in as anonymous
Overview
Comment:silence up microcode a little
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 35e11e77a2cae2da74f7bdc1f1bf2a69616aecfa59021290bb5cb42b66e345bf
User & Date: arcade on 2019-10-25 13:44:51.961
Other Links: manifest | tags
Context
2019-10-25
18:58
force failure on error check-in: af90e819b1 user: arcade tags: trunk
13:44
silence up microcode a little check-in: 35e11e77a2 user: arcade tags: trunk
10:49
80 columns, error handling, microcode check-in: 8f8bbe5cbb user: arcade tags: trunk
Changes
Modified init.mk from [dd8ca89fae] to [d4088447d2].
141
142
143
144
145
146
147
148
149

150
151
152
153
154
155
156
	ldconfig -elf ${ldc}

microcode: mountlate
.if exists(/usr/local/share/cpucontrol)
	echo "MRC:$@> Updating." ;\
	kldload -n cpuctl || exit 1 ;\
	for cpu in $$(jot "$$(sysctl -n hw.ncpu)" 0); do \
	  cpucontrol -u -d /usr/local/share/cpucontrol /dev/cpuctl$${cpu} || \
	    exit 1 ;\

	  cpucontrol -e /dev/cpuctl$${cpu} || exit 1 ;\
	done
.endif

mixers=${:!find /dev -name 'mixer*'!:S/\/dev\///}

mixer: mount cleanvar







|
|
>







141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
	ldconfig -elf ${ldc}

microcode: mountlate
.if exists(/usr/local/share/cpucontrol)
	echo "MRC:$@> Updating." ;\
	kldload -n cpuctl || exit 1 ;\
	for cpu in $$(jot "$$(sysctl -n hw.ncpu)" 0); do \
	  ( cpucontrol -u -d /usr/local/share/cpucontrol /dev/cpuctl$${cpu} \
	      || exit 1 \
	  ) | grep -v '^TEST' ;\
	  cpucontrol -e /dev/cpuctl$${cpu} || exit 1 ;\
	done
.endif

mixers=${:!find /dev -name 'mixer*'!:S/\/dev\///}

mixer: mount cleanvar