History log of /netbsd-src/etc/etc.x68k/MAKEDEV.conf (Results 1 – 16 of 16)
Revision Date Author Comments
# ebec9034 23-Sep-2018 maxv <maxv@NetBSD.org>

Remove ISDN from the kernel. It has remained unmaintained for a long time,
is of poor quality, and is now an obstacle to MP-ification. It was removed
ten years ago from FreeBSD for the same reason.

Remove ISDN from the kernel. It has remained unmaintained for a long time,
is of poor quality, and is now an obstacle to MP-ification. It was removed
ten years ago from FreeBSD for the same reason.

This retires a big user of the mbuf API, and will ease maintenance of the
kernel.

show more ...


# 03783bb5 08-Dec-2016 nat <nat@NetBSD.org>

Add a synthesized pc beeper and keyboard bell for platforms with an audio
device.


# 7e916bb8 16-Aug-2012 abs <abs@NetBSD.org>

Add 'bpf' to all ramdisk targets (*), or floppy targets if ramdisk calls that.
Sort bpf to come directly after 'std' where relevant.
* (apart from etc.evbppc who's ramdisk target *only* builds md0,

Add 'bpf' to all ramdisk targets (*), or floppy targets if ramdisk calls that.
Sort bpf to come directly after 'std' where relevant.
* (apart from etc.evbppc who's ramdisk target *only* builds md0,
which just doesn't make sense).
Should allow a fighting chance for dhcpcd to get an IP address.

show more ...


# 058310c6 29-Apr-2012 tsutsui <tsutsui@NetBSD.org>

Create ttyC0 and ttyC1 for PSX16550 com ports.


# 43fa5f92 21-Jan-2012 isaki <isaki@NetBSD.org>

Clean up pow(4) (which I had removed in Nov 2011).


# f6bedb7e 11-Oct-2011 tsutsui <tsutsui@NetBSD.org>

Create sysmon(4) devices. Noticed by Y.Sugahara.


# f11ca724 06-Sep-2011 apb <apb@NetBSD.org>

Change foo*) case patterns to foo[0-9]*) in MD MAKEDEV.conf files,
as was done earlier today for the MI MAKEDEV.tmpl. There are
also a few instances of slightly different changes in the
case pattern

Change foo*) case patterns to foo[0-9]*) in MD MAKEDEV.conf files,
as was done earlier today for the MI MAKEDEV.tmpl. There are
also a few instances of slightly different changes in the
case patterns.

show more ...


# cf598012 20-Dec-2008 isaki <isaki@NetBSD.org>

x68k pow(4) now uses MI sysmon_pswitch framework. suggested by tsutsui@.
- Make MD poffd(8) retire, and use MI powerd(8) instead of it.
- Make /dev/pow1 retire, because nobody holds /dev/pow0 any lo

x68k pow(4) now uses MI sysmon_pswitch framework. suggested by tsutsui@.
- Make MD poffd(8) retire, and use MI powerd(8) instead of it.
- Make /dev/pow1 retire, because nobody holds /dev/pow0 any longer.
Use /dev/pow0 for pow(4) ioctl.
- POWIOCSSIGNAL ioctl which is for poffd(8) is also obsoleted.

show more ...


# 6a5bb116 15-Jan-2007 hubertf <hubertf@NetBSD.org>

Fix MAKEDEV on shark: Move ses(4) devices from MI code (MAKEDEV.tmpl) to
those platforms that actually have the driver.

See also:
http://mail-index.netbsd.org/tech-userlevel/2007/01/08/0001.html

Fi

Fix MAKEDEV on shark: Move ses(4) devices from MI code (MAKEDEV.tmpl) to
those platforms that actually have the driver.

See also:
http://mail-index.netbsd.org/tech-userlevel/2007/01/08/0001.html

Fixes PR 26511 properly.

OK'd by wrstuden@

show more ...


# d9cff0a9 10-Jan-2004 minoura <minoura@NetBSD.org>

/dev/grf? on x68k must not be accessed without the root priviledge.


# fcdfdbba 21-Dec-2003 lukem <lukem@NetBSD.org>

Rework MAKEDEV:

* Use "mknod -F netbsd -r" to create nodes, instead of
"rm ; mknod; chmod; chown".
This means permissions & ownership of existing nodes will
not be changed.
This is up to 30%

Rework MAKEDEV:

* Use "mknod -F netbsd -r" to create nodes, instead of
"rm ; mknod; chmod; chown".
This means permissions & ownership of existing nodes will
not be changed.
This is up to 30% faster when populating an empty /dev,
and nearly 2x faster when re-running on an existing /dev.

* New options:
-f force change of permission & ownership of existing
devices
-m mknod override name/path of mknod program
(which defaults to $TOOL_MKNOD, then "mknod").
-s generate mtree(8) specfile instead of creating devices

* Remove /usr/etc from $PATH; not needed anymore.

* Provide functions to create devices & directories:
mkdev name [b|c] major minor [mode{=600} [gid{=0} [uid{=0}]]]
create device node `name' with the appropriate permissions
lndev src target
create a symlink from src to target
makedir dir mode
create directory with appropriate mode

* UIDs and GIDs are hardcoded in at MAKEDEV generation time.
(Unfortunately there's not a simple way of determining a GID
a la "id -n user" for determining a UID).

This was tested by generating MAKEDEV for each MACHINE,MACHINE_ARCH
combination and comparing the results of "MAKEDEV all" from the
previous version to the new one.
(This testing actually highlighted mistakes in the previous configuration!)


Simplify distrib/common/Makefile.makedev to use "MAKEDEV -s"

show more ...


# 930959c6 24-Oct-2003 jdolecek <jdolecek@NetBSD.org>

fix floppy & ramdisk targets


# 1eeb241e 24-Oct-2003 jdolecek <jdolecek@NetBSD.org>

sync with reality, put back some entries mistakely omitted
in the initial conversion from MD MAKEDEV


# 520acde2 20-Oct-2003 jdolecek <jdolecek@NetBSD.org>

com0/com1 is exactly tty00/tty01, so g/c them from the list


# 7a46124e 19-Oct-2003 jdolecek <jdolecek@NetBSD.org>

determine the platform number of disk partitions by looking
at MAXPARTITIONS/OLDMAXPARTITIONS in kernel sources, so that it wouldn't
need to be specified separately in MAKEDEV.conf

change platform M

determine the platform number of disk partitions by looking
at MAXPARTITIONS/OLDMAXPARTITIONS in kernel sources, so that it wouldn't
need to be specified separately in MAKEDEV.conf

change platform MAKEDEV.conf to contain only MD targets and nothing else;
simplify the parsing in MAKEDEV.awk accordingly

show more ...


# 7126da08 15-Oct-2003 jdolecek <jdolecek@NetBSD.org>

MD part of unified MAKEDEV
this contains information about disk partitions used by platform,
and MD MAKEDEV targets, such as 'init', MD part of 'all',
as well as any other MD-specific targets not cov

MD part of unified MAKEDEV
this contains information about disk partitions used by platform,
and MD MAKEDEV targets, such as 'init', MD part of 'all',
as well as any other MD-specific targets not covered by MAKEDEV.tmpl

show more ...