summaryrefslogtreecommitdiff
path: root/sys/arch/macppc/conf
AgeCommit message (Collapse)Author
2002-12-04Make ti(4) use busdma and add all of the necessary stuff to support bothNathan Binkert
endian modes. This makes ti now work on macppc and sparc64. While we're at ti, clean up a bit of the code: Use SLIST instead of LIST Remove register Use bus_space instead of bcopy/bzero Don't use bitfields since it makes dealing with endianness annoying. ok jason@, deraadt@
2002-12-02Import propolice (http://www.trl.ibm.com/projects/security/ssp), a stackMiod Vallat
attack protection scheme, into gcc. This protection is enabled by default. It can be turned off by using the -fno-stack-protector flag. Code by Hiroaki Etoh (etoh at jp dot ibm dot com); work on openbsd-specific integration by fgsch@, deraadt@ and myself; tests by fgsch@, naddy@ and myself; beer drinking by myself. Please note that system upgrades with this new code will require a new libc and ld.so to be build and installed before the propolice-enabled compiler can be installed.
2002-11-22Add xl for pci and cardbus. It seems to work, needs additional testing...Dale Rahn
2002-11-21add ubsec and lofnJason Wright
2002-11-08prepare for bktr on macppc (commented out in generic for now); drahn@ okMichael Shalayeff
2002-10-20fxp now works on bigendian, add it to macppc.Dale Rahn
2002-10-07Improved workaround for cardbus support on macppc. This allows mappings toDale Rahn
be put in the cardbus register which really work instead of crashing the machine. if_dc @cardbus now works, xl@cardbus will configure, but does not work properly (endian?) wdc should work fine, but has not been tested recently.
2002-09-24Get rid of gx(4) and use em(4) since it supports more cards and works betterNathan Binkert
overall.
2002-09-14spacesTheo de Raadt
2002-09-13why was BOOT_CONFIG left out for so long?Theo de Raadt
2002-09-12Support serial console on RAMDISK.Dale Rahn
2002-09-06Remove the gm driver, the MI gem works better at this point.Dale Rahn
2002-09-06Serial console support for macppc. Serial console will work if the modemDale Rahn
has been replaced with a serial port adapter on any machine that has a real serial port internally. This will also power on the internal modem for keylargo based machines (tested on original PBG4) when the serial port is open. ok miod@
2002-08-09Add an explicit dependancy of assym.h to Makefile.Miod Vallat
This makes sure it will be regenerated if you run config(8) again.
2002-07-28Add 'option NFSCLIENT' to macppc RAMDISK.Kenneth R Westerback
Delete (comment out) 'option NFSCLIENT' in sparc, sparc64, and sun3 RAMDISKs. This brings the presence of /sbin/mount_nfs in the boot image and the presence of NFSCLIENT in the RAMDISK kernel into alignment. Except for sparc64 which will now have mount_nfs removed from the boot image to save space. mvme88k RAMDISK did not need to be adjusted as it only *looks* like it does not have NFSCLIENT. It actually includes the system GENERIC. Investigation for inconsistancies prompted by todd@. This solution recommended by deraadt@.
2002-07-24and add the things that are missing?Theo de Raadt
2002-07-24why do i always have to mop upTheo de Raadt
2002-07-23Cardbus/pcmcia support for macppc. parts borrowed from NetBSD, and otherDale Rahn
portions of the tree.
2002-06-25IEEE1394 infrastructure part.Jun-ichiro itojun Hagino
IP-over-FW and SCSI over FW are being worked on.
2002-06-23committed by mistakeJun-ichiro itojun Hagino
2002-06-23make CAPS_IS_CONTROL a default. pvalchev okJun-ichiro itojun Hagino
(translates weird ADB capslock keycode to more normal behavior)
2002-06-22Add ${PIPE} to CFLAGSTodd C. Miller
2002-06-18document CAPS_IS_CONTROL. suggested by miodJun-ichiro itojun Hagino
2002-06-08One ddb to rule them all.Miod Vallat
Move the ddb files form macppc/macppc to powerpc/ddb, so that mvmeppc can benefit from the better ddb that was in macppc. db_interface.c is left as an md part.
2002-06-08Macppc switches to gem from gm. Use the MI, better, Gig-E capable driver.Dale Rahn
2002-05-22Put abtn back in GENERIC. RAMDISK kernels do not need it.Miod Vallat
2002-05-15Remove the assembler kludges to allow altivec support without assembler helpDale Rahn
now that binutils is updated. As hoped, resulting .o file was identical.
2002-05-09On the hid -> hiddev changes, this file was missed.Dale Rahn
2002-05-09Sync hid stuff including ukbd, ums, and uhid with NetBSDNathan Binkert
This adds a uhidev device which can be thought of as something like a uhid bus. It allows more than one ukbd, ums, or uhid to attach to the same device instance. This functionality is found on many of the newer keyboards that have extra buttons. (The extra buttons show up as uhid device(s)). Tested by me on i386, dale on macppc, and jason on sparc64
2002-04-29Change macppc vgafb from rcons to rasops, a faster color supporting virtualDale Rahn
terminal emulator for gfx console. tested by mattheiu, miod.
2002-04-29cleanup, remove devices which macppc is likely to never have, commentDale Rahn
drivers not currently present in source space.
2002-04-08wi* at pci* works with PLX pci adapters.Dale Rahn
Note: true pcmcia bridges are not currently supported.
2002-04-05fxp does not work on powerpc.Dale Rahn
2002-04-05add wsmux to the macppc ramdisk, to allow all keyboards to attach.Dale Rahn
2002-04-02uncomment lxtphy(4) and enable eephy(4) in the RAMDISK kernel;lebel
asked by miod@, OK'ed by drahn@
2002-04-02new PowerBook G4 has a Marvell 88E1000 Gigabit PHY, model 6,lebel
so activate the eephy(4) device for it
2002-03-31enable wsmux on macppc, note that this will REQUIRE changes to XF86Config.Dale Rahn
2002-03-30Add support for WSCONS_COMPAT_RAWKBD to macppc, see warning sent to ppc@Dale Rahn
This is in preparation for wsmux support.
2002-03-28Add WSDISPLAY_COMPAT_RAWKBD (commented), add missing mux pieces.Dale Rahn
It is now possible to test wsmux with (recent) X. XF86Config changes are necessary in InputDevice Section: Protocol -> standard, remove Device.
2002-03-25dhartmei@ and I have been both running uaudio devices on macppc successfullylebel
for the past few weeks. drahn@ agrees.
2002-03-23typo repair; openbsd@davidkrause.comTheo de Raadt
2002-03-22add some phys for dc.Dale Rahn
2002-03-22add dc and hme to ramdisk kernel.Dale Rahn
2002-03-14Improved altivec support for powerpc/macppc.Dale Rahn
Fix bug where altivec context was not freed on process exit. Fix bug where vscr was not correctly saved/restored. replace asm statement was macros which expand to the same asm code or to .long XXX which evaluates to the same instruction since in-tree gas does not support altivec. Enable ALTIVEC support by default on macppc, still conditional for other powerpc ports.
2002-02-23add a comment for option APERTUREMatthieu Herrb
2002-02-23Add aperture driver support for macppc, and also place writing to /dev/pciMatthieu Herrb
under the control of machdep.allowaperture. This allows to run the X server on macppc with securelevel=1, given that machdep.allowaperture is != 0. OK deraadt@
2002-01-08correct altivec support enable for gas 2.11. (still in comment)Dale Rahn
2002-01-03Use STRIPFLAGS=-g -X -x rather than =-d on all ELF arches.Miod Vallat
2001-12-24Harmonize and complete wrt cross-compilation.Miod Vallat
2001-12-17Comment out abtn, since it is the cause of the function key crashesDale Rahn
on powerbook/ibook machines. It currently doesn't work anyway. Pointed out by Alexander Guy.