Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-08-12 | Make all DEV_BSIZE definitions consistant by using (1 << DEV_BSHIFT) | Kenneth R Westerback | |
in the six cases using "512". As DEV_BSHIFT is always 9, this should be a no-op. "no objections" miod@ "I can't see any problem doing this." pedro@ | |||
2006-08-11 | Use d_secperunit rather than 0x1fffffff as the default value for | Kenneth R Westerback | |
RAW_PART's p_size. Since d_secperunit is initialized to 0x1fffffff if not specified there should be no need to use the magic number again. And if d_secperunit was specified then that value should be used instead of the magic number. This was already being done for hp300, luna88k, mac68k, mvme68k, mvme88k. Should be a no-op. | |||
2006-08-11 | add rum(4) on arches where ural(4) is enabled. | Damien Bergamini | |
rum(4) has been tested on i386 by niallo@ and me and on sparc64 by Pablo Mendez Hernandez so I assume it is endian safe and 64bit clean. | |||
2006-07-27 | Compile all kernels with -Wstack-usage-larger-than-2047, now that all | Miod Vallat | |
offending code has been taken out and shot. ok deraadt@ | |||
2006-07-20 | regen | Michael Shalayeff | |
2006-07-20 | regen | Michael Shalayeff | |
2006-07-11 | sync | Michael Shalayeff | |
2006-07-09 | DISKLABEL_ALL was never used in hppa, hppa64, mips64 config files so | Kenneth R Westerback | |
just eliminate the check to set DISKLABEL_I386 with it. If you want DISKLABEL_I386, use that option. | |||
2006-07-07 | Unroll DLT_* logic into simple 'look for native disklabel, then try | Kenneth R Westerback | |
DOS MBR' logic. Leave DOS MBR logic inside #if defined(DISKLABEL_I386) blocks until impact on install media can be evaluated. Eliminates most remnants of cross-endian, cross-architecture disklabel processing attempts. Fix some mips64 issues with last commit, found by kettenis@. No functional change. | |||
2006-07-03 | Eliminate most of the #if/#endif maze in alpha, hppa, hppa64, and mips64 | Kenneth R Westerback | |
disklabel code that was intended to support cross-endian and cross-architecture use of disklabels. Never actually used except for Alpha<->Amiga moves that now can't happen anyway. Leave native and DOS MBR disklabel code. Tested on alpha and hppa. No functional change. | |||
2006-07-01 | Eliminate redundant get_le() in favour of letoh32(). Add letoh32() | Kenneth R Westerback | |
calls in alpha, hppa, hppa64 and mips63 when accessing the two DOS MBR u_int32_t fields dp_size and dp_start. No functional change. | |||
2006-06-26 | Clean up some inconsistancies in definitions around DOS MBR code. No | Kenneth R Westerback | |
functional change. ok deraadt@ | |||
2006-06-19 | Zap Amiga bits of disklabel.h now that Amiga bits of readdisklabel() are | Kenneth R Westerback | |
gone. 'go ahead' deraadt@ | |||
2006-06-16 | enable mpi. | Marco Peereboom | |
Who says we don't need U320 SCSI on hppa? Cookie for dlg! ok deraadt dlg | |||
2006-06-11 | Amiga is no longer amoung us. Some architectures were too sentimental | Kenneth R Westerback | |
to cut all ties when it left for the attic. Eliminate (theoretical) ability to read Amiga disklabels on those architectures. mips64 compile tested by miod@ "whack away" deraadt@ "my amiga runs 3.2" niklas@ | |||
2006-06-04 | Shrink VM_PHYSSEG_MAX to 1 on platforms where physical memory is contiguous | Miod Vallat | |
and there is only one call to uvm_page_physload(). | |||
2006-06-01 | Right at the end of a debug kernel build, the current Makefile copies bsd | Christopher Pascoe | |
(with symbols) to bsd.gdb, then strips bsd. This diff makes it rename the file with symbols, and then asks strip to output the stripped version as bsd. Avoids a potentially lengthy wait when we would otherwise copy the large (50MB+) kernel with debug symbols. ok reyk@ ketennis@ | |||
2006-05-29 | Regen (although this does not change anything for these keyboards). | Miod Vallat | |
2006-05-29 | allow ints for older asp; found on 710 @session; tested on 710, 715/33 ↵ | Michael Shalayeff | |
(miod), 735/125 (graham gower) | |||
2006-05-28 | minor nit, use CPU ID instead of FPU ID for BTLB parameters after passing | Martin Reindl | |
all kludges | |||
2006-05-20 | do not even match on unsupported hw (instead of return from attach); from 710 | Michael Shalayeff | |
2006-04-16 | Introduce sti_rom_size() which will compute the size of a card's rom, and | Miod Vallat | |
use it instead of duplicating the same logic in 3 places. ok mickey@ | |||
2006-04-15 | make warning about missing HPT support DEBUG for now | Martin Reindl | |
ok mickey@ | |||
2006-04-09 | #ifdef lint wraps for va_start | Theo de Raadt | |
2006-04-05 | Enable an(4) on BE archs now that it works. | Kurt Miller | |
2006-04-01 | Revert previous commit, this causes sti1 probe to hang on some models. | Miod Vallat | |
2006-03-27 | regen | Michael Shalayeff | |
2006-03-27 | typo | Michael Shalayeff | |
2006-03-24 | hppa has CardBus and USB as well so add umsm(4). | Jonathan Gray | |
Pointed out by mickey. | |||
2006-03-19 | remove unused bdbtofsb(bn) macro | Martin Reindl | |
found by drahn@ | |||
2006-03-15 | Nuke dk_establish(), no longer used. | Miod Vallat | |
2006-03-15 | Correct checks against cd_ndevs - valid numbers are strictly inferior to | Miod Vallat | |
cd_ndevs. | |||
2006-03-13 | * Add "pcitag_t *pba_bridgetag" to pci_attach_args. This is set to | Brad Smith | |
NULL for root PCI busses. For busses behind a bridge, it points to a persistent copy of the bridge's pcitag_t. This can be very useful for machine-dependent PCI bus enumeration code. From NetBSD ok grange@ kettenis@ | |||
2006-03-12 | remove splimp. | Brad Smith | |
2006-03-04 | Typos grab bag of the month, eyeballed by jmc@ | Miod Vallat | |
2006-02-06 | typos from alexey dobriyan; | Jason McIntyre | |
2006-01-22 | b_cylin -> b_cylinder; no functional change. | Miod Vallat | |
2006-01-13 | Make size_t, ssize_t, intptr_t and uintptr_t consistent amongst our | Todd C. Miller | |
architectures. They are now defined as unsigned long, long, long and unsigned long respectively. | |||
2006-01-11 | hotplug(4) and hotplugd(8) here | Martin Reindl | |
2006-01-10 | The __CONCAT macro here collides with the one in cdefs.h pulled in via | Martin Reindl | |
errno.h. Don't include errno.h and export EFAULT therefore. looks good miod@ | |||
2006-01-09 | Disable an(4) on BE archs until it works. | Jonathan Gray | |
2006-01-08 | Expose struct sigcontext, struct sigstat and struct sigaltstack for XPG4.2 | Todd C. Miller | |
2006-01-06 | Don't redefine SIZE_MAX | Todd C. Miller | |
2006-01-06 | Adapt things to use __type_t instead of _BSD_TYPE_T_ | Todd C. Miller | |
Add new sys/_types.h header Include machine/_types.h or sys/_types.h where applicable | |||
2006-01-06 | Merge machine/ansi.h and machine/types.h into machine/_types.h and | Todd C. Miller | |
rename the types using the __ protected namespace (e.g. __size_t). Idea from FreeBSD. | |||
2005-12-31 | Nuke unused cdev_wscons_init() macro. | Miod Vallat | |
2005-12-30 | Now that errno.h and sys/errno.h are separate header files there is no | Todd C. Miller | |
need to use the -Derrno=errno workaround added when __errno() was introduced. OK deraadt@ | |||
2005-12-27 | Remove unused sw_nblks field of struct swdevt. Then, remove swapconf() | Miod Vallat | |
which duplicates work done by uvm_swap_init(). | |||
2005-12-25 | KERN_RESOURCE_SHORTAGE -> ENOMEM | Miod Vallat | |
2005-12-22 | Postpone the hil console detection logic to the first detection of a keyboard. | Miod Vallat | |
On hp300, hil would claim console against dnkbd if no dnkbd was found at the time the loop is probed, even if the loop is empty. Because of this, plugging dnkbd later would not select it as console keyboard, which is really annoying on kernels without wsmux, such as hp300 RAMDISK. Now the first keyboard plugged will become the console keyboard, whatever its type. No functional change on hppa, since the console path gives a definite console device setting. |