apb
68723a5b5f
Remove MAKEDEV.subr. This removes the risk of third party scripts (or
...
human procedures) breaking because they assume it's enough to copy
MAKEDEV fom one place to another.
Let MAKEDEV return after defining shell functions but before doing any
real work, if MAKEDEV_AS_LIBRARY is set.
Let MAKEDEV.local load MAKEDEV as a function library via
"MAKEDEV_AS_LIBRARY=1 . MAKEDEV".
2007-03-03 06:36:00 +00:00
dsl
7bb36ad737
Use the correct major number for the temporary console node
2007-03-02 22:44:16 +00:00
dsl
5c38fc826c
Add code that can be used by init(1) to request MAKEDEV create a mfs
...
filesystem and then populate it.
Determine the actual number of inodes that will be needed and add 10%.
Use "mount_mfs -o union" to save us having to copy MADEDEV (in case
anyone wishes to see it.
2007-03-02 21:29:23 +00:00
apb
f21f1a9ef9
If we are called as 'sh MAKEDEV ...', then we would previously have
...
tried to do '. MAKEDEV.subr'. That doesn't work, we need to do
'. ./MAKEDEV.subr' in that case.
2007-03-01 20:48:26 +00:00
garbled
1d2057e71c
update mtree for man4.prep
2007-03-01 18:47:49 +00:00
apb
2b64520a8c
Avoid using dirname(1), which is not available in installation
...
ramdisk images.
2007-02-28 19:45:37 +00:00
apb
11b77839b6
s/MAKEDEV.tmpl/MAKEDEV.subr/ in a comment
2007-02-28 13:14:38 +00:00
he
5f00d6d5a0
Install pxeboot_ia32.bin as part of a "make release" on i386 and amd64.
2007-02-27 18:17:28 +00:00
garbled
cba36b0811
add nvram device
2007-02-26 23:54:48 +00:00
apb
142606111b
Provide a new MAKEDEV.subr file containing utility functions for
...
use by both MAKEDEV and MAKEDEV.local. This allows MAKEDEV.local
to accept the same command line arguments as MAKEDEV.
The installed MAKEDEV.subr is generated from MAKEDEV.subr.tmpl.
Replace the licence on MAKEDEV.local with a NetBSD licence, since I
rewrote the entire file.
Reviewed by christos and agc
2007-02-26 20:44:03 +00:00
briggs
d298894138
Install sys/dev/bluetooth/btuart.h.
...
Descend into and build/install usr.sbin/btuartd.
Install etc/rc.d/btuartd.
2007-02-20 21:29:08 +00:00
kiyohara
10abd6f2e2
Supprot Bluetooth HCI UART (H4) driver and daemon.
2007-02-20 16:53:20 +00:00
reed
cfbdfbc5a7
Remove unused references to "clean_uucp" variable. (Code was already
...
removed.)
Add rebuild_whatisdb weekly variable that defaults to NO.
This is for running makewhatis weekly.
This defaults to NO because it is not needed using just base sets/default
install which provide the whatis.db file(s).
2007-02-15 23:04:10 +00:00
tron
8704d644d4
Remove unnessary "if [ X"$foo" ... ]" hack which is not necessary if
...
you quote things properly which this script does.
2007-02-15 13:27:35 +00:00
xtraeme
da18ab0b5b
* Use checkyesno rather than using a harcoded value.
...
* If per_user_tmp is disabled and /tmp equals to ${per_user_tmp_dir}/@uid,
remove it and recreate it with proper permissions (1777).
This fixes the problem when per_user_tmp is enabled and will put /tmp
on its original state when it's disabled.
2007-02-15 08:47:38 +00:00
xtraeme
6092e365cb
Add missing quotes in readlink to compare with ${per_user_tmp_dir}/@uid,
...
to avoid an error about missing operator.
2007-02-15 08:44:34 +00:00
reed
b173114f5c
Fix typo/mispelling in comment.
2007-02-10 19:40:58 +00:00
reed
5e11b7d474
Fix spelling/typo.
2007-02-10 19:40:10 +00:00
reed
ed94d203e5
Fix mispelling in comment.
2007-02-10 19:39:02 +00:00
reed
a5a4385fd4
Fix typo/mispelling in comment.
2007-02-10 19:36:56 +00:00
tron
da3cb8f550
Increase the number of raid(4) device node sets to four and the number
...
of wd(4) device node sets to eight. This fixes another problem
reported in PR port-amd64/35532
2007-02-09 21:17:11 +00:00
riz
3ba975dea2
Fix off-by-one error in the creation of dk(4) device nodes.
2007-02-07 03:01:13 +00:00
dyoung
df51b53ccc
Create /dev/cmos.
2007-02-06 21:27:43 +00:00
elad
97d944e80d
Use 0555 for the real tmp dir for now.
2007-02-06 16:54:27 +00:00
elad
d488983ed2
Only override /tmp if needed. From perry@.
2007-02-05 01:47:48 +00:00
xtraeme
a5c172888b
Use mkdir -p to create ${per_user_tmp_dir}, otherwise if /private (this is
...
the default) doesn't exist there won't be any error.
2007-02-04 18:28:26 +00:00
xtraeme
470eb9feca
Install the perusertmp file.
2007-02-04 16:36:07 +00:00
rpaulo
ea9a233098
Add login.conf.
2007-02-04 14:44:34 +00:00
rpaulo
0231f1b5fe
Add an commented out login.conf with a simple example based on OpenBSD.
...
Requested by Elad.
2007-02-04 14:43:03 +00:00
elad
5e2e282f9c
Add support for per-user /tmp.
...
Enabled via per_user_tmp in /etc/rc.conf (default off).
See security(8) and rc.conf(5) for more details.
Lots of input from thorpej@ & christos@, thanks!
2007-02-04 08:19:26 +00:00
cbiere
28ea2557d4
Let timedc use the dedicated account "_timedc" for dropping privileges
...
instead of abusing the account "nobody".
2007-01-28 13:51:29 +00:00
hubertf
78b99d6807
_find_processes(): in addition to the existing "interpreter: /path/to/daemon"
...
also recognize "interpreter: daemon" in ps(1) output.
That case statement should be rewritten with expr(1) if more flexibility is
needed.
Fixes PR 35366 by Dominik Joe Pantucek, debugged with much assistance
by him on IRC.
2007-01-27 14:30:26 +00:00
kardel
54a07e0f01
PR/25482
...
reinstate NTP html pages (sans gif's/img tags).
The important man pages are now generated by autogen and
thus match again the code again.
2007-01-20 16:50:29 +00:00
hubertf
6a5bb11672
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@
2007-01-15 23:35:11 +00:00
jklos
7974dc0773
Replaced tty00 - tty07 with ttyZ0 - ttyZ1 because tty00 and friends don't
...
exist (and symlinks aren't acceptable in many instances).
2007-01-14 00:06:24 +00:00
pooka
e56cecb8ea
create /dev/puffs in 'all'
2007-01-09 15:34:15 +00:00
elad
bfba6c5bc8
"Verified exec" -> "Veriexec", in comment.
2006-12-30 11:06:04 +00:00
ad
7334cf17bb
Enable /dev/io for COMPAT_FREEBSD.
2006-12-29 19:16:30 +00:00
hubertf
bfc0884386
Make the daily script immune to changes of the current working directory
...
in /etc/daily.local. Fixed PR misc/33461.
2006-12-17 23:24:09 +00:00
peter
1fac5dea9c
Add zaurus specific etc files.
2006-12-17 16:09:15 +00:00
reed
daf4c6e3eb
Remove comment about "hand-crafted".
...
Mention this file may be overwritten on upgrades, where to put
custom specs instead, and point to manual page.
2006-12-14 02:28:30 +00:00
reed
0dfdbcd57a
Add comment about not modifying this file, where to put custom specs,
...
and point to man page.
2006-12-14 02:24:21 +00:00
dyoung
5eaf8c7227
Forward options -f, -m, -s to the MAKEDEV.local script, with the
...
help of some Bourne-shell magic from David Laight.
2006-12-10 08:14:32 +00:00
skrll
ecf6232588
Some installation fixes:
...
- add a ses(4) major number as the MI MAKEDEV tries to create the
nodes. hi elad.
- create audio devices.
- provide mount_kernfs and a dmesg command.
- start sysinst automagically and fix backspace key.
Mostly prompted by David H. Gutteridge on port-hp700.
2006-12-06 10:27:00 +00:00
tsutsui
535e9512ea
Rename pccons(4) device node from ttyC0 to MI ttyv0
...
to avoid conflict with com(4).
2006-12-03 05:37:36 +00:00
freza
e388b581bd
Welcome to evbppc/virtex -- port to Xilinx Virtex series FPGA's with embedded
...
ibm405d5 core.
OK by Simon Burge
2006-12-02 22:18:47 +00:00
mhitch
d2a191da79
It's possible to use RaidFrame now, add some raid devices on the install
...
miniroot.
2006-11-29 03:26:39 +00:00
tnozaki
dec2eb4c9d
1. move GB*.esdb from i18n/esdb/MISC to i18n/esdb/GB directory.
...
2. add iconv support for Chinese Tradisional GB12345.
2006-11-23 03:25:24 +00:00
dsl
bc1f6e73ad
Stop building the INSTALL_SMALL, INSTALL_TINY, INSTALL_PS2, GENERIC_TINY and
...
GENERIC_PS2TINY kernels.
These kernels are for i386 (and small i486) systems that have almost all
long since met their makers.
Add ALL (to help avoid bitrot).
2006-11-19 11:21:19 +00:00
dsl
7e3bc3c991
Put the kernels one per line for easier commenting out
2006-11-18 21:04:40 +00:00
dogcow
02ef5933d0
add TCVN to mtree from the recent i18n changes. (hi, tnozaki!)
2006-11-13 22:28:47 +00:00
christos
3353f7d077
goodbye uucp
2006-11-12 01:20:00 +00:00
scw
0c2bb6eb97
Add CP3100 and CP3100_INSTALL to kernel/build sets.
2006-11-09 00:34:49 +00:00
christos
97be580a50
add /usr/include/ssp
2006-11-08 22:43:34 +00:00
joerg
fc0bc19fc7
Add rum(4) for newer USB Ralink devices. Obtained from OpenBSD.
...
Special thanks to Sepherosa Ziehau for helping debugging USB issues.
Hook up rum(4) for i386 config files.
2006-10-31 22:21:16 +00:00
pooka
c1b5a38fea
add puffs device, but I didn't add it to MAKEDEV all on purpose
...
just quite yet, too experimental
2006-10-22 23:02:08 +00:00
he
099b977bfe
Add the GUMSTIX kernels now that the distrib setup tries to find
...
those kernels.
2006-10-18 10:13:58 +00:00
elad
4c99077841
PR/31497: Robert Elz: rc.d/accounting should have KEYWORD: shutdown
2006-10-08 18:08:39 +00:00
elad
dcd438d489
PR/33434: Jukka Salmi: wrong lp spool directory name in default printcap
...
Patch applied, thanks!
2006-10-08 15:28:49 +00:00
elad
7eab5cff73
PR/33029: Frank Kardel: /etc/services not up to date?
...
We probably won't be synchronizing with the IANA list (which is above 14k
lines), but would rather add the services <1024.
2006-10-08 14:30:26 +00:00
dogcow
859dcf3c5f
add all the proper fields to _proxy
2006-10-08 02:34:51 +00:00
elad
debd0acd05
Back out previous. This was a dup of PR/29144 that was fixed differently.
...
Thanks to pavel@ for pointing out, okay oster@.
2006-10-07 23:08:03 +00:00
apb
dc5994b41f
/etc/shrc is used by both sh and ksh, but ksh doesn't support
...
se -o tabcomplete, so test before using it. Problem reported
by Pavel Cahyna, and fix tested by him.
2006-10-07 22:50:51 +00:00
rpaulo
6080ffe830
PR 30716: rc.d/ntpd{,ate} precedes rc.d/rtsold. By Ed Hynan.
...
rc.d/rtsold should be in the same start up line as dhclient.
2006-10-07 21:41:41 +00:00
rpaulo
20c84defc6
PR 34692: wpa_supplicant script.
...
By Jukka Salmi.
2006-10-07 20:52:52 +00:00
rpaulo
e3c4f7c039
PR 34692: wpa_supplicant script.
...
By Jukka Salmi.
2006-10-07 16:50:34 +00:00
rpaulo
1921cb5602
PR 30870: Add user ``_proxy'' and make pf's ftp-proxy use it.
...
Initial patch by rivo nurges, thanks!
2006-10-07 15:10:17 +00:00
elad
fa3f94a430
PR/32004: Ed Ravin: command interpreter test in rc.subr doesn't accomodate
...
chroots
Patch applied, thanks!
okay apb@
2006-10-07 11:25:15 +00:00
apb
6101aaea5a
set -o tabcomplete if interactive. Discussed on tech-userlevel.
2006-10-07 10:47:03 +00:00
elad
0141f6f58f
PR/22340: Benedikt Meurer: cleartmp should honor ifile on LFS
...
Patch applied, thanks!
2006-10-07 07:01:21 +00:00
riz
7338f92d29
Trap SIGINT so that if fsck is interrupted by ^C, we drop into single-user
...
mode. Fixes misc/29822 from der Mouse, fix from Arnaud Lacombe with
comment rework by me.
2006-10-07 04:11:23 +00:00
sketch
de3bf5da0e
Tidy output so it matches other rc scripts.
2006-10-01 15:17:51 +00:00
jnemeth
38322a9a53
fix a couple of comments
2006-09-27 01:41:45 +00:00
tron
fc8a2f9593
Remove key for "tgm.netbsd.org". The machine was put out of service when
...
the new autobuild cluster was brought up.
2006-09-26 21:57:06 +00:00
tron
820a357648
Improve security check for "/etc/exports":
...
1.) Properly handle line continuation and network exports.
2.) Make the report more compact.
Patch contributed by Jukka Salmi in PR bin/24583.
2006-09-26 08:32:40 +00:00
jmcneill
b11beef4fa
Add acadapter, lid_switch, and sleep_button powerd scripts.
2006-09-26 02:19:56 +00:00
jmcneill
788671871d
Install all example powerd scripts by default.
2006-09-26 02:18:16 +00:00
jmcneill
d54c2134a8
Add useful example scripts for powerd acadapter, lid_switch, and
...
sleep_button events. These use the /dev/apm interface, so should be useful
on more than just i386.
2006-09-26 02:17:38 +00:00
snj
03e091a960
Fix a sorting error in the last change. Pointed out by Jukka Salmi.
2006-09-25 21:26:27 +00:00
snj
beecc65b09
Add missing rc.d scripts (cgd, ftpd, hostapd, ifwatchd, ipfs, irdaattach,
...
moused, rtclocaltime, staticroute, tpctl).
From Jukka Salmi in PR misc/33626.
2006-09-24 23:10:47 +00:00
manu
62e38c2a6a
Restore twa as major 187, this time with the flag so that it does not get
...
used in kernels that do not include the driver.
2006-09-24 08:23:36 +00:00
manu
2a6884acfb
Back out the twa device:
...
- if allocated in the MI range, it breaks the builds for ports that do
not use it
- if allocated in the MD range, 3ware's tw_cli tool will break because it
hardcodes the major
2006-09-24 03:46:30 +00:00
snj
9f4b947629
Add lpa[0-2].
2006-09-23 22:31:48 +00:00
manu
a2d5fc8a9e
Add twa device
2006-09-23 22:24:51 +00:00
elad
e23e9cfd2a
PR/26511: Stephen Borrill: ses devices are not created with MAKEDEV all
...
Patch applied, thanks!
2006-09-23 20:23:09 +00:00
elad
a333c21fa0
PR/18476: reed at reedmedia dot net: add /etc/skel to special mtree
...
Slightly different patch applied (entry was made optional), thanks!
2006-09-23 09:42:31 +00:00
jmcneill
64b4f9dcf8
PR #26490 : /etc/security is not aware of sha1 passwords
2006-09-23 04:07:01 +00:00
christos
b4d99722ef
add linux emulation examples
2006-09-22 15:39:51 +00:00
taca
7a5ecb8445
Make sure to the file end with EOL ("\n").
...
Without EOL, pkgsrc/pkgtools/pkg_comp cause mysterious error.
2006-09-22 08:00:33 +00:00
hubertf
a021833b49
Remove last traces of /var/log/aculog
...
OK'd by perry@
2006-09-18 22:39:37 +00:00
dbj
58ced62fd0
remove ./usr/share/examples/veriexecctl which is now listed in obsolete file
2006-09-18 08:41:21 +00:00
pavel
d8b49bb74e
Factor out common settings from /root/.shrc and /etc/skel/.shrc to a
...
new file /etc/shrc.
As proposed on tech-userlevel.
2006-09-14 13:01:31 +00:00
plunky
4f1cbddc12
update to bluetooth device attachment:
...
remove pseudo-device btdev(4) and inherent limitations
add bthub(4) which autoconfigures at bluetooth controllers as they
are enabled. bluetooth devices now attach here.
btdevctl(8) and its cache is updated to handle new semantics
etc/rc.d/btdevctl is updated to configure devices from a list
in /etc/bluetooth/btdevctl.conf
2006-09-10 15:45:55 +00:00
christos
156b02eae7
make postconf configurable
2006-09-07 15:26:08 +00:00
christos
4f593623cc
- find the correct newaliases program from postconf
...
(suggested by Geert Hendrickx)
- only check for hash files.
2006-09-07 14:16:55 +00:00
ad
44f6463cc4
Add /dev/lockstat.
2006-09-07 01:18:01 +00:00
rumble
3691c21c61
Minor english nits.
2006-09-06 14:59:15 +00:00
ad
b126141ea3
Remove 'makedev mouse'.
2006-09-06 11:09:58 +00:00
christos
e32e513967
Find the alias file name from the postfix configuration. From our anonymous
...
user.
2006-09-05 22:10:51 +00:00
uwe
1fd097bf15
Initial import of NetBSD/landisk port by NONAKA Kimihiro <nonaka@NetBSD.org>
2006-09-01 21:26:18 +00:00