summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* There's no need to special-case lseek for arm/big-endian.cognet2006-10-201-14/+0
|
* Fix a recent regression regarding valid signals.netchild2006-10-201-1/+1
| | | | Submitted by: rdivacky
* Move more MD devices and options out of MI NOTES.des2006-10-206-97/+206
|
* Don't show debug registers in "show registers". Special registers shouldbde2006-10-202-2/+4
| | | | | | | be displayed specially, and debug registers are among of the least interesting special registers (far behind %cr3). The debug registers are still accessible as variables and displayed in another bogus place ("show watches").
* MFp4:imp2006-10-2025-1058/+1165
| | | | | | | | Massive update. The highlights: o dramatically cut memory usage by writing better, less intertwingled code. o implement booting off mmc/sd cards (sd only tested one at the moment) o start to split out board specific stuff for boot2.
* The VGA_DEBUG option only exists on {amd64,i386,ia64}.des2006-10-204-6/+8
| | | | Also remove 'device io' from amd64 NOTES; DEFAULTS takes care of it.
* Update the access and modification times for dev while still holdingkib2006-10-201-2/+2
| | | | | | | thread reference on it. Reviewed by: tegge Approved by: pjd (mentor)
* Fix the race between devfs_fp_check and devfs_reclaim. Derefence thekib2006-10-203-5/+29
| | | | | | | | vnode' v_rdev and increment the dev threadcount , as well as clear it (in devfs_reclaim) under the dev_lock(). Reviewed by: tegge Approved by: pjd (mentor)
* Sort MFILES listimp2006-10-201-2/+2
| | | | Noticed by: ru@
* MFp4: when passing the transfer up the foodchain, make sure we go upimp2006-10-201-2/+4
| | | | the food chain. devi == NULL is the error condition. Treat it as such.
* MFp4: Working SPI driver.imp2006-10-201-53/+66
|
* Commit WIP SSC driver, more work is needed here, but it configuresimp2006-10-201-6/+26
| | | | things OK.
* More register definitions.imp2006-10-201-0/+105
|
* Progress commit for getting TWI workingimp2006-10-201-17/+23
|
* Add sysctl to export current state of rmii vs mii configuraiton.imp2006-10-201-2/+12
| | | | Fix a typo in resource allocation.
* Add configuration of the SSC lines for second SSC.imp2006-10-201-0/+2
|
* Add mmcbr_if.m and mmcbus_if.m to the mix.imp2006-10-201-1/+2
|
* Loadable modules for mmc (the bus) amd mmcsd (the MMC and SD supportimp2006-10-202-0/+16
| | | | code). A little green, so not yet connected to the build.
* MMC/SD bridge driver (host adapter) for AT91RM9200's MCI interface.imp2006-10-202-0/+853
| | | | | | This interface also appears in the AT91SAM9260 and '61 as well as the AVR32 based micros from Atmel. We don't yet support write protect or hot-swap in this bridge driver.
* Preliminary MMC stack. This stack supports SD 1.0 cards only, butimp2006-10-209-0/+1698
| | | | | | should be easily adapted to SD 2.0 (aka SDHC), SDIO, MMC and MMCplus cards. At the present time, there's only one bridge driver for the ARM9 based Atmel AT91RM9200.
* Document that jot(1), rs(1), and lam(1) first appeared in 4.2BSD.cperciva2006-10-203-0/+15
| | | | MFC after: 1 month
* Use TARGET_BIG_ENDIAN instead of ARM_BIG_ENDIANcognet2006-10-191-1/+1
|
* My previous commit made it impossible to export / over NFS; this smallrink2006-10-191-1/+6
| | | | | | | | | | | change fixes this. Reported by: Lin Jui-Nan Eric < ericlin dot jnlin at gmail dot com > Submitted by: Erik Trulsson < ertr1013 at student dot uu dot se > (commit is inspired by a patch from Erik) Pointyhat to: me Reviewed by: stable@ Approved by: imp (mentor) MFC after: 3 days
* - Define time_t in sys/sem.h so it doesn't require sys/types.h.jhb2006-10-191-14/+17
| | | | | | | | | | | | - Move the pid_t, size_t, and time_t definitions earlier in the file, sort them, and fix whitespace. - Drop redundant includes of sys/cdefs.h and sys/_types.h as sys/ipc.h already includes them. PR: kern/104436 Reviewed by: bde Reported by: clsung MFC after: 3 days
* Add missing "const" qualifiers.ru2006-10-191-6/+6
| | | | Submitted by: bde
* style(9)obrien2006-10-191-153/+153
|
* style(9) cleanup.obrien2006-10-191-243/+332
|
* There is no reason to have a PAGE_SIZE alignment enforced on all DMA by thescottl2006-10-191-1/+1
| | | | parent tag.
* I can't find any reason why an 8 byte alignment should be enforced on rxscottl2006-10-191-3/+3
| | | | | and tx buffers. Fix it there, and also don't have it be overridden by the parent tag.
* - convert to the current style of section 4 man pagesdanger2006-10-191-1/+15
| | | | | | | | - s/ip.forwarding/net.inet.ip.forwarding/ to match reality [1] Approved by: keramida (mentor), trhodes (mentor) MFC after: 5 days Submitted by: Tom McLaughlin via #bsddocs
* Remove some spurious debugging, and use more complete error handling forscottl2006-10-191-10/+20
| | | | tx load and fragmentation problems.
* Add missing acpi_wakecode.o: assym.s dependency, so that if assym.sru2006-10-191-1/+1
| | | | | | is newer than acpi_wakecode.h, the latter is rebuilt. Reported by: bde
* tweak comments about OLDCARD workaroundsimp2006-10-191-2/+1
|
* tweak commentimp2006-10-191-1/+2
|
* Remove references to pccard.conf, it is no longer used.imp2006-10-191-2/+0
|
* Remove references to pccard.confimp2006-10-193-5/+5
|
* Use a different task queue for host controller and peripheral driveriedowse2006-10-198-39/+74
| | | | | | | | | | | | tasks. Since the host controllers rely on tasks to process transfer timeouts, if a synchronous transfer from a driver was invoked from a task and timed out, it would never complete because the single task thread was stuck performing the synchronous transfer so couldn't process the timeout. This affected the axe, udav and ural drivers. Problem hardware provided by: guido
* Fix previous revision:marcel2006-10-191-2/+2
| | | | | | o day and mday are the same. No need to subtract 1 from mday. o Set dow to -1 as clock_ct_to_ts() checks this field and returns EINVAL on any day of the week but Sunday.
* Package the dumpcisfile functionality into a new dumpcis command.imp2006-10-184-1/+97
| | | | | | Also, don't build pccardc now. I've left it in place for people that wish to build it to test experimental support for oldcard functionality that may have been lost in newcard.
* Delete now-unused portion of pccardd. OLDCARD is gone from the kernel.imp2006-10-189-3595/+0
|
* Always build pccardc.imp2006-10-181-2/+1
| | | | # I should remove the oldcard vestages from it...
* Fix remaining compile error.grehan2006-10-182-2/+2
|
* Add 'reload' to the list of available commands for the amd rc.d script.flz2006-10-181-0/+1
| | | | | | PR: conf/104507 Submitted by: Douglas K. Rand <rand@meridian-enviro.com> MFC after: 3 days
* o Backout rev. 1.55. Don't waste cpu cycles for bzero(), do notmaxim2006-10-181-2/+1
| | | | | | call chflags() for whiteouted files. Prodded by: ru
* Normalize MAN.ru2006-10-182-2/+2
|
* Properly lock the vnode around vgone() calls.kib2006-10-184-25/+113
| | | | | | | | | | | Unlock the vnode in devfs_close() while calling into the driver d_close() routine. devfs_revoke() changes by: ups Reviewed and bugfixes by: tegge Tested by: mbr, Peter Holm Approved by: pjd (mentor) MFC after: 1 week
* Avoid a spurious warning for each whiteout found during "ls -lW".ru2006-10-181-2/+3
| | | | | | | | # ls -lW total 2 -rw-r--r-- 1 root wheel 6 Oct 18 14:46 file1 ls: ./file2: No such file or directory w--------- 0 root wheel 0 Jan 1 1970 file2
* Update for newsletter V-12: Inclusion of the new entries forru2006-10-181-1/+5
| | | | | | "Serbia" and "Montenegro". Reported by: mnag
* o Zero out struct stat before usage. lstat(2) can fail andmaxim2006-10-181-0/+1
| | | | | | | | leave garbage there which will break -W code path. PR: bin/84569 Submitted by: Igor MFC after: 2 weeks
* Check pointer before dereferencing.glebius2006-10-181-1/+2
| | | | | Reported by: Coverity CID: 1556
OpenPOWER on IntegriCloud