DragonFly bugs List (threaded) for 2004-02
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
[
Date Index][
Thread Index]
Re: [head tinderbox] build report (i386)
Hi.
On Fri, Feb 06, 2004 at 04:41:33AM -0500, DragonFly BuildBox wrote:
> TB --- 2004-02-06 08:05:39 - starting HEAD tinderbox run for i386/i386
> TB --- 2004-02-06 08:05:39 - cleaning the sandbox
> TB --- 2004-02-06 08:07:36 - checking out the source tree
> TB --- cd /home/tinderbox/HEAD/i386/i386
> TB --- /usr/bin/cvs -f -R -Q -d/home/dcvs checkout -P -rHEAD src
> TB --- 2004-02-06 08:23:51 - building generic kernel
> TB --- cd /home/tinderbox/HEAD/i386/i386/src
> TB --- /usr/bin/make buildkernel KERNCONF=GENERIC
> >>> Kernel build for GENERIC started on Fri Feb 6 08:23:53 GMT 2004
> >>> Kernel build for GENERIC completed on Fri Feb 6 08:52:11 GMT 2004
> TB --- 2004-02-06 08:52:11 - building TINDERBOX kernel
> TB --- cd /home/tinderbox/HEAD/i386/i386/src
> TB --- /usr/bin/make buildkernel KERNCONF=TINDERBOX
> >>> Kernel build for TINDERBOX started on Fri Feb 6 08:52:12 GMT 2004
> >>> Kernel build for TINDERBOX completed on Fri Feb 6 09:15:51 GMT 2004
> TB --- 2004-02-06 09:15:51 - building LINT kernel
> TB --- cd /home/tinderbox/HEAD/i386/i386/src
> TB --- /usr/bin/make buildkernel KERNCONF=LINT
> >>> Kernel build for LINT started on Fri Feb 6 09:15:52 GMT 2004
> [...]
> pcaudio.o: In function `pca_start':
> pcaudio.o(.text+0x18b): undefined reference to `acquire_timer0'
> pcaudio.o: In function `pca_stop':
> pcaudio.o(.text+0x1c8): undefined reference to `release_timer0'
> pcaudio.o: In function `pca_pause':
> pcaudio.o(.text+0x234): undefined reference to `release_timer0'
> pcaudio.o: In function `pca_continue':
> pcaudio.o(.text+0x276): undefined reference to `acquire_timer0'
> *** Error code 1
Attached patch should fix LINT build by doing the following things:
* remove device pca from LINT, as it's broken by the change in clock code.
* fix function name typo in sys/dev/misc/pps/pps.c
I've only tested with gcc2.
Index: sys/dev/misc/pps/pps.c
===================================================================
RCS file: /home/source/dragonfly/cvs/src/sys/dev/misc/pps/pps.c,v
retrieving revision 1.6
diff -u -r1.6 pps.c
--- sys/dev/misc/pps/pps.c 30 Jan 2004 05:42:15 -0000 1.6
+++ sys/dev/misc/pps/pps.c 6 Feb 2004 12:01:13 -0000
@@ -185,7 +185,7 @@
struct pps_data *sc = DEVTOSOFTC(ppsdev);
sysclock_t count;
- count = cputimer_get_count();
+ count = cputimer_count();
if (!(ppb_rstr(ppbus) & nACK))
return;
if (sc->pps.ppsparam.mode & PPS_ECHOASSERT)
Index: sys/i386/conf/LINT
===================================================================
RCS file: /home/source/dragonfly/cvs/src/sys/i386/conf/LINT,v
retrieving revision 1.19
diff -u -r1.19 LINT
--- sys/i386/conf/LINT 15 Jan 2004 16:20:06 -0000 1.19
+++ sys/i386/conf/LINT 6 Feb 2004 11:30:57 -0000
@@ -1559,7 +1559,7 @@
device gusc0 at isa? port 0x220 irq 5 drq 1 flags 0x13
# Not controlled by `snd'
-device pca0 at isa? port IO_TIMER1
+#device pca0 at isa? port IO_TIMER1
#
# Miscellaneous hardware:
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
[
Date Index][
Thread Index]