#
a9596d15 |
| 05-Aug-2021 |
kre <kre@NetBSD.org> |
Expunge bogus (implementation defined / unspecified) uses of $@ in scripts. $@ is unspecified except when used in a place where field splitting can occur (which is never in an assignment), X=$@ (wi
Expunge bogus (implementation defined / unspecified) uses of $@ in scripts. $@ is unspecified except when used in a place where field splitting can occur (which is never in an assignment), X=$@ (with or without double quotes) is simply wrong.
Use $* instead of $@ in such places, or as here, simply change the way things are done (very very slightly) and DTRT.
show more ...
|
#
481b9e73 |
| 15-Feb-2015 |
jmcneill <jmcneill@NetBSD.org> |
At startup, instead of doing run-hooks for each device, call run-hooks once with a list of all found devices. This lets us batch calls to MAKEDEV which results in a noticeable improvement in Raspberr
At startup, instead of doing run-hooks for each device, call run-hooks once with a list of all found devices. This lets us batch calls to MAKEDEV which results in a noticeable improvement in Raspberry Pi boot time.
Run the initial device enumeration hooks before detaching from the foreground, ensuring that any required devices have been created before the rc.d script exits.
show more ...
|
#
f385d8f5 |
| 29-Aug-2011 |
mrg <mrg@NetBSD.org> |
add the device publish daemon, written by jmcneill@.
listens on drvctl for new devices and invokes MAKEDEV for them.
missing: - manual page - rc.d script - more testing
but it works well eno
add the device publish daemon, written by jmcneill@.
listens on drvctl for new devices and invokes MAKEDEV for them.
missing: - manual page - rc.d script - more testing
but it works well enough to make new disk nodes appear in /dev when netbsd sees them and they're missing. you will need to make sure you have a new /dev/MAKEDEV for this to work properly (postinstall should handle this normally, of course.)
thanks jared!
show more ...
|