summaryrefslogtreecommitdiff
path: root/sys/arch/macppc
AgeCommit message (Collapse)Author
2004-02-16Fix the recently added OF_getnodebyname(), if 0 is passed in for startDale Rahn
that indicates that start should be assigned OF_peer(0) "head of device tree", not node which is then overwritten.
2004-02-14Simplify hw.{cpuspeed,setperf} api moving all the sysctl stuffAlexander Yurchenko
from the underlying callbacks. Testing hppa mickey@, ppc drahn@ Ok markus@ tedu@
2004-02-10Add the ptm device to pty(4). By opening /dev/ptm and using the PTMGETTodd C. Miller
ioctl(2), an unprivileged process may allocate a pty and have its owner and mode set appropriately. This means that programs such as xterm and screen no longer need to be setuid. Programs using the openpty() function require zero changes and will "just work". Designed by beck@ and deraadt@; changes by beck@ with cleanup (and a rewrite of the vnode bits) by art@ and tweaks/bugfixes by me. Tested by many.
2004-01-27viritual -> virtualMiod Vallat
2004-01-23Crank SHMMAXPGS to 32mb; deraadt@ OK for all, drahn@ OK for macppc + pegasosTodd C. Miller
2004-01-22These files went dangling long time ago, actually...Miod Vallat
2004-01-20- macppc -> __macppc__Brad Smith
- remove swapgeneric.c on pegasos and remove bogus Locore for lint target ok drahn@
2004-01-18Silence match() unless DEBUG.Miod Vallat
2004-01-14Slightly better messages, fix a typo, and a few strlcpy() botches.Miod Vallat
ok drahn@
2004-01-12Completely remove the device name from this print, not just the %s.Dale Rahn
2004-01-12Better defaults on snapper, fixes xmms problem reported by joshua steinDale Rahn
just hours after the driver was committed.
2004-01-11$OpenBSD$ tagsDale Rahn
2004-01-11Little sync dmesg output with pciide.Alexander Yurchenko
ok drahn@
2004-01-11plug snapper audio into build. ok dhartmei@Dale Rahn
2004-01-11Audio support for some newer macppc machines, any 'snapper' based systems.Dale Rahn
Driver ported from netbsd with bus_dma addition/vtophys deletion. This driver does not work on the first generation 'Digital audio' systems those were 'tumbler' nor the latest version. ok dhartmei@
2004-01-11Add OF_getnodebyname interface to openfirmware, from netbsd.Dale Rahn
2004-01-09typo from Jared Yanovich;Jason McIntyre
2004-01-09fix build for gcc3.Dale Rahn
2004-01-07machine/stdarg.h -> sys/stdarg.hBrad Smith
ok drahn@ espie@
2004-01-04Previous monotomic clock fix had major issues, this improves the matter.Dale Rahn
ok otto@
2004-01-04put INET6, rtsol, and ping6 onto media where it fits. install.sub changesTheo de Raadt
which begin to enable use of this will follow at a later time.
2004-01-03backout segment register restore diff which causes reproducible hangs; ok ↵Peter Valchev
deraadt
2003-12-24cpu_cpuspeed has a proper external def, remove this one, suggested by teduDale Rahn
2003-12-24support cpu_cpuspeed on macppc.Dale Rahn
2003-12-20Pass -WformatMiod Vallat
2003-12-18Fix for monotomic time, lasttb is now in sync with 'time'. ok otto@Dale Rahn
2003-11-21+ -fno-builtin-* on architectures confirmed to work.Marc Espie
2003-11-12Be sure to cast the wsdisplay accessops cookie into the adequate structure;Miod Vallat
prevents wsconscfg from panic'ing the system. Reported by ``kluxis''.
2003-11-06move netisr definition into md code to allow arch provide suitable ↵Michael Shalayeff
allocation; tested on most archs
2003-11-03spelling fixes (in the comments)David Krause
2003-10-31Fix ppc segment register restores, this fixes the 1GB ram limit andDale Rahn
cleans up pieces in the pmap code. tested otto, brad, miod, pval.
2003-10-31Enable wi@usb, otherwise this will never get tested... deraadt@Dale Rahn
2003-10-30Add us.dvorak. ok maja@Thomas Nordin
2003-10-30fix NULL/0 mixup. drahn okJun-ichiro itojun Hagino
2003-10-30simplify cfdriver initialization. drahn okJun-ichiro itojun Hagino
2003-10-26Add line for wi@usb, currently commented out, for development and testing only.Dale Rahn
2003-10-26Driver for PRISM 2.5/3 based (wifi) USB adapters. This is a work in progress,Dale Rahn
it does not yet handle bulk data copies or hostap mode. Only one model currently supported, however driver may support other PRISM based adapters. ok millert@ fgsch@
2003-10-26More ansi/knf missed the first time around.Dale Rahn
2003-10-26Oops, I'm on drugs. Revert and blame gremlins for the state of my tree.Miod Vallat
2003-10-26Unbrek after recent wdc changes.Miod Vallat
2003-10-25Support the TI1410 Cardbus bridge found in some apple laptops. ok brad@Dale Rahn
2003-10-24If cons_backlight_available is not set, cons_brightness will not be valid,Dale Rahn
return -1 to indicate so. same as WSDISPLAYIO_PARAM_BACKLIGHT.
2003-10-24IPKDB has never been supported in OpenBSD/powerpc/macppc delete thisDale Rahn
old unused code. Remove very old 'where' debugging references. ANSI a previously missed function.
2003-10-22Search for the '/backlight' node to determine if backlight control isDale Rahn
available instead of looking for the backlight-control attribute. Fixes backlight control on some apple laptops.
2003-10-21Fix copy bounds, however did this work??? Well it didn't.Dale Rahn
Confirmed by nate@ and tedu@
2003-10-21spacing cleanup.Dale Rahn
2003-10-21Missed ANSI.Dale Rahn
2003-10-21This was changed from a magic number to a define in the header file,Dale Rahn
but this one was missed.
2003-10-20Instead of using xor to clear a register , use li <REG>,0 (load immediate)Dale Rahn
Easier to read and suppose to be slightly faster on some ppc processors. A bit of comment cleanup while here.
2003-10-19Use defines instead of magic constants for more IPL_ stuff, also sortDale Rahn
the IPL_ values by priority, not somewhat random values. No unmodified code relied on the order of these defines.