imp 2006-02-04 08:15:29 UTC
FreeBSD src repository
Modified files:
sys/dev/sn if_sn.c
Log:
Remove ifdef notyet for SIOCGHWADDR
Treat SIOCADDMULTI and SIOCDELMULTI the same, since they had the same code
Remove redundant assignment to error
Convert to using the
imp 2006-02-04 08:16:07 UTC
FreeBSD src repository
Modified files:
sys/dev/ep if_ep.c
Log:
Remove ifdef notdef SIOCHWADDR vestige.
Revision ChangesPath
1.147 +0 -6 src/sys/dev/ep/if_ep.c
___
cvs-all@fr
imp 2006-02-04 08:16:41 UTC
FreeBSD src repository
Modified files:
sys/dev/ex if_ex.c
Log:
Remove ifdef notyet SIOCGHWADDR vestige.
Revision ChangesPath
1.62 +0 -7 src/sys/dev/ex/if_ex.c
___
cvs-all@f
imp 2006-02-04 08:19:00 UTC
FreeBSD src repository
Modified files:
sys/dev/sn if_sn.c
Log:
Fix mismerge after last cvs update for the IFQ_DRV_DEQUEUE changes.
Revision ChangesPath
1.54 +4 -4 src/sys/dev/sn/if_sn.c
__
imp 2006-02-04 21:37:39 UTC
FreeBSD src repository
Modified files:
sys/dev/firewire fwcrom.c
Log:
Don't type pun accidentally. Instead, be explicit that we're type
punning with an union so that the compiler knows.
Revision ChangesPath
1.14 +8 -6 s
imp 2006-02-04 21:56:14 UTC
FreeBSD src repository
Modified files:
sys/dev/pccbbpccbb.c
Log:
Now that TUNABLE_ULONG is in the tree, and has been for a while, use it.
This also avoids typepunning.
Revision ChangesPath
1.138 +3 -3 src/sys/dev/pccb
imp 2006-02-04 22:14:20 UTC
FreeBSD src repository
Modified files:
sys/dev/amr amr_pci.c
Log:
Use void * for pointer rather than u_int8_t *, since it doesn't
matter. Well it does for type punning warnings.
Revision ChangesPath
1.34 +4 -5 src/
imp 2006-02-04 22:33:08 UTC
FreeBSD src repository
Modified files:
sys/dev/advansys adv_eisa.c adv_pci.c
Log:
Type of overrun_buf doesn't matter to this code, but does to gcc.
Make it a void *.
Revision ChangesPath
1.19 +2 -2 src/sys/dev/advansys/a
imp 2006-02-04 22:51:03 UTC
FreeBSD src repository
Modified files:
sys/dev/an if_an.c
Log:
Silence the strict-alias warnings. Make a trip through (void *) when
casting a structure to a uint32_t *. Many drivers in the tree do this, but
I'll not update them unti
imp 2006-02-04 23:32:13 UTC
FreeBSD src repository
Added files:
sys/arm/at91 at91.c at91_spi.c at91_spiio.h
at91_spireg.h at91_st.c at91_streg.h
at91_twi.c at91_twiio.h at91_twireg.h
at91_usartre
imp 2006-02-05 17:38:28 UTC
FreeBSD src repository
Modified files:
sys/modules Makefile
Log:
an driver not endian clean, so don't enable on sparc64
Revision ChangesPath
1.474 +6 -2 src/sys/modules/Makefile
imp 2006-02-07 18:38:51 UTC
FreeBSD src repository
Modified files:
sys/dev/pccbbpccbb.c
Log:
Detach the children before we delete them. This is a little cleaner
than just deleting them. Also add comments about why we do this.
Given the current behavior of delete
imp 2006-02-07 18:41:57 UTC
FreeBSD src repository
Modified files:
sys/conf files
Log:
Allow one to subset phy. If you want the kitchen sink, use device
miibus (like today). If you want a subset, choose device mii and zero
or more phy to include. We always
imp 2006-02-07 18:43:46 UTC
FreeBSD src repository
Modified files:
sys/arm/conf KB920X
Log:
Rather than pull in all the phy, just pull in the lxt phy that we need
for this board (although our lxtphy driver isn't claiming it, but that's
a different problem).
T
imp 2006-02-07 18:45:10 UTC
FreeBSD src repository
Modified files:
sys/arm/conf KB920X
Log:
This file isn't GENERIC, so change the header
Revision ChangesPath
1.3 +2 -1 src/sys/arm/conf/KB920X
___
cvs-
imp 2006-02-07 18:45:54 UTC
FreeBSD src repository
Modified files:
sys/arm/conf SKYEYE
Log:
This file isn't GENERIC, so change the header
Revision ChangesPath
1.2 +2 -1 src/sys/arm/conf/SKYEYE
___
cvs-
From: Ruslan Ermilov <[EMAIL PROTECTED]>
Subject: Re: cvs commit: src/sys/conf files
Date: Tue, 7 Feb 2006 23:40:51 +0200
> On Tue, Feb 07, 2006 at 06:41:57PM +0000, Warner Losh wrote:
> > imp 2006-02-07 18:41:57 UTC
> >
> > FreeBSD src repository
> >
imp 2006-02-11 03:27:57 UTC
FreeBSD src repository
Modified files:
sys/dev/usb usbdevs
Log:
Update the keyspan product list from NetBSD.
Revision ChangesPath
1.253 +28 -7 src/sys/dev/usb/usbdevs
___
cvs-
imp 2006-02-11 03:29:02 UTC
FreeBSD src repository
Modified files:
sys/dev/usb ohci.c ohci_pci.c ohcivar.h
Log:
Give ohci_intr a proper return value. In FreeBSD, this is void. Remove
now-redundant cast on establishing the interrupt.
Revision ChangesPath
imp 2006-02-11 03:30:18 UTC
FreeBSD src repository
Modified files:
sys/dev/usb uplcom.c
Log:
Use the release version as a floor, not an exact match. Add comment to that
effect and draw attention to the fact that the list has stronger ordering
requirements than b
imp 2006-02-11 03:41:20 UTC
FreeBSD src repository
Modified files:
sys/dev/usb usb_subr.c
Log:
Improve the memory resoruce allocation and usage during the probe.
I've had these improvements in my tree for almost a year now...
Revision ChangesPath
1.80
imp 2006-02-11 03:50:04 UTC
FreeBSD src repository
Modified files:
sys/dev/cs if_csvar.h
Log:
Use ETHER_ADDR_LEN rather than 6.
Revision ChangesPath
1.8 +1 -1 src/sys/dev/cs/if_csvar.h
___
cvs-all@fr
imp 2006-02-11 03:58:07 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 at91.c
Log:
Use the correct address for the ohci device.
Revision ChangesPath
1.2 +1 -1 src/sys/arm/at91/at91.c
___
cvs-a
imp 2006-02-11 06:55:51 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/modules/cardbus Makefile
Log:
MFC: add cardbus_device.c. This file was left out when the rest of the
changes were merged, resulting in load errors at boot time.
Approved
imp 2006-02-13 20:08:31 UTC
FreeBSD src repository
Modified files:
etc/rc.d Makefile netif
Removed files:
etc/rc.d pccard
Log:
Since OLDCARD is gone from the kernel, catchup here and remove support
from here as well.
Revision Changes
imp 2006-02-13 20:10:35 UTC
FreeBSD src repository
Modified files:
share/man/man5 Makefile rc.conf.5
Log:
Remove pccard variables which are no longer supported after the move
to NEWCARD.
Revision ChangesPath
1.65 +3 -1 src/share/man/man5/Makefile
imp 2006-02-13 21:25:01 UTC
FreeBSD src repository
Modified files:
share/man/man5 Makefile
Log:
Fix leakage of uncommitted build changes
Revision ChangesPath
1.66 +1 -1 src/share/man/man5/Makefile
___
cvs
imp 2006-02-14 04:16:56 UTC
FreeBSD src repository
Modified files:
etc/defaults rc.conf
Log:
Remove vestiges of OLDCARD.
Revision ChangesPath
1.277 +0 -6 src/etc/defaults/rc.conf
___
cvs-all@freebsd.org
imp 2006-02-17 22:23:36 UTC
FreeBSD src repository
Removed files:
sys/arm/at91 at91st.c
Log:
This file was obsolete when committed. Catchup and delete it.
Revision ChangesPath
1.2 +0 -215src/sys/arm/at91/at91st.c (dead)
_
imp 2006-02-17 22:33:13 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 std.kb920x
Added files:
sys/arm/at91 files.at91 std.at91
Removed files:
sys/arm/at91 files.at91rm92 std.at91rm92
Log:
These files apply to all the atmel parts
imp 2006-02-26 07:37:10 UTC
FreeBSD src repository
Modified files:
sbin/fdisk_pc98 fdisk.8 fdisk.c
Log:
Fixes and new features:
o Merge the -I switch from i386 verison to initialize the partition table
to use the maximum amount possible for a single FreeBSD table.
imp 2006-02-26 17:45:35 UTC
FreeBSD src repository
Modified files:
sbin/fdisk_pc98 fdisk.8
Log:
o Bump date (thanks ru)
o Also, fdisk_pc98 appears to support -i, so add it to the man page.
o Ditto -v
o Change the name from PC partition table maintenance program to
imp 2006-02-26 17:51:23 UTC
FreeBSD src repository
Modified files:
sys/modules/de Makefile
Log:
Move de from pci to dev/de
Revision ChangesPath
1.7 +1 -1 src/sys/modules/de/Makefile
___
cvs-all@freebsd.o
imp 2006-02-26 17:52:04 UTC
FreeBSD src repository
Modified files:
sys/dev/de if_de.c if_devar.h
Log:
Repo copy de driver to dev/de, and adjust.
Revision ChangesPath
1.179 +2 -2 src/sys/dev/de/if_de.c
1.43 +3 -3 src/sys/dev/de/if_dev
imp 2006-02-26 17:52:52 UTC
FreeBSD src repository
Removed files:
sys/pci dc21040reg.h if_de.c if_devar.h
Log:
Remove de driver from old location.
Revision ChangesPath
1.8 +0 -583src/sys/pci/dc21040reg.h (dead)
1.179 +0 -5060 src/sys
imp 2006-02-26 17:54:04 UTC
FreeBSD src repository
Modified files:
sys/conf files
Log:
Move de driver to dev/de
Revision ChangesPath
1.1097+1 -1 src/sys/conf/files
___
cvs-all@freebsd.org mailing lis
imp 2006-02-27 19:36:22 UTC
FreeBSD src repository
Modified files:
sys/dev/usb usb_port.h
Log:
Don't forget to free the ifaces when we free the ivars
Revision ChangesPath
1.76 +3 -1 src/sys/dev/usb/usb_port.h
imp 2006-02-27 19:40:38 UTC
FreeBSD src repository
Modified files:
sys/dev/usb usb_port.h
Log:
Since we set the decription, we don't need to also print it. Noticed by: ru@
Revision ChangesPath
1.77 +0 -2 src/sys/dev/usb/usb_port.h
_
imp 2006-03-01 06:31:24 UTC
FreeBSD src repository
Modified files:
sys/dev/usb usb_port.h
Log:
Don't free ifaces yet, should fix a panic
Revision ChangesPath
1.78 +0 -1 src/sys/dev/usb/usb_port.h
___
c
imp 2006-03-01 18:19:33 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/conf files
sys/dev/cardbus cardbus.c cardbus_cis.c cardbusreg.h
cardbusvar.h
sys/modules/cardbus Makefile
Log:
Back out lates
imp 2006-03-03 18:09:37 UTC
FreeBSD src repository
Modified files:
sys/conf options options.i386 options.pc98
Log:
Move XBOX option to options. While it is only valid on i386,
syscons_isa is shared with other machines.
Revision ChangesPath
1.529
imp 2006-03-08 06:31:46 UTC
FreeBSD src repository
Modified files:
sys/vm swap_pager.c vm_fault.c vm_map.c
vm_page.c vm_pageq.c
Log:
Remove leading __ from __(inline|const|signed|volatile). They are
obsolete. This should reduce diff
imp 2006-03-09 01:33:38 UTC
FreeBSD src repository
Modified files:
share/mk bsd.README
Log:
Now that we now spell NO_MAN=xxx MAN=, update the docs.
Submitted by: John Hein
Revision ChangesPath
1.30 +1 -1 src/share/mk/bsd.README
_
imp 2006-03-09 16:24:58 UTC
FreeBSD src repository
Modified files:
share/mk bsd.README
Log:
Revert last change, per ru@'s objection. I misunderstood consensus
Revision ChangesPath
1.31 +1 -1 src/share/mk/bsd.README
__
imp 2006-03-09 16:28:24 UTC
FreeBSD src repository
Modified files:
sys/dev/exca exca.c
Log:
Don't dereference an uninitialized pointer.
Revision ChangesPath
1.24 +4 -1 src/sys/dev/exca/exca.c
___
cvs-al
imp 2006-03-10 18:40:31 UTC
FreeBSD src repository
Modified files:
.UPDATING
Log:
Add note about 'audit' group.
Add note about the '_dhcp' user.
While one is expected to run mergemaster -p before installworld, make
a note of the points where this
imp 2006-03-13 06:18:57 UTC
FreeBSD doc repository
Modified files:
share/pgpkeysimp.key
Log:
New pgp key
Revision ChangesPath
1.5 +29 -28doc/share/pgpkeys/imp.key
___
cvs-all@freebsd.org mailing list
ht
imp 2006-03-13 06:41:01 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
.UPDATING
Log:
MFC: document audit group being added.
Approved by: re@ (scottl)
RevisionChangesPath
1.416.2.21 +6 -1 src/UPDATING
___
imp 2006-03-13 08:08:15 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
.UPDATING
Log:
Kill 'n' accendtially introduced in last commit.
Approved by: re@ (scottl) implied because the 'n' in the last commit wasn't
imp 2006-03-18 01:30:31 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 at91_st.c
Log:
MFp4:
o Disable all interrupts that the ST can generate until we have an ISR
to service them.
o Correct clock calculation to make DELAY the right length...
S
imp 2006-03-18 01:35:49 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 at91.c
Log:
MFp4:
o Add memory barrier to bus space
o Allow for up to 3 IRQs per device
o Move to table driven population of children devices.
o Add support for usb ohci memory
imp 2006-03-18 01:38:25 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 at91rm92reg.h
Log:
MFP4:
GC and fix definitions.
# some of this may have been done by cognet
Revision ChangesPath
1.2 +28 -317 src/sys/arm/at91/at91rm92reg.h
imp 2006-03-18 01:39:23 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 files.at91
Log:
MFP4:
Gratuitously sort alphabetically.
Revision ChangesPath
1.2 +6 -6 src/sys/arm/at91/files.at91
imp 2006-03-18 01:43:25 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 if_ate.c
Log:
MFp4:
o update TODO list
o Better use of busdma
o mark RX dtors as COHERENT. This helps performance a lot by not requiring
so many EXPENSIVE cache flushes. The
imp 2006-03-18 01:43:54 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 kb920x_machdep.c
Log:
Add ohci controller mapping.
Revision ChangesPath
1.2 +30 -19src/sys/arm/at91/kb920x_machdep.c
___
c
imp 2006-03-18 01:45:29 UTC
FreeBSD src repository
Added files:
sys/arm/at91 ohci_atmelarm.c
Log:
MFp4:
Add bus attachment for the ohci device on this chip. The bus and hub
are detected correctly, but the children devices aren't detected
correctly for reason
imp 2006-03-20 21:28:46 UTC
FreeBSD src repository
Modified files:
sbin/mount_nfs mount_nfs.c
Log:
Minor style(9) and KNF elimination as I prepare to fix a bug.
Revision ChangesPath
1.66 +8 -14 src/sbin/mount_nfs/mount_nfs.c
imp 2006-03-24 06:27:34 UTC
FreeBSD src repository
Modified files:
sys/sys clock.h
Log:
The year field is the 4 digit year (eg, 2006), not 'year - 1900' (eg
106). Fix the comment to reflect this.
Revision ChangesPath
1.2 +1 -1 src/sys/sy
imp 2006-03-24 06:33:25 UTC
FreeBSD src repository
Modified files:
sys/dev/aha aha_isa.c aha_mca.c
Log:
Add explicit dependency on cam. This is necessary when both aha.ko and
cam.ko are modules so that aha.ko's undefined symbols can be satisfied by
cam.ko.
imp 2006-03-24 07:35:30 UTC
FreeBSD src repository
Added files:
sys/arm/at91 at91_rtc.c at91_rtcreg.h
Log:
Add RTC support. This may be of dubious value since the RTC is reset
to 1998 every reboot.
Revision ChangesPath
1.1 +250 -0src/sys/arm/a
imp 2006-03-24 07:36:23 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 files.at91
Log:
Add rtc to files.at91
Revision ChangesPath
1.3 +1 -0 src/sys/arm/at91/files.at91
___
cvs-all@freebsd.org
imp 2006-03-24 07:37:56 UTC
FreeBSD src repository
Added files:
sys/arm/at91 at91_pmc.c at91_pmcreg.h at91_pmcvar.h
Log:
Add the sekelton of support for the Power Management Controller.
Revision ChangesPath
1.1 +419 -0src/sys/arm/at91/at91_pmc.c
imp 2006-03-24 07:39:29 UTC
FreeBSD src repository
Added files:
sys/arm/at91 at91_pio.c at91_pioreg.h
Log:
Skeleton PIO support.
Revision ChangesPath
1.1 +268 -0src/sys/arm/at91/at91_pio.c (new)
1.1 +68 -0 src/sys/arm/at91/at91_pioreg
imp 2006-03-24 07:42:33 UTC
FreeBSD src repository
Added files:
sys/arm/at91 at91_ssc.c at91_sscreg.h
Log:
Skeleton support for the SSC device, which implements I2S interfaces,
amoung others.
Revision ChangesPath
1.1 +267 -0src/sys/arm/at91/at9
imp 2006-03-24 07:52:00 UTC
FreeBSD src repository
Modified files:
sys/dev/pccbbpccbb.c
Log:
For each of the voltages that a card might support, make sure that the
socket also supports the voltage. Some XV cards have appeared on the
scene (or cards that report th
imp 2006-03-30 04:12:29 UTC
FreeBSD src repository
Modified files:
sys/dev/pccbbpccbbreg.h
Log:
Add a mask of valid socket events
While I'm hear, fix define to be define.
Revision ChangesPath
1.19 +20 -19src/sys/dev/pccbb/pccbbreg.h
imp 2006-03-30 04:25:45 UTC
FreeBSD src repository
Modified files:
sys/dev/pccbbpccbb.c
Log:
On some laptops, under very high loads, the socket event register read
in the ISR doesn't read the actual socket event register, but instead
reads garbage (usually 0xf
imp 2006-04-04 17:08:40 UTC
FreeBSD src repository
Modified files:
sys/dev/iicbus iic.c
Log:
Replace hard coded '0' with symbolic constant IIC_UNKNOWN to reflect what
we're actually doing.
Revision ChangesPath
1.33 +1 -1 src/sys/dev/iicbus/iic.c
imp 2006-04-04 19:30:47 UTC
FreeBSD src repository
Modified files:
sys/dev/iicbus if_ic.c
Log:
Turn a file that was mostly style(9) compliant to a file that's really close
to being completely style(9). The odd-ball indentation in a few places was
really distracting
imp 2006-04-04 23:29:17 UTC
FreeBSD src repository
Modified files:
sys/dev/iicbus iic.c iicbb.c iicsmb.c
Log:
newbus will zero softc, so no need to duplicate the zeroing here.
Plus a minor formatting nit in nearby code.
Revision ChangesPath
1.34 +1 -7
imp 2006-04-06 04:27:19 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 uart_dev_at91usart.c
Log:
Optimize the TX side of the part by using the PDC to move bytes out to
the wire. This increases the speed considerably. Start to put
infrastructure in place
imp 2006-04-06 04:29:24 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 at91_usartreg.h
Log:
Remove unused bit definitions.
Minor style cleanup while I'm here.
Revision ChangesPath
1.2 +40 -60src/sys/arm/at91/at91_usartreg.h
___
imp 2006-04-06 04:30:23 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 if_ate.c
Log:
Pull in numerous fixes from myself and cognet. With these fixes the
KB9202 eval board is finally stable with a nfs root.
Revision ChangesPath
1.6 +61 -99
imp 2006-04-06 04:31:19 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 at91_twi.c
Log:
Connect twi to the FreeBSD iicbus infrastructure.
Revision ChangesPath
1.2 +177 -166 src/sys/arm/at91/at91_twi.c
imp 2006-04-06 04:32:29 UTC
FreeBSD src repository
Modified files:
sys/arm/at91 at91.c
Log:
Add debug writes in error cases that, in theory, should never happen
Revision ChangesPath
1.4 +5 -2 src/sys/arm/at91/at91.c
_
imp 2006-04-06 04:42:53 UTC
FreeBSD src repository
Modified files:
.access
Log:
Greoge indicates that he'd like to return his commit bit to core for safe
keeping.
Approved by:core@
Revision ChangesPath
1.749 +0 -1 CVSROOT/ac
imp 2006-04-06 05:16:21 UTC
FreeBSD src repository
Modified files:
.access.unclassified
Log:
The following committers have been in the unclassified file and
haven't committed in over 4 years and core hasn't heard from them
recently.. Return their comm
imp 2006-04-06 15:07:43 UTC
FreeBSD src repository
Modified files:
.access
Log:
bbraun has indicated his need for a commit bit is long since past.
Approved by:core@
Revision ChangesPath
1.750 +0 -1 CVSROOT/access
_
imp 2006-04-06 15:09:13 UTC
FreeBSD src repository
Modified files:
.access
Log:
knu has indicated that he doesn't have any src patches in the works,
but if his new job works out, he'll get another src committer to make
the changes. Retire his commit b
imp 2006-04-07 04:45:25 UTC
FreeBSD src repository
Modified files:
.access
Log:
There's no tg account anymore. Remove it from here.
Approved by:core@
Revision ChangesPath
1.752 +0 -1 CVSROOT/access
___
imp 2006-04-07 06:08:47 UTC
FreeBSD src repository
Modified files:
.access
Log:
kjc has indicated that core can put his commit bit into safe keeping
against his future need.
Approved by:core@
Revision ChangesPath
1.753 +0 -1
imp 2006-04-07 06:22:29 UTC
FreeBSD src repository
Modified files:
.access
Log:
ben hasn't committed in over 4 years, and attempts to reach him over
the past week have yielded no response. Retire his commit bit for
safe keeping until we hear back from
imp 2006-04-07 06:23:51 UTC
FreeBSD src repository
Modified files:
.access
Log:
am hasn't made any commits since he was added to this file 32 months
ago. Retire his bit for safe keeping.
Approved by:core@
Revision ChangesPath
1.755
imp 2006-04-07 16:02:38 UTC
FreeBSD src repository
Modified files:
.access
Log:
jedgar says we can take back this bit for safe keeping.
Approved by:core@
Revision ChangesPath
1.756 +0 -1 CVSROOT/access
imp 2006-04-07 16:07:17 UTC
FreeBSD src repository
Modified files:
.access
Log:
gioria has been focusing on docs lately, so he's returing his src bit
to core until he needs it again.
Approved by:core@
Revision ChangesPath
1.757 +
imp 2006-04-07 16:49:11 UTC
FreeBSD src repository
Modified files:
.access
Log:
Take jennifer's commit bit back for safe keeping by [EMAIL PROTECTED] She's
not
replied to my querries about her commit bit. As with all retired commit
bits, a simple me
imp 2006-04-10 19:17:36 UTC
FreeBSD src repository
Modified files:
.access
Log:
mph was mostly a ports committer, and doesn't have time to keep up
with the src commit bit.
Approved by:core@
Revision ChangesPath
1.760 +0 -1 C
imp 2006-04-12 15:55:50 UTC
FreeBSD src repository
Modified files:
.access
Log:
jesper@ has indicated that he won't be needing his commit bit for a
while, so return it to core@ for safe keeping.
Approved by:core@
Revision ChangesPath
imp 2006-04-12 16:08:56 UTC
FreeBSD src repository
Modified files:
.access.unclassified
Log:
After further analysis, semenu, dbaker, reg haven't committed in about
3 years, so reclaim the bits for safe keeping.
Approved by:core@
Revision C
imp 2006-04-12 21:22:44 UTC
FreeBSD src repository
Added files:
sys/boot/arm/at91/boot0 Makefile README arm_init.s
at91rm9200_lowlevel.c
at91rm9200_lowlevel.h lib.c lib.h
linker.cfg main.c xmode
imp 2006-04-12 21:23:36 UTC
FreeBSD src repository
Added files:
sys/boot/arm/at91/inc AT91RM9200.h
Log:
Common register definition for AT91RM9200
Revision ChangesPath
1.1 +2747 -0 src/sys/boot/arm/at91/inc/AT91RM9200.h (new)
___
imp 2006-04-13 17:31:02 UTC
FreeBSD src repository
Modified files:
sys/boot/arm/at91/boot0 main.c
Log:
Need at91rm9200_lowlevel.h for SDRAM_BASE definition.
Revision ChangesPath
1.2 +1 -0 src/sys/boot/arm/at91/boot0/main.c
__
imp 2006-04-13 17:34:23 UTC
FreeBSD src repository
Modified files:
sys/boot/arm/at91/inc AT91RM9200.h
Log:
Merge from p4:
Many places used #define FOO ((unsigned int) 0x23) where a simpler
#define FOO 0x23u would have sufficed. This practice is overly
verbose and ha
imp 2006-04-13 17:39:34 UTC
FreeBSD src repository
Modified files:
sys/boot/arm/at91/boot0 at91rm9200_lowlevel.c
Log:
MFp4:
For 32-bit SDRAM systems, enable D16 to D31 in the PIO controller.
Otherwise they read back as 0x.
Shave 8 bytes from the object size by
imp 2006-04-13 17:44:05 UTC
FreeBSD src repository
Modified files:
sys/boot/arm/at91/boot0 Makefile
Log:
Add commented out define for TSC board's boot0.
Revision ChangesPath
1.2 +1 -0 src/sys/boot/arm/at91/boot0/Makefile
imp 2006-04-15 02:51:54 UTC
FreeBSD src repository
Modified files:
sys/boot/arm/at91/inc AT91RM9200.h
Log:
Fix style nit noticed by bde.
Revision Changes Path
1.3 +1712 -1712 src/sys/boot/arm/at91/inc/AT91RM9200.h
__
imp 2006-04-16 23:16:45 UTC
FreeBSD src repository
Modified files:
sys/dev/pccbbpccbb.c
Log:
Add missing ~. We want all the INVALID bits to be 0... Let's see if this
helps people with their interrupt storm problem on card eject.
Revision ChangesPath
1.
imp 2006-04-19 17:16:49 UTC
FreeBSD src repository
Modified files:
sys/boot/arm/at91/boot0 Makefile main.c
Added files:
sys/boot/arm/at91Makefile Makefile.inc linker.cfg
sys/boot/arm/at91/bootiic Makefile README arm_init.s main.c
sys/boot/arm/at91/bootspi Make
imp 2006-04-19 21:25:55 UTC
FreeBSD src repository
Modified files:
sys/kern subr_rman.c
Log:
r_spare1 and r_spare2 aren't needed. They aren't used. They can't be
accessed from outside of subr_rman.c. Remove them.
Reviewed by: jmg (in theory)
Revisio
imp 2006-04-20 04:10:27 UTC
FreeBSD src repository
Modified files:
sys/i386/i386nexus.c
Log:
Set the rid of the resource we're about to return to the user.
Revision ChangesPath
1.63 +1 -1 src/sys/i386/i386/nexus.c
101 - 200 of 1433 matches
Mail list logo