thorpej
339724bb6f
NetBSD 1.5H: struct ifnet changed.
2000-10-11 16:55:11 +00:00
thorpej
fabbb33a60
Implement ether_ioctl(), ioctl operations common to all Ethernet
...
interfaces.
2000-10-11 16:53:41 +00:00
thorpej
7e2259325b
Change the if_reset vector to if_init, and add an if_stop. if_stop
...
also takes an argument indicating whether or not the interface should
also be disabled (i.e. power removed, resources freed, etc.)
2000-10-11 16:52:34 +00:00
itojun
0eafc475c2
/etc/mail/aliases, not /etc/aliases. PR 10167.
2000-10-11 16:51:55 +00:00
itojun
81d0adc881
string length computation bug. PR 8676.
2000-10-11 16:47:22 +00:00
ad
e764b56887
Add another.
2000-10-11 15:23:05 +00:00
onoe
fcde56c9ba
Add flags to indicate that tlp_init() should set some more BUSMODE bits.
...
TULIPF_BLE /* data is big endian */
TULIPF_DBO /* descriptor is big endian */
These setting is required for Big-endian bus front-end (such as APbus for
newsmips) to work with tulip. Also,
sc_maxburst
member is added to the tulip_softc to limit the maximum burst length.
This member defaults to zero which means no restriction for burst length.
2000-10-11 14:59:52 +00:00
is
135600f947
More format string cleanup by sommerfeld.
2000-10-11 14:46:00 +00:00
hubertf
745fefd1c6
Xref pkgsrc/Packages.txt
2000-10-11 14:00:58 +00:00
simonb
ccfb69e019
Update for the 1.5 release.
2000-10-11 13:04:12 +00:00
simonb
2cac9518f5
'ex' is not in the root filesystem if /usr is a separate partition.
2000-10-11 12:59:22 +00:00
is
c187885502
Added Aarhus.
2000-10-11 12:23:50 +00:00
tsutsui
6c7f106ad2
Fix typo. (s/cobolt/cobalt/)
...
Pointed out by SUNAGAWA Keiki <kei_sun@ba2.so-net.ne.jp>.
2000-10-11 12:18:45 +00:00
is
87dfefb8c5
Added a couple of entries. Corrected some sorting errors.
2000-10-11 12:17:35 +00:00
tsutsui
6af4346937
Remove description about new ports on 1.4.
2000-10-11 11:56:28 +00:00
tsutsui
43ce57ab95
Fix rawrite path in news68k part.
2000-10-11 11:47:46 +00:00
tsutsui
d49da72a2f
Add some description for news68k.
2000-10-11 11:46:02 +00:00
fvdl
38dbc727ef
Don't abort when trying to remove a directory marked as obsolete that does
...
not exist.
2000-10-11 11:10:46 +00:00
fvdl
16d465114d
Add target_realpath(), a function that expands a pathname on the
...
"target" filesystem, i.e. a filesystem that will probably be
mounted on /mnt during install/upgrade, but will be / when
the system is booted. Needed to deal with absolute symbolic links.
This function is (unfortunately) a verbatim copy of realpath() from libc,
with prefix handling added.
2000-10-11 11:10:11 +00:00
hubertf
bf24eb4e3f
Check if $PKG_PATH is set AND contains something useful. Stops
...
pkg_info from spewing.
2000-10-11 11:09:20 +00:00
hubertf
5f69d95c26
Check right variable to see if it's a URL (pkg -> cp)
2000-10-11 11:08:04 +00:00
fvdl
57ffac419f
Add message for a.out library move failure case.
2000-10-11 11:06:47 +00:00
fvdl
d8be7da3a1
Externalize concat_paths, it is used by arch/i386/md.c now. Add
...
target_realpath prototype.
2000-10-11 11:06:03 +00:00
fvdl
beea1cfd99
Add 2 defines for a.out library move code.
2000-10-11 11:05:03 +00:00
fvdl
90d488a637
Fix compare logic error in check for installation of seperate kernel
...
sets.
Add code to deal with moving a.out libraries to /emul/aout for
upgrading.
2000-10-11 11:04:43 +00:00
hubertf
b31af88872
fix indentation
2000-10-11 11:01:41 +00:00
thorpej
99de26f4ee
Repair a dual-.if construct that certainly didn't work with
...
any version of make(1) on my systems...
2000-10-11 05:45:50 +00:00
itojun
874bb03cac
make the directory suitable with with latest racoon
...
- add random.c.
- don't suppress warning.
2000-10-11 05:41:18 +00:00
briggs
1e8e167a26
Fix format warnings
2000-10-11 04:57:42 +00:00
pk
0abaf0f210
Fix compilation errors: unused variable & missing function return values.
2000-10-10 23:33:52 +00:00
lukem
7bed8ad731
- move arch setting logic from main -> macros, and change as follows:
...
- define string `A' to contain the arch name (defaults to the port
name)
- define registers \*A and _\*A if
- deprecate _FOR_RELEASE, and just use FOR_RELEASE
2000-10-10 22:03:41 +00:00
jeffs
4912e50a59
Make memcpy and memmove use bcopy assembly for mips. Tweak forward copy
...
code for backward copy to make overlap copy faster. This happens in
some SW like sleepycat db. Use temp labels in order to not confused
the profiling tools.
2000-10-10 21:51:54 +00:00
he
dd0d61e300
Use %lx instead of %x with _kvm_err when arg is u_long.
2000-10-10 20:44:16 +00:00
is
2e08b549a5
Format string cleanup, by sommerfeld.
2000-10-10 20:41:20 +00:00
jeffs
bdbb241be6
Fix race between pmap_enter() and pagedaemon. If we are low on memory and
...
pmap_enter() cannot allocate the segmap return failure if PMAP_CANFAIL
instead of sleeping. Otherwise panic. Both alpha and i386 do this. Do
not pmap_enter_pv() until after this is done so the data structures are
not partially allocated. This should prevent pmap_page_protect() from
getting stuck when called from pagedaemon.
2000-10-10 20:39:42 +00:00
jeffs
db1bb008f9
Set return value correctly for memcpy/memmove.
2000-10-10 20:29:03 +00:00
is
9979da6cbb
Format string cleanups by Bill Sommerfeld.
2000-10-10 20:24:49 +00:00
he
489b832f9b
Add randomness sampling from hil, sd and rd devices.
2000-10-10 19:58:42 +00:00
is
48052d04a3
Format string cleanups by sommerfeld.
2000-10-10 19:54:37 +00:00
is
a9006f3ed5
Format string cleanup by sommerfeld.
2000-10-10 19:23:58 +00:00
is
e999d8013c
Format string cleanups by sommerfeld.
2000-10-10 19:12:48 +00:00
is
8d4a392e3d
Format string cleanup by sommerfeld.
2000-10-10 19:09:38 +00:00
is
f518246fc1
Format string cleanup, by Bill Sommerfeld.
2000-10-10 18:09:25 +00:00
itojun
8fa0e6b9f7
sync with kame ($KAME$)
2000-10-10 16:26:43 +00:00
enami
17c8af2ff2
Printing argv[0] on fts_open failure doesn't make sense. Just print
...
``fts_open'' instead.
2000-10-10 14:41:59 +00:00
ad
2f4f733952
rpcinfo is in section 8.
2000-10-10 14:34:13 +00:00
ad
8d6bd26624
Let `-' mean stdin.
2000-10-10 14:33:23 +00:00
enami
e92c3f2867
- The type of return value of setmode is a void * and getmode takes it,
...
rather than mode_t *.
- Free the storage allocated by setmode unless it is obvious that program
exits immediately.
2000-10-10 14:30:40 +00:00
ad
d4f8f51f40
Nit.
2000-10-10 14:27:14 +00:00
ad
e62b1ca145
One more; also provide some alternative meanings to existing entries.
2000-10-10 14:19:34 +00:00