summaryrefslogtreecommitdiffstats
path: root/usr.bin/diff/diffdir.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-05-29set_infodir only if plist got defined.espie1-2/+4
2007-05-29set_infodir during pkg_add.espie1-1/+2
2007-05-29use the infodir property of packing-lists and specialfiles instead ofespie1-32/+34
passing extra parameters around.
2007-05-29a few more details so that infodirs become useful.espie2-4/+22
2007-05-29clean-up SpecialFile a bit: make sure the name passed during creation isespie2-4/+44
totally irrelevant. Add a new property to packing-lists: infodir, and use it to compute fullnames for special files. Once this is properly synchronized, we can tie infodir to packing-lists, and remove it from the state...
2007-05-29downgrade `can't find +DISPLAY' to a warning until I figure things out.espie1-2/+2
2007-05-29adapt from netbsd:sturm3-17/+19
fold sys_shmat1() back into sys_shmat(), instead add flag for shmget(2) to specify that later shmat(2) for the shared memory segment should succeed even if the segment would be marked removed; use this to implement the Linux-compatible semantics of shmat(2) this fixes current opera with shm ok millert
2007-05-29Do not change snaplen when parsing a netflow packetcanacar1-5/+2
2007-05-29don't use 0 as an error number.espie2-5/+5
2007-05-29use the right capitalization for `MBus' and `SBus'sobrado1-2/+2
ok jmc@
2007-05-29use the right capitalization for `MBus'sobrado1-3/+3
ok jmc@
2007-05-29use the right capitalization for `SBus'sobrado27-106/+106
ok jmc@
2007-05-29Add global variable apm_attached, machine dependant probe routine for ACPIgwk2-22/+25
will check this flag durring probe, meaning that if the machine has APM ACPI will not attach. This should remove one obstacle on the road to enabling ACPI by default. ok marco, dreaadt, art, krw, art
2007-05-29forgot to move to using shared boot.cderaadt1-2/+2
2007-05-29Re-add sync.marco2-13/+21
ok tedu
2007-05-29Get rid of another useless variable, another difference between ourray2-10/+6
diff code and diff(1). OK niallo@
2007-05-29theo says degrees is spelled degreestedu1-2/+2
2007-05-29code typoderaadt1-2/+2
2007-05-29typoderaadt1-2/+2
2007-05-29put the temperature msr in line with the otherstedu1-5/+4
2007-05-29Correct fix for the last backout use strlcpy() to fill dv_xname. OK beck@claudio1-1/+3
2007-05-29Some improvements for better intel cpu support.tedu5-5/+315
Add EST support from i386, minus the tables Also add in support for CPU temperature sensors, based on diff to tech by Pierre Riteau. ok deraadt gwk
2007-05-29back out last commit. It helps to compile before commiting. OK beck@ art@claudio1-2/+1
2007-05-29Updated disklabel format to support larger disks and partitions. Weotto33-150/+261
free room in struct partition by packing fragment size and fragments/block more tighlty and use the resulting space to make offset and size 48 bits. For the disk part we use spare fields in struct disklabel. Kernel converts in-mem copy of the on-disk label if needed, disklabel(8) writes new version. We are careful to only change fields not used by bootloaders. Conception of basic scheme by deraadt. ok deraadt@ krw@
2007-05-29tweaks; help/ok cnstjmc2-12/+12
2007-05-29work around really bad softc abuse by marco; proper fixes for this willderaadt1-1/+2
be part of a later rototilling
2007-05-29IMP is dead and nothing uses NETISR_IMP so remove it from the netisr list.claudio2-6/+2
OK henning@ mcbride@
2007-05-29led.4 here too; plus a tweakjmc1-2/+4
2007-05-29 Step one of some vnode improvements - change getnewvnode tobeck6-102/+173
actually allocate "desiredvnodes" - add a vdrop to un-hold a vnode held with vhold, and change the name cache to make use of vhold/vdrop, while keeping track of which vnodes are referred to by which cache entries to correctly hold/drop vnodes when the cache uses them. ok thib@, tedu@, art@