mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-06 12:40:13 -04:00
17 lines
245 B
Bash
Executable File
17 lines
245 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: 01-makedev,v 1.2 2015/02/15 15:56:30 jmcneill Exp $
|
|
#
|
|
# Try to create a device node if it doesn't exist
|
|
#
|
|
|
|
event="$1"
|
|
shift
|
|
devices=$@
|
|
|
|
case $event in
|
|
device-attach)
|
|
cd /dev && sh MAKEDEV -u $devices 2>/dev/null
|
|
;;
|
|
esac
|