freebsd-src/etc/rc.d/devfs
Doug Barton 7020c7759b Bring in the settings from /etc/rc.devfs, which include the vga symlink
that's being replaced here. This is what /etc/rc does now.

There is no NetBSD devfs, so there is no compatibility issue.

Not objected to by:	FreeBSD-rc@yahoogroups.com
Approved by:		re (murray)
2002-12-15 21:56:53 +00:00

21 lines
228 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: devfs
# REQUIRE: LOGIN
# KEYWORD: FreeBSD
. /etc/rc.subr
name="devfs"
load_rc_config $name
# Setup DEVFS, ie permissions, links etc.
#
if [ -r /etc/rc.devfs ]; then
sh /etc/rc.devfs
fi