Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-11-21 | stupid Imac DV appears to misclasify the vga controller as DISPLAY_MISC | Theo de Raadt | |
instead of DISPLAY_VGA | |||
2000-11-13 | typo | Niklas Hallqvist | |
2000-11-11 | Add bus_space_barrier code to powerpc bus.h. This portion of the | Dale Rahn | |
bus interface was not previously implemented. This functionality is required for the latest USB changes. The bus_space_barrier does not perform any operation with this change, it expects that the device mappings will be performed with the Guard bit set which then should not require this forced sync. | |||
2000-11-10 | Change the ktrace interface functions from taking the trace vnode to taking the | Artur Grabowski | |
traced proc. The vnode is in the proc and all functions need the proc. | |||
2000-11-05 | Update to reflect closer to reality. and current direction for the port. | Dale Rahn | |
2000-11-05 | Changes to print out size of L2 Cache for G4 and G3 machines. | Dale Rahn | |
It "configures" the cache, but it seemed to be configured by openfirmware previously. From NetBSD. | |||
2000-10-27 | more precise BUFCACHEPERCENT calculations. | Michael Shalayeff | |
from gluk@ptci.ru; deraadt@ and niklas@ ok | |||
2000-10-26 | fix bpf; diagnosed by fgs | Theo de Raadt | |
2000-10-24 | Verify that memory regions are always page aligned and multiple of page size. | Dale Rahn | |
The kernel does not want to deal with memory that is not page aligned. | |||
2000-10-20 | fix clean target | Theo de Raadt | |
2000-10-20 | Add Mhz to cpu information. | Dale Rahn | |
Ok'd deraadt@ | |||
2000-10-20 | Add support for ulpt, USB printers. | Dale Rahn | |
2000-10-19 | Changes to pci and if_gm to support obtaining the ethernet hardware address | Dale Rahn | |
from the pci bus. This is in preference to adding openfirmware code to the device drivers. If there was a known way of obtaining the ethernet hardware address from a eeprom or other methods that would be used, but the only known way to get this information for the Apple machines with if_gm is via openfirmware. This modifies a previous mechanism that was used to obtain similar information from different openfirmware systems, however the old mechanism would create information such as media type. This information was hardcoded into that code. Now the code only returns the actual address which is the only informatin that openfirmware provides. | |||
2000-10-19 | Clean up printfs during boot, these were unnecessary debugging prints. | Dale Rahn | |
2000-10-19 | Clean up printfs during boot, print reasonable information, not extra | Dale Rahn | |
information. | |||
2000-10-19 | remove unnecessary printf during boot. | Dale Rahn | |
2000-10-18 | Remove configure change from a couple of revisions ago, the interrupt | Dale Rahn | |
configureation change is causing system corruption that is exhibits itself in an error where X11 programs will not function correctly. | |||
2000-10-18 | typo in comment; from gluk@ptci.ru | Michael Shalayeff | |
2000-10-16 | correct dmesg even more | Theo de Raadt | |
2000-10-16 | remove basically incorrect interrupt configuration code. | Dale Rahn | |
clean up config output, less output and on one line. - per discussion with Theo | |||
2000-10-16 | configuration changes to enable the uni-north memory controller to enable | Dale Rahn | |
the ethernet pci bus. Allows the gm ethernet controller to configure. | |||
2000-10-13 | eol | Theo de Raadt | |
2000-10-01 | Complete raidframe support, support was incomplete before. Not known | Dale S. Rahn | |
to be working, but was starting to configure before testing was stopped. | |||
2000-09-26 | Implement getnulldev that returns the dev_t for "/dev/null". | Artur Grabowski | |
2000-09-19 | Remove annoying debugging print that was introduced with the cmap setting code. | Dale S. Rahn | |
2000-09-19 | Remove secondary hack that limited mapped size. Not needed with BAT mappings. | Dale S. Rahn | |
2000-09-19 | Remove hack code that "limited" the mapped memory to 64k. Now that | Dale S. Rahn | |
the BAT is used to map the 16M display memory, no size limit is needed. (Was only originally needed because of pmap limitations). | |||
2000-09-19 | Changes to support ioctls as required for a framebuffer X server. | Dale S. Rahn | |
routines added to set the colormap via openfirmware. Changes by both Matthieu and myself | |||
2000-09-19 | Add openfirmware handle so that vgafb can set colormap via openfirmware. | Dale S. Rahn | |
This is an ugly kludge, but until the vgafb is made smart enough to modify the vga registers directly. | |||
2000-09-19 | Use the BATs to map devices. This is partially so that larger | Dale S. Rahn | |
displays can be mapped so that the pmap module does not need to allocate potables before vm is inited (vga console). | |||
2000-09-16 | It is possible to have more than one usb keyboard configured thru wskbd. | Dale S. Rahn | |
2000-09-15 | When calling a signal handler, don't pass the kernel (local) address in r5. | Dale S. Rahn | |
- From NetBSD | |||
2000-09-14 | crank MSGBUFSIZE | Theo de Raadt | |
2000-09-14 | simplify printing | Theo de Raadt | |
2000-09-08 | Modify ata timing parameters, gives signficant boost in disk speed. | Dale S. Rahn | |
From NetBSD. | |||
2000-09-08 | Now that USB functionality has been merged into GENERIC, this config file | Dale S. Rahn | |
is no longer needed. | |||
2000-09-07 | console ? here too | Theo de Raadt | |
2000-09-07 | - attach wskbd at location console ? | Matthieu Herrb | |
- add ums and wsmouse | |||
2000-09-07 | cleaner | Theo de Raadt | |
2000-09-07 | add OF_interpret, to obtain output from openfirmware commands. | Dale S. Rahn | |
2000-09-07 | Fix cursor unplot bug. pointer to cursor was not initialized, thus it | Dale S. Rahn | |
would unmap the cursor at y,y rather than the real position. | |||
2000-09-07 | Fix base address of screen (obtained from openfirmware) | Dale S. Rahn | |
Fill screen with background color. | |||
2000-09-07 | Use the vt100 console emulation, remove dumb just for space. | Dale S. Rahn | |
2000-09-06 | user_config needs ifdef BOOT_CONFIG protection. | Dale S. Rahn | |
2000-09-06 | catch misaligned access exception for user mode. | Dale S. Rahn | |
wasn't here before because supposedly the processor would handle misaligned accesses itself. | |||
2000-09-06 | take offset from hardware clock specified with 'option TIMEZONE=' and | Matthieu Herrb | |
'option DST=' into account when initializing the clock. ok drahn@ | |||
2000-09-06 | Update to use vga console, USB keyboard, adb for reset/poweroff. | Dale S. Rahn | |
2000-09-06 | First cut at vga console support for PowerMac (USB keyboard) | Dale S. Rahn | |
uses adb to reboot or power-off system. add support for various USB devices into device table, as well as some other missing devices. | |||
2000-09-06 | Version with latest features. to be merged into GENERIC shortly. | Dale S. Rahn | |
2000-09-06 | Remove _very_ old unused config files. | Dale S. Rahn | |