Re: FreeBSD 9-STABLE: "sh /etc/rc autoboot" could not finish

2012-05-19 Thread Kevin Oberman
On Sat, May 19, 2012 at 1:08 PM, Lev Serebryakov  wrote:
> Hello, Freebsd-stable.
>
> I've noticed, that after rebuilding system (fresh 9-STABLE, rebuild to
> get latest ffs MFCs) something strange happens on boot:
>
>
> root@blob:/ # ps -ax | grep rc
>   18  v0- IE+   0:00,04 sh /etc/rc autoboot
>  1937   0  S+    0:00,00 grep rc
> root@blob:/ # uptime
>  0:08  up 33 mins, 1 user, load averages: 0,00 0,00 0,00
> root@blob:/ #
>
>  What happens? Why /etc/rc could not finish?

Take a look at 
http://lists.freebsd.org/pipermail/freebsd-stable/2011-December/065198.html
-- 
R. Kevin Oberman, Network Engineer
E-mail: kob6...@gmail.com
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: Make buildkernel fails on /usr/src/sys/dev/ata/atapi-cam.c

2012-05-19 Thread Thomas Mueller
> My daily stable/9 build (& boot) was successful at r235604:

> FreeBSD g1-227.catwhisker.org 9.0-STABLE FreeBSD 9.0-STABLE #162 235604M: Fri 
> May 18 04:39:02 PDT 2012
> +r...@g1-227.catwhisker.org:/usr/obj/usr/src/sys/CANARY  i386

> Peace,
> david
> --
> David H. Wolfskill  da...@catwhisker.org

So maybe I just need to csup again and try again, "make buildworld" followed by 
"make buildkernel"?

Where do you find the number r235604 either in the built-and-installed system 
or the source tree? 

I looked in /usr/src/sys/conf/newvers.sh and some other files.

> That's nice, but do you have 'device ata' in the configuration? It is
> required, even with ATA_CAM.

> Also, the thread states that atapicam is not needed with ATA_CAM. I
> don't have atapicam it in my kernel and my SATA CD/DVD drive works
> just fine.
> --
> R. Kevin Oberman, Network Engineer

I had both 'device ata' and 'device atapicam' in kernel configuration, in 
accordance with online FreeBSD Handbook:

> 19.6.9 Using the ATAPI/CAM Driver
> Contributed by Marc Fonvieille.

> This driver allows ATAPI devices (CD-ROM, CD-RW, DVD drives etc...) to be 
> accessed through the SCSI subsystem, and so allows the use of applications 
> like sysutils/cdrdao or cdrecord(1).

> To use this driver, you will need to add the following line to the 
> /boot/loader.conf file:

> atapicam_load="YES"

> then, reboot your machine.

> Note: If you prefer to statically compile the atapicam(4) support in your 
> kernel, you will have to add this line to your kernel configuration file:

> device atapicam

> You also need the following lines in your kernel configuration file:

> device ata
> device scbus
> device cd
> device pass

> which should already be present. Then rebuild, install your new kernel, 
> and reboot your machine.

But there was nothing about 'options ATA_CAM', which I included.  Maybe you had 
atapicam kernel module which loaded in the absence of 'device atapicam' in 
kernel config?

Now I see in /usr/src/sys/conf/NOTES, ATA_CAM deprecates all ata drivers 
including atapicam.  So maybe I need to delete or put '# ' in front of 'device 
atapicam' in kernel config?  But it worked building 9.0_STABLE #6 from 
9.0_RELEASE.

One other thing I could do would be to exclude module ulpt due to 
idiosyncrasies of HP printers and hplip.

Reason for upgrading to STABLE was spontaneous reboots in 9.0_RELEASE, like 
maybe once in 48 hours, plus modern hardware needing the latest driver updates.

Tom
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


FreeBSD 9-STABLE: "sh /etc/rc autoboot" could not finish

2012-05-19 Thread Lev Serebryakov
Hello, Freebsd-stable.

I've noticed, that after rebuilding system (fresh 9-STABLE, rebuild to
get latest ffs MFCs) something strange happens on boot:


root@blob:/ # ps -ax | grep rc
   18  v0- IE+   0:00,04 sh /etc/rc autoboot
 1937   0  S+0:00,00 grep rc
root@blob:/ # uptime
 0:08  up 33 mins, 1 user, load averages: 0,00 0,00 0,00
root@blob:/ #

  What happens? Why /etc/rc could not finish?

-- 
// Black Lion AKA Lev Serebryakov 

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: Make buildkernel fails on /usr/src/sys/dev/ata/atapi-cam.c

2012-05-19 Thread Kevin Oberman
On Sat, May 19, 2012 at 1:50 AM, Thomas Mueller
 wrote:
>> My daily stable/9 build (& boot) was successful at r235604:
>
>> FreeBSD g1-227.catwhisker.org 9.0-STABLE FreeBSD 9.0-STABLE #162 235604M: 
>> Fri May 18 04:39:02 PDT 2012
>> +r...@g1-227.catwhisker.org:/usr/obj/usr/src/sys/CANARY  i386
>
>> Peace,
>> david
>> --
>> David H. Wolfskill                              da...@catwhisker.org
>
> So maybe I just need to csup again and try again, "make buildworld" followed 
> by "make buildkernel"?
>
> Where do you find the number r235604 either in the built-and-installed system 
> or the source tree?
>
> I looked in /usr/src/sys/conf/newvers.sh and some other files.
>
>> From Marcelo Gondim :
>
>> You are using GENERIC kernel or custom kernel?
>> You have "options         ATA_CAM" in your kernel conf?
>
> It's a custom kernel, config file named SANDY, as in Intel Sandy Bridge.
>
> Sure, I have "options ATA_CAM", believe that is necessary to be able to burn 
> CDs or DVDs with a SATA drive.
>
> That was discussed in a few past threads on questi...@freebsd.org .

That's nice, but do you have 'device ata' in the configuration? It is
required, even with ATA_CAM.

Also, the thread states that atapicam is not needed with ATA_CAM. I
don't have atapicam it in my kernel and my SATA CD/DVD drive works
just fine.
-- 
R. Kevin Oberman, Network Engineer
E-mail: kob6...@gmail.com
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on ia64/ia64

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 14:28:41 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 14:28:41 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 14:28:41 - starting RELENG_8 tinderbox run for ia64/ia64
TB --- 2012-05-19 14:28:41 - cleaning the object tree
TB --- 2012-05-19 14:28:49 - cvsupping the source tree
TB --- 2012-05-19 14:28:49 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_8/ia64/ia64/supfile
TB --- 2012-05-19 14:29:01 - building world
TB --- 2012-05-19 14:29:01 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 14:29:01 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 14:29:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 14:29:01 - SRCCONF=/dev/null
TB --- 2012-05-19 14:29:01 - TARGET=ia64
TB --- 2012-05-19 14:29:01 - TARGET_ARCH=ia64
TB --- 2012-05-19 14:29:01 - TZ=UTC
TB --- 2012-05-19 14:29:01 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 14:29:01 - cd /src
TB --- 2012-05-19 14:29:01 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 14:29:01 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
gzip -cn /src/usr.sbin/mergemaster/mergemaster.8 > mergemaster.8.gz
===> usr.sbin/mfiutil (all)
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfiutil.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_cmd.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_config.c
cc1: warnings being treated as errors
/src/usr.sbin/mfiutil/mfi_config.c: In function 'parse_array':
/src/usr.sbin/mfiutil/mfi_config.c:307: warning: comparison is always true due 
to limited range of data type
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 15:24:24 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 15:24:24 - ERROR: failed to build world
TB --- 2012-05-19 15:24:24 - 2761.80 user 405.77 system 3342.95 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-ia64-ia64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on i386/pc98

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 14:24:42 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 14:24:42 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 14:24:42 - starting RELENG_8 tinderbox run for i386/pc98
TB --- 2012-05-19 14:24:42 - cleaning the object tree
TB --- 2012-05-19 14:24:50 - cvsupping the source tree
TB --- 2012-05-19 14:24:50 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_8/i386/pc98/supfile
TB --- 2012-05-19 14:25:07 - building world
TB --- 2012-05-19 14:25:07 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 14:25:07 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 14:25:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 14:25:07 - SRCCONF=/dev/null
TB --- 2012-05-19 14:25:07 - TARGET=pc98
TB --- 2012-05-19 14:25:07 - TARGET_ARCH=i386
TB --- 2012-05-19 14:25:07 - TZ=UTC
TB --- 2012-05-19 14:25:07 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 14:25:07 - cd /src
TB --- 2012-05-19 14:25:07 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 14:25:07 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
gzip -cn /src/usr.sbin/mergemaster/mergemaster.8 > mergemaster.8.gz
===> usr.sbin/mfiutil (all)
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfiutil.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_cmd.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_config.c
cc1: warnings being treated as errors
/src/usr.sbin/mfiutil/mfi_config.c: In function 'parse_array':
/src/usr.sbin/mfiutil/mfi_config.c:307: warning: comparison of unsigned 
expression >= 0 is always true
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 15:09:32 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 15:09:32 - ERROR: failed to build world
TB --- 2012-05-19 15:09:32 - 2059.41 user 385.24 system 2689.65 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-i386-pc98.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on i386/i386

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 14:21:32 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 14:21:32 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 14:21:32 - starting RELENG_8 tinderbox run for i386/i386
TB --- 2012-05-19 14:21:32 - cleaning the object tree
TB --- 2012-05-19 14:21:40 - cvsupping the source tree
TB --- 2012-05-19 14:21:40 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_8/i386/i386/supfile
TB --- 2012-05-19 14:21:54 - building world
TB --- 2012-05-19 14:21:54 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 14:21:54 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 14:21:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 14:21:54 - SRCCONF=/dev/null
TB --- 2012-05-19 14:21:54 - TARGET=i386
TB --- 2012-05-19 14:21:54 - TARGET_ARCH=i386
TB --- 2012-05-19 14:21:54 - TZ=UTC
TB --- 2012-05-19 14:21:54 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 14:21:54 - cd /src
TB --- 2012-05-19 14:21:54 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 14:21:55 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
gzip -cn /src/usr.sbin/mergemaster/mergemaster.8 > mergemaster.8.gz
===> usr.sbin/mfiutil (all)
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfiutil.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_cmd.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_config.c
cc1: warnings being treated as errors
/src/usr.sbin/mfiutil/mfi_config.c: In function 'parse_array':
/src/usr.sbin/mfiutil/mfi_config.c:307: warning: comparison of unsigned 
expression >= 0 is always true
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 15:06:44 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 15:06:44 - ERROR: failed to build world
TB --- 2012-05-19 15:06:44 - 2087.93 user 380.17 system 2712.35 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-i386-i386.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on amd64/amd64

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 13:35:41 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 13:35:41 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 13:35:41 - starting RELENG_8 tinderbox run for amd64/amd64
TB --- 2012-05-19 13:35:41 - cleaning the object tree
TB --- 2012-05-19 13:35:54 - cvsupping the source tree
TB --- 2012-05-19 13:35:54 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_8/amd64/amd64/supfile
TB --- 2012-05-19 13:36:06 - building world
TB --- 2012-05-19 13:36:06 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 13:36:06 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 13:36:06 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 13:36:06 - SRCCONF=/dev/null
TB --- 2012-05-19 13:36:06 - TARGET=amd64
TB --- 2012-05-19 13:36:06 - TARGET_ARCH=amd64
TB --- 2012-05-19 13:36:06 - TZ=UTC
TB --- 2012-05-19 13:36:06 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 13:36:06 - cd /src
TB --- 2012-05-19 13:36:06 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 13:36:06 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
gzip -cn /src/usr.sbin/mergemaster/mergemaster.8 > mergemaster.8.gz
===> usr.sbin/mfiutil (all)
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfiutil.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_cmd.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_config.c
cc1: warnings being treated as errors
/src/usr.sbin/mfiutil/mfi_config.c: In function 'parse_array':
/src/usr.sbin/mfiutil/mfi_config.c:307: warning: comparison is always true due 
to limited range of data type
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 14:21:31 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 14:21:31 - ERROR: failed to build world
TB --- 2012-05-19 14:21:31 - 2118.19 user 386.95 system 2749.90 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-amd64-amd64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: ntpd couldn't resolve host name on system boot

2012-05-19 Thread Dan Daley


I haven't had a chance to read through this entire thread yet, but 
wanted to post this in case it helps someone.


ntpd was working fine for me for a while, and then I started getting 
this exact same error.  After a few weeks, I finally started 
troubleshooting and it turned out that I had, at some point, commented 
this out in my rc.conf


defaultrouter="192.168.1.1"

Everything else seemed to work fine (I use DHCP, so assume that it 
figured out the router from that).  Once I uncommented that line, ntpd 
started working again.  Maybe the netwait and/or dhcp sync would allow 
ntpd to work without having to specify a default router in rc.conf, but 
I haven't played with that yet.




On 05/18/2012 08:28, Matthew Doughty wrote:

Hello Bjoern,

It's still a problem for me.  Here is a list of my system information:

Hostname freenas.local  FreeNAS Build FreeNAS-8.0.4-RELEASE-p1-x64 (11059)
Platform AMD Athlon(tm) II X2 250 Processor  Memory 8144MB  System Time Fri
May 18 09:07:22 2012  Uptime 9:07AM up 6 mins, 0 users  Load Average 0.00,
0.21, 0.16  OS Version FreeBSD 8.2-RELEASE-p6
Are you refering to the OS version? 9.0 or 8.3?  Looks like I'm using 8.2.

Best regards,
Matthew


On 17 May 2012 16:48, Bjoern A. Zeeb  wrote:


On 17. May 2012, at 15:03 , Matthew Doughty wrote:


Dear Jerermy,

Whilst searching for a solution to a problem, I found your post:


http://lists.freebsd.org/pipermail/freebsd-stable/2011-October/064350.html

Please could you explain how I can implement the netwait script to solve
the problem?  I'm new to freenas/BSD but am willing to try working from

the

Cmd line.

ntpd in head 9.0 and later and 8.3 and later should not exhibit that
problem
anymore as it was fixed.   Could you please tell me if that is not the
case?

/bz

--
Bjoern A. Zeeb You have to have visions!
   It does not matter how good you are. It matters what good you do!





___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: ntpd couldn't resolve host name on system boot

2012-05-19 Thread Dan Daley


I haven't had a chance to read through this entire thread yet, but 
wanted to post this in case it helps someone.


ntpd was working fine for me for a while, and then I started getting 
this exact same error.  After a few weeks, I finally started 
troubleshooting and it turned out that I had, at some point, commented 
this out in my rc.conf


defaultrouter="192.168.1.1"

Everything else seemed to work fine (I use DHCP, so assume that it 
figured out the router from that).  Once I uncommented that line, ntpd 
started working again.  Maybe the netwait and/or dhcp sync would allow 
ntpd to work without having to specify a default router in rc.conf, but 
I haven't played with that yet.




On 05/18/2012 08:28, Matthew Doughty wrote:

Hello Bjoern,

It's still a problem for me.  Here is a list of my system information:

Hostname freenas.local  FreeNAS Build FreeNAS-8.0.4-RELEASE-p1-x64 (11059)
Platform AMD Athlon(tm) II X2 250 Processor  Memory 8144MB  System Time Fri
May 18 09:07:22 2012  Uptime 9:07AM up 6 mins, 0 users  Load Average 0.00,
0.21, 0.16  OS Version FreeBSD 8.2-RELEASE-p6
Are you refering to the OS version? 9.0 or 8.3?  Looks like I'm using 8.2.

Best regards,
Matthew


On 17 May 2012 16:48, Bjoern A. Zeeb  wrote:


On 17. May 2012, at 15:03 , Matthew Doughty wrote:


Dear Jerermy,

Whilst searching for a solution to a problem, I found your post:


http://lists.freebsd.org/pipermail/freebsd-stable/2011-October/064350.html

Please could you explain how I can implement the netwait script to solve
the problem?  I'm new to freenas/BSD but am willing to try working from

the

Cmd line.

ntpd in head 9.0 and later and 8.3 and later should not exhibit that
problem
anymore as it was fixed.   Could you please tell me if that is not the
case?

/bz

--
Bjoern A. Zeeb You have to have visions!
   It does not matter how good you are. It matters what good you do!





___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_7 tinderbox] failure on ia64/ia64

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 11:30:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 11:30:00 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 11:30:00 - starting RELENG_7 tinderbox run for ia64/ia64
TB --- 2012-05-19 11:30:00 - cleaning the object tree
TB --- 2012-05-19 11:30:19 - cvsupping the source tree
TB --- 2012-05-19 11:30:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_7/ia64/ia64/supfile
TB --- 2012-05-19 11:30:53 - building world
TB --- 2012-05-19 11:30:53 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 11:30:53 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 11:30:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 11:30:53 - SRCCONF=/dev/null
TB --- 2012-05-19 11:30:53 - TARGET=ia64
TB --- 2012-05-19 11:30:53 - TARGET_ARCH=ia64
TB --- 2012-05-19 11:30:53 - TZ=UTC
TB --- 2012-05-19 11:30:53 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 11:30:53 - cd /src
TB --- 2012-05-19 11:30:53 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 11:30:53 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_drive.c
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_evt.c
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'mfi_decode_evt':
/src/usr.sbin/mfiutil/mfi_evt.c:366: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:367: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'show_events':
/src/usr.sbin/mfiutil/mfi_evt.c:562: error: 'struct ' has no member 
named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:572: error: 'struct ' has no member 
named 'class'
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 12:18:29 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 12:18:29 - ERROR: failed to build world
TB --- 2012-05-19 12:18:29 - 2420.70 user 354.67 system 2908.59 real


http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-ia64-ia64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_7 tinderbox] failure on amd64/amd64

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 11:30:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 11:30:00 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 11:30:00 - starting RELENG_7 tinderbox run for amd64/amd64
TB --- 2012-05-19 11:30:00 - cleaning the object tree
TB --- 2012-05-19 11:30:20 - cvsupping the source tree
TB --- 2012-05-19 11:30:20 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_7/amd64/amd64/supfile
TB --- 2012-05-19 11:35:49 - building world
TB --- 2012-05-19 11:35:49 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 11:35:49 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 11:35:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 11:35:49 - SRCCONF=/dev/null
TB --- 2012-05-19 11:35:49 - TARGET=amd64
TB --- 2012-05-19 11:35:49 - TARGET_ARCH=amd64
TB --- 2012-05-19 11:35:49 - TZ=UTC
TB --- 2012-05-19 11:35:49 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 11:35:49 - cd /src
TB --- 2012-05-19 11:35:49 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 11:35:49 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_drive.c
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_evt.c
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'mfi_decode_evt':
/src/usr.sbin/mfiutil/mfi_evt.c:366: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:367: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'show_events':
/src/usr.sbin/mfiutil/mfi_evt.c:562: error: 'struct ' has no member 
named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:572: error: 'struct ' has no member 
named 'class'
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 12:14:15 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 12:14:15 - ERROR: failed to build world
TB --- 2012-05-19 12:14:15 - 1834.62 user 347.08 system 2654.88 real


http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-amd64-amd64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_7 tinderbox] failure on i386/i386

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 11:30:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 11:30:00 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 11:30:00 - starting RELENG_7 tinderbox run for i386/i386
TB --- 2012-05-19 11:30:00 - cleaning the object tree
TB --- 2012-05-19 11:30:19 - cvsupping the source tree
TB --- 2012-05-19 11:30:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_7/i386/i386/supfile
TB --- 2012-05-19 11:35:49 - building world
TB --- 2012-05-19 11:35:49 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 11:35:49 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 11:35:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 11:35:49 - SRCCONF=/dev/null
TB --- 2012-05-19 11:35:49 - TARGET=i386
TB --- 2012-05-19 11:35:49 - TARGET_ARCH=i386
TB --- 2012-05-19 11:35:49 - TZ=UTC
TB --- 2012-05-19 11:35:49 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 11:35:49 - cd /src
TB --- 2012-05-19 11:35:49 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 11:35:49 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_drive.c
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_evt.c
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'mfi_decode_evt':
/src/usr.sbin/mfiutil/mfi_evt.c:366: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:367: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'show_events':
/src/usr.sbin/mfiutil/mfi_evt.c:562: error: 'struct ' has no member 
named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:572: error: 'struct ' has no member 
named 'class'
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 12:13:40 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 12:13:40 - ERROR: failed to build world
TB --- 2012-05-19 12:13:40 - 1817.97 user 338.91 system 2619.86 real


http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-i386-i386.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_7 tinderbox] failure on i386/pc98

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 11:30:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 11:30:00 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 11:30:00 - starting RELENG_7 tinderbox run for i386/pc98
TB --- 2012-05-19 11:30:00 - cleaning the object tree
TB --- 2012-05-19 11:30:19 - cvsupping the source tree
TB --- 2012-05-19 11:30:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_7/i386/pc98/supfile
TB --- 2012-05-19 11:35:49 - building world
TB --- 2012-05-19 11:35:49 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 11:35:49 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 11:35:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 11:35:49 - SRCCONF=/dev/null
TB --- 2012-05-19 11:35:49 - TARGET=pc98
TB --- 2012-05-19 11:35:49 - TARGET_ARCH=i386
TB --- 2012-05-19 11:35:49 - TZ=UTC
TB --- 2012-05-19 11:35:49 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 11:35:49 - cd /src
TB --- 2012-05-19 11:35:49 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 11:35:49 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_drive.c
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_evt.c
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'mfi_decode_evt':
/src/usr.sbin/mfiutil/mfi_evt.c:366: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:367: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'show_events':
/src/usr.sbin/mfiutil/mfi_evt.c:562: error: 'struct ' has no member 
named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:572: error: 'struct ' has no member 
named 'class'
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 12:13:20 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 12:13:20 - ERROR: failed to build world
TB --- 2012-05-19 12:13:20 - 1792.79 user 346.03 system 2599.59 real


http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-i386-pc98.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_7 tinderbox] failure on powerpc/powerpc

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 11:30:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 11:30:00 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 11:30:00 - starting RELENG_7 tinderbox run for powerpc/powerpc
TB --- 2012-05-19 11:30:00 - cleaning the object tree
TB --- 2012-05-19 11:30:19 - cvsupping the source tree
TB --- 2012-05-19 11:30:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_7/powerpc/powerpc/supfile
TB --- 2012-05-19 11:30:53 - building world
TB --- 2012-05-19 11:30:53 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 11:30:53 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 11:30:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 11:30:53 - SRCCONF=/dev/null
TB --- 2012-05-19 11:30:53 - TARGET=powerpc
TB --- 2012-05-19 11:30:53 - TARGET_ARCH=powerpc
TB --- 2012-05-19 11:30:53 - TZ=UTC
TB --- 2012-05-19 11:30:53 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 11:30:53 - cd /src
TB --- 2012-05-19 11:30:53 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 11:30:53 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_drive.c
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_evt.c
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'mfi_decode_evt':
/src/usr.sbin/mfiutil/mfi_evt.c:366: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:367: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'show_events':
/src/usr.sbin/mfiutil/mfi_evt.c:562: error: 'struct ' has no member 
named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:572: error: 'struct ' has no member 
named 'class'
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 12:09:07 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 12:09:07 - ERROR: failed to build world
TB --- 2012-05-19 12:09:07 - 1838.38 user 331.53 system 2346.55 real


http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-powerpc-powerpc.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_7 tinderbox] failure on sparc64/sparc64

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 11:30:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 11:30:00 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 11:30:00 - starting RELENG_7 tinderbox run for sparc64/sparc64
TB --- 2012-05-19 11:30:00 - cleaning the object tree
TB --- 2012-05-19 11:30:19 - cvsupping the source tree
TB --- 2012-05-19 11:30:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_7/sparc64/sparc64/supfile
TB --- 2012-05-19 11:30:53 - building world
TB --- 2012-05-19 11:30:53 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 11:30:53 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 11:30:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 11:30:53 - SRCCONF=/dev/null
TB --- 2012-05-19 11:30:53 - TARGET=sparc64
TB --- 2012-05-19 11:30:53 - TARGET_ARCH=sparc64
TB --- 2012-05-19 11:30:53 - TZ=UTC
TB --- 2012-05-19 11:30:53 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 11:30:53 - cd /src
TB --- 2012-05-19 11:30:53 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 11:30:53 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_drive.c
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_evt.c
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'mfi_decode_evt':
/src/usr.sbin/mfiutil/mfi_evt.c:366: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:367: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'show_events':
/src/usr.sbin/mfiutil/mfi_evt.c:562: error: 'struct ' has no member 
named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:572: error: 'struct ' has no member 
named 'class'
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 12:06:55 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 12:06:55 - ERROR: failed to build world
TB --- 2012-05-19 12:06:55 - 1718.91 user 319.09 system 2215.30 real


http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-sparc64-sparc64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: [releng_8 tinderbox] failure on amd64/amd64

2012-05-19 Thread Andriy Gapon
on 19/05/2012 13:10 FreeBSD Tinderbox said the following:
> TB --- 2012-05-19 09:24:53 - tinderbox 2.9 running on 
> freebsd-legacy2.sentex.ca
> TB --- 2012-05-19 09:24:53 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
> FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
> r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
> TB --- 2012-05-19 09:24:53 - starting RELENG_8 tinderbox run for amd64/amd64
> TB --- 2012-05-19 09:24:53 - cleaning the object tree
> TB --- 2012-05-19 09:25:01 - cvsupping the source tree
> TB --- 2012-05-19 09:25:01 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
> /tinderbox/RELENG_8/amd64/amd64/supfile
> TB --- 2012-05-19 09:25:14 - building world
> TB --- 2012-05-19 09:25:14 - CROSS_BUILD_TESTING=YES
> TB --- 2012-05-19 09:25:14 - MAKEOBJDIRPREFIX=/obj
> TB --- 2012-05-19 09:25:14 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
> TB --- 2012-05-19 09:25:14 - SRCCONF=/dev/null
> TB --- 2012-05-19 09:25:14 - TARGET=amd64
> TB --- 2012-05-19 09:25:14 - TARGET_ARCH=amd64
> TB --- 2012-05-19 09:25:14 - TZ=UTC
> TB --- 2012-05-19 09:25:14 - __MAKE_CONF=/dev/null
> TB --- 2012-05-19 09:25:14 - cd /src
> TB --- 2012-05-19 09:25:14 - /usr/bin/make -B buildworld
 World build started on Sat May 19 09:25:14 UTC 2012
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
> [...]
> gzip -cn /src/usr.sbin/mergemaster/mergemaster.8 > mergemaster.8.gz
> ===> usr.sbin/mfiutil (all)
> cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
> -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
> -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
> -Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfiutil.c
> cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
> -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
> -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
> -Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_cmd.c
> cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
> -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
> -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
> -Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_config.c
> cc1: warnings being treated as errors
> /src/usr.sbin/mfiutil/mfi_config.c: In function 'parse_array':
> /src/usr.sbin/mfiutil/mfi_config.c:307: warning: comparison is always true 
> due to limited range of data type
> *** Error code 1
> 

The failing code:
#define MFI_ARRAY_SIZE  288
#define MAX_DRIVES_PER_ARRAY\
((MFI_ARRAY_SIZE - sizeof(struct mfi_array)) / 8)

At present sizeof(struct mfi_array) is exactly 288.

I guess that this is the offending commit: r235625 MFC of head thunderbolt
support for mfi(4).
It seems that this particular snippet is related to the problem:

+#define MFI_MAX_ROW_SIZE 32
 struct mfi_array {
 uint64_tsize;
 uint8_t num_drives;
@@ -1106,7 +1292,7 @@
 uint8_t pd;
 uint8_t slot;
 } encl;
-} pd[0];
+} pd[MFI_MAX_ROW_SIZE];
 } __packed;

I think that with this change MAX_DRIVES_PER_ARRAY should become 
MFI_MAX_ROW_SIZE?

Index: mfi_config.c
===
--- mfi_config.c(revision 235646)
+++ mfi_config.c(working copy)
@@ -212,8 +212,7 @@
 MFI_COMMAND(top, clear, clear_config);

 #defineMFI_ARRAY_SIZE  288
-#defineMAX_DRIVES_PER_ARRAY
\
-   ((MFI_ARRAY_SIZE - sizeof(struct mfi_array)) / 8)
+#defineMAX_DRIVES_PER_ARRAYMFI_MAX_ROW_SIZE

 #defineRT_RAID00
 #defineRT_RAID11
@@ -305,7 +304,7 @@

/* Validate the number of drives for this array. */
if (count >= MAX_DRIVES_PER_ARRAY) {
-   warnx("Too many drives for a single array: max is %zu",
+   warnx("Too many drives for a single array: max is %u",
MAX_DRIVES_PER_ARRAY);
return (EINVAL);
}


-- 
Andriy Gapon
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on sparc64/sparc64

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 10:51:47 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 10:51:47 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 10:51:47 - starting RELENG_8 tinderbox run for sparc64/sparc64
TB --- 2012-05-19 10:51:47 - cleaning the object tree
TB --- 2012-05-19 10:51:54 - cvsupping the source tree
TB --- 2012-05-19 10:51:54 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_8/sparc64/sparc64/supfile
TB --- 2012-05-19 10:52:33 - building world
TB --- 2012-05-19 10:52:33 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 10:52:33 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 10:52:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 10:52:33 - SRCCONF=/dev/null
TB --- 2012-05-19 10:52:33 - TARGET=sparc64
TB --- 2012-05-19 10:52:33 - TARGET_ARCH=sparc64
TB --- 2012-05-19 10:52:33 - TZ=UTC
TB --- 2012-05-19 10:52:33 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 10:52:33 - cd /src
TB --- 2012-05-19 10:52:33 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 10:52:33 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
gzip -cn /src/usr.sbin/mergemaster/mergemaster.8 > mergemaster.8.gz
===> usr.sbin/mfiutil (all)
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfiutil.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_cmd.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_config.c
cc1: warnings being treated as errors
/src/usr.sbin/mfiutil/mfi_config.c: In function 'parse_array':
/src/usr.sbin/mfiutil/mfi_config.c:307: warning: comparison is always true due 
to limited range of data type
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 11:25:44 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 11:25:44 - ERROR: failed to build world
TB --- 2012-05-19 11:25:44 - 1732.38 user 276.94 system 2037.80 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-sparc64-sparc64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on powerpc/powerpc

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 10:29:37 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 10:29:37 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 10:29:37 - starting RELENG_8 tinderbox run for powerpc/powerpc
TB --- 2012-05-19 10:29:37 - cleaning the object tree
TB --- 2012-05-19 10:29:44 - cvsupping the source tree
TB --- 2012-05-19 10:29:44 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_8/powerpc/powerpc/supfile
TB --- 2012-05-19 10:30:00 - building world
TB --- 2012-05-19 10:30:00 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 10:30:00 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 10:30:00 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 10:30:00 - SRCCONF=/dev/null
TB --- 2012-05-19 10:30:00 - TARGET=powerpc
TB --- 2012-05-19 10:30:00 - TARGET_ARCH=powerpc
TB --- 2012-05-19 10:30:00 - TZ=UTC
TB --- 2012-05-19 10:30:00 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 10:30:00 - cd /src
TB --- 2012-05-19 10:30:00 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 10:30:00 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
gzip -cn /src/usr.sbin/mergemaster/mergemaster.8 > mergemaster.8.gz
===> usr.sbin/mfiutil (all)
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfiutil.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_cmd.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_config.c
cc1: warnings being treated as errors
/src/usr.sbin/mfiutil/mfi_config.c: In function 'parse_array':
/src/usr.sbin/mfiutil/mfi_config.c:307: warning: comparison of unsigned 
expression >= 0 is always true
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 11:10:57 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 11:10:57 - ERROR: failed to build world
TB --- 2012-05-19 11:10:57 - 2001.70 user 350.50 system 2480.35 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-powerpc-powerpc.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on ia64/ia64

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 10:11:10 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 10:11:10 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 10:11:10 - starting RELENG_8 tinderbox run for ia64/ia64
TB --- 2012-05-19 10:11:10 - cleaning the object tree
TB --- 2012-05-19 10:11:21 - cvsupping the source tree
TB --- 2012-05-19 10:11:21 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_8/ia64/ia64/supfile
TB --- 2012-05-19 10:11:34 - building world
TB --- 2012-05-19 10:11:34 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 10:11:34 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 10:11:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 10:11:34 - SRCCONF=/dev/null
TB --- 2012-05-19 10:11:34 - TARGET=ia64
TB --- 2012-05-19 10:11:34 - TARGET_ARCH=ia64
TB --- 2012-05-19 10:11:34 - TZ=UTC
TB --- 2012-05-19 10:11:34 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 10:11:34 - cd /src
TB --- 2012-05-19 10:11:34 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 10:11:34 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
gzip -cn /src/usr.sbin/mergemaster/mergemaster.8 > mergemaster.8.gz
===> usr.sbin/mfiutil (all)
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfiutil.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_cmd.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_config.c
cc1: warnings being treated as errors
/src/usr.sbin/mfiutil/mfi_config.c: In function 'parse_array':
/src/usr.sbin/mfiutil/mfi_config.c:307: warning: comparison is always true due 
to limited range of data type
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 11:05:46 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 11:05:46 - ERROR: failed to build world
TB --- 2012-05-19 11:05:46 - 2712.45 user 398.67 system 3276.55 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-ia64-ia64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on mips/mips

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 10:23:41 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 10:23:41 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 10:23:41 - starting RELENG_8 tinderbox run for mips/mips
TB --- 2012-05-19 10:23:41 - cleaning the object tree
TB --- 2012-05-19 10:23:48 - cvsupping the source tree
TB --- 2012-05-19 10:23:48 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_8/mips/mips/supfile
TB --- 2012-05-19 10:24:01 - building world
TB --- 2012-05-19 10:24:01 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 10:24:01 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 10:24:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 10:24:01 - SRCCONF=/dev/null
TB --- 2012-05-19 10:24:01 - TARGET=mips
TB --- 2012-05-19 10:24:01 - TARGET_ARCH=mips
TB --- 2012-05-19 10:24:01 - TZ=UTC
TB --- 2012-05-19 10:24:01 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 10:24:01 - cd /src
TB --- 2012-05-19 10:24:01 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 10:24:02 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
gzip -cn /src/usr.sbin/mergemaster/mergemaster.8 > mergemaster.8.gz
===> usr.sbin/mfiutil (all)
cc -O -pipe -EL -msoft-float -G0 -mno-dsp -mabicalls  -fno-builtin-strftime 
-std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfiutil.c
cc -O -pipe -EL -msoft-float -G0 -mno-dsp -mabicalls  -fno-builtin-strftime 
-std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_cmd.c
cc -O -pipe -EL -msoft-float -G0 -mno-dsp -mabicalls  -fno-builtin-strftime 
-std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_config.c
cc1: warnings being treated as errors
/src/usr.sbin/mfiutil/mfi_config.c: In function 'parse_array':
/src/usr.sbin/mfiutil/mfi_config.c:307: warning: comparison of unsigned 
expression >= 0 is always true
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 10:58:12 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 10:58:12 - ERROR: failed to build world
TB --- 2012-05-19 10:58:12 - 1564.91 user 334.46 system 2071.33 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-mips-mips.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on i386/pc98

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 10:10:30 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 10:10:30 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 10:10:30 - starting RELENG_8 tinderbox run for i386/pc98
TB --- 2012-05-19 10:10:30 - cleaning the object tree
TB --- 2012-05-19 10:10:56 - cvsupping the source tree
TB --- 2012-05-19 10:10:56 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_8/i386/pc98/supfile
TB --- 2012-05-19 10:11:17 - building world
TB --- 2012-05-19 10:11:17 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 10:11:17 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 10:11:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 10:11:17 - SRCCONF=/dev/null
TB --- 2012-05-19 10:11:17 - TARGET=pc98
TB --- 2012-05-19 10:11:17 - TARGET_ARCH=i386
TB --- 2012-05-19 10:11:17 - TZ=UTC
TB --- 2012-05-19 10:11:17 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 10:11:17 - cd /src
TB --- 2012-05-19 10:11:17 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 10:11:18 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
gzip -cn /src/usr.sbin/mergemaster/mergemaster.8 > mergemaster.8.gz
===> usr.sbin/mfiutil (all)
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfiutil.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_cmd.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_config.c
cc1: warnings being treated as errors
/src/usr.sbin/mfiutil/mfi_config.c: In function 'parse_array':
/src/usr.sbin/mfiutil/mfi_config.c:307: warning: comparison of unsigned 
expression >= 0 is always true
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 10:54:52 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 10:54:52 - ERROR: failed to build world
TB --- 2012-05-19 10:54:52 - 2042.97 user 379.65 system 2662.77 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-i386-pc98.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on i386/i386

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 10:07:07 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 10:07:07 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 10:07:07 - starting RELENG_8 tinderbox run for i386/i386
TB --- 2012-05-19 10:07:07 - cleaning the object tree
TB --- 2012-05-19 10:07:15 - cvsupping the source tree
TB --- 2012-05-19 10:07:15 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_8/i386/i386/supfile
TB --- 2012-05-19 10:07:31 - building world
TB --- 2012-05-19 10:07:31 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 10:07:31 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 10:07:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 10:07:31 - SRCCONF=/dev/null
TB --- 2012-05-19 10:07:31 - TARGET=i386
TB --- 2012-05-19 10:07:31 - TARGET_ARCH=i386
TB --- 2012-05-19 10:07:31 - TZ=UTC
TB --- 2012-05-19 10:07:31 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 10:07:31 - cd /src
TB --- 2012-05-19 10:07:31 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 10:07:31 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
gzip -cn /src/usr.sbin/mergemaster/mergemaster.8 > mergemaster.8.gz
===> usr.sbin/mfiutil (all)
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfiutil.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_cmd.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_config.c
cc1: warnings being treated as errors
/src/usr.sbin/mfiutil/mfi_config.c: In function 'parse_array':
/src/usr.sbin/mfiutil/mfi_config.c:307: warning: comparison of unsigned 
expression >= 0 is always true
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 10:51:46 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 10:51:46 - ERROR: failed to build world
TB --- 2012-05-19 10:51:46 - 2069.49 user 375.59 system 2679.73 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-i386-i386.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on amd64/amd64

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 09:24:53 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 09:24:53 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 09:24:53 - starting RELENG_8 tinderbox run for amd64/amd64
TB --- 2012-05-19 09:24:53 - cleaning the object tree
TB --- 2012-05-19 09:25:01 - cvsupping the source tree
TB --- 2012-05-19 09:25:01 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_8/amd64/amd64/supfile
TB --- 2012-05-19 09:25:14 - building world
TB --- 2012-05-19 09:25:14 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 09:25:14 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 09:25:14 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 09:25:14 - SRCCONF=/dev/null
TB --- 2012-05-19 09:25:14 - TARGET=amd64
TB --- 2012-05-19 09:25:14 - TARGET_ARCH=amd64
TB --- 2012-05-19 09:25:14 - TZ=UTC
TB --- 2012-05-19 09:25:14 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 09:25:14 - cd /src
TB --- 2012-05-19 09:25:14 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 09:25:14 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
gzip -cn /src/usr.sbin/mergemaster/mergemaster.8 > mergemaster.8.gz
===> usr.sbin/mfiutil (all)
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfiutil.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_cmd.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_config.c
cc1: warnings being treated as errors
/src/usr.sbin/mfiutil/mfi_config.c: In function 'parse_array':
/src/usr.sbin/mfiutil/mfi_config.c:307: warning: comparison is always true due 
to limited range of data type
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 10:10:29 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 10:10:29 - ERROR: failed to build world
TB --- 2012-05-19 10:10:29 - 2103.92 user 380.39 system 2736.37 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-amd64-amd64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: Make buildkernel fails on /usr/src/sys/dev/ata/atapi-cam.c

2012-05-19 Thread Thomas Mueller
> My daily stable/9 build (& boot) was successful at r235604:

> FreeBSD g1-227.catwhisker.org 9.0-STABLE FreeBSD 9.0-STABLE #162 235604M: Fri 
> May 18 04:39:02 PDT 2012
> +r...@g1-227.catwhisker.org:/usr/obj/usr/src/sys/CANARY  i386

> Peace,
> david
> --
> David H. Wolfskill  da...@catwhisker.org

So maybe I just need to csup again and try again, "make buildworld" followed by 
"make buildkernel"?

Where do you find the number r235604 either in the built-and-installed system 
or the source tree? 

I looked in /usr/src/sys/conf/newvers.sh and some other files.

> From Marcelo Gondim :

> You are using GENERIC kernel or custom kernel?
> You have "options ATA_CAM" in your kernel conf?

It's a custom kernel, config file named SANDY, as in Intel Sandy Bridge.

Sure, I have "options ATA_CAM", believe that is necessary to be able to burn 
CDs or DVDs with a SATA drive.  

That was discussed in a few past threads on questi...@freebsd.org .

Tom
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Fwd: ntpd couldn't resolve host name on system boot

2012-05-19 Thread Scott, Brian

> 
> Matthew,
> 
> Although netwait will probably fix the problem for you, another
> possibility that I have just ran into recently involved DNSSEC
> validation in bind. The problem was that without ntp syncing the time at
> boot (the system doesn't have battery backed time) dns resolution failed
> (root key wasn't valid yet). If dns resolution fails then you can't find
> your time servers. Repeat till you get sick of it.
> 
> Possible solutions include:
> *Don't do dnssec validation
> *Hard code an IP address in your ntp.conf (even a low stratum
> server somewhere)
> *Run a task at startup to brute force your time to something
> reasonable (within a year or two ago) to allow dnssec validation to
> work.
> 
> As I said, you will probably find that netwait_* is all you need and you
> can safely ignore this.
> 
> Brian
> 
> -Original Message-
> From: owner-freebsd-sta...@freebsd.org
> [mailto:owner-freebsd-sta...@freebsd.org] On Behalf Of Matthew Doughty
> Sent: Friday, 18 May 2012 1:03 AM
> To: freebsd-stable@freebsd.org
> Subject: ntpd couldn't resolve host name on system boot
> 
> Dear Jerermy,
> 
> Whilst searching for a solution to a problem, I found your post:
> http://lists.freebsd.org/pipermail/freebsd-stable/2011-October/064350.ht
> ml
> 
> Please could you explain how I can implement the netwait script to solve
> the problem?  I'm new to freenas/BSD but am willing to try working from
> the Cmd line.
> 
> Best regards,
> 
> Matthew
> 
> 
> PS: Here are the messages
> 
> May 14 13:32:59 freenas kernel: SMP: AP CPU #1 Launched!
> 
> May 14 13:32:59 freenas kernel: GEOM: da0s1: geometry does not match
> label (16h,63s != 255h,63s).
> 
> May 14 13:32:59 freenas kernel: GEOM: da0s2: geometry does not match
> label (16h,63s != 255h,63s).
> 
> May 14 13:32:59 freenas kernel: Trying to mount root from
> ufs:/dev/ufs/FreeNASs2a
> 
> May 14 13:32:59 freenas kernel: WARNING: /data was not properly
> dismounted
> 
> May 14 13:32:59 freenas kernel: ZFS filesystem version 4
> 
> May 14 13:32:59 freenas kernel: ZFS storage pool version 15
> 
> May 14 13:33:00 freenas ntpd[1512]: ntpd 4.2.4p5-a (1)
> 
> May 14 13:33:00 freenas root: /etc/rc: WARNING: failed precmd routine
> for vmware_guestd
> 
> May 14 13:33:02 freenas ntpd_initres[1526]: host name not found:
> 0.freebsd.pool.ntp.org
> 
> May 14 13:33:02 freenas ntpd_initres[1526]: couldn't resolve `
> 0.freebsd.pool.ntp.org', giving up on it
> 
> May 14 13:33:02 freenas ntpd_initres[1526]: host name not found:
> 1.freebsd.pool.ntp.org
> 
> May 14 13:33:02 freenas ntpd_initres[1526]: couldn't resolve `
> 1.freebsd.pool.ntp.org', giving up on it
> 
> May 14 13:33:02 freenas ntpd_initres[1526]: host name not found:
> 2.freebsd.pool.ntp.org
> 
> May 14 13:33:02 freenas ntpd_initres[1526]: couldn't resolve `
> 2.freebsd.pool.ntp.org', giving up on it
> ___
> freebsd-stable@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-stable
> To unsubscribe, send any mail to
> "freebsd-stable-unsubscr...@freebsd.org"

**
This message is intended for the addressee named and may contain
privileged information or confidential information or both. If you
are not the intended recipient please delete it and notify the sender.
**
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_7 tinderbox] failure on ia64/ia64

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 07:10:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 07:10:00 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 07:10:00 - starting RELENG_7 tinderbox run for ia64/ia64
TB --- 2012-05-19 07:10:00 - cleaning the object tree
TB --- 2012-05-19 07:10:19 - cvsupping the source tree
TB --- 2012-05-19 07:10:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_7/ia64/ia64/supfile
TB --- 2012-05-19 07:13:13 - building world
TB --- 2012-05-19 07:13:13 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 07:13:13 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 07:13:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 07:13:13 - SRCCONF=/dev/null
TB --- 2012-05-19 07:13:13 - TARGET=ia64
TB --- 2012-05-19 07:13:13 - TARGET_ARCH=ia64
TB --- 2012-05-19 07:13:13 - TZ=UTC
TB --- 2012-05-19 07:13:13 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 07:13:13 - cd /src
TB --- 2012-05-19 07:13:13 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 07:13:13 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_drive.c
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_evt.c
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'mfi_decode_evt':
/src/usr.sbin/mfiutil/mfi_evt.c:366: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:367: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'show_events':
/src/usr.sbin/mfiutil/mfi_evt.c:562: error: 'struct ' has no member 
named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:572: error: 'struct ' has no member 
named 'class'
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 08:01:21 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 08:01:21 - ERROR: failed to build world
TB --- 2012-05-19 08:01:21 - 2434.42 user 360.34 system 3080.70 real


http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-ia64-ia64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_7 tinderbox] failure on amd64/amd64

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 07:10:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 07:10:00 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 07:10:00 - starting RELENG_7 tinderbox run for amd64/amd64
TB --- 2012-05-19 07:10:00 - cleaning the object tree
TB --- 2012-05-19 07:10:19 - cvsupping the source tree
TB --- 2012-05-19 07:10:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_7/amd64/amd64/supfile
TB --- 2012-05-19 07:16:02 - building world
TB --- 2012-05-19 07:16:02 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 07:16:02 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 07:16:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 07:16:02 - SRCCONF=/dev/null
TB --- 2012-05-19 07:16:02 - TARGET=amd64
TB --- 2012-05-19 07:16:02 - TARGET_ARCH=amd64
TB --- 2012-05-19 07:16:02 - TZ=UTC
TB --- 2012-05-19 07:16:02 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 07:16:02 - cd /src
TB --- 2012-05-19 07:16:02 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 07:16:02 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_drive.c
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_evt.c
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'mfi_decode_evt':
/src/usr.sbin/mfiutil/mfi_evt.c:366: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:367: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'show_events':
/src/usr.sbin/mfiutil/mfi_evt.c:562: error: 'struct ' has no member 
named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:572: error: 'struct ' has no member 
named 'class'
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 07:55:06 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 07:55:06 - ERROR: failed to build world
TB --- 2012-05-19 07:55:06 - 1847.71 user 355.49 system 2706.30 real


http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-amd64-amd64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_7 tinderbox] failure on i386/i386

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 07:10:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 07:10:00 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 07:10:00 - starting RELENG_7 tinderbox run for i386/i386
TB --- 2012-05-19 07:10:00 - cleaning the object tree
TB --- 2012-05-19 07:10:19 - cvsupping the source tree
TB --- 2012-05-19 07:10:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_7/i386/i386/supfile
TB --- 2012-05-19 07:16:02 - building world
TB --- 2012-05-19 07:16:02 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 07:16:02 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 07:16:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 07:16:02 - SRCCONF=/dev/null
TB --- 2012-05-19 07:16:02 - TARGET=i386
TB --- 2012-05-19 07:16:02 - TARGET_ARCH=i386
TB --- 2012-05-19 07:16:02 - TZ=UTC
TB --- 2012-05-19 07:16:02 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 07:16:02 - cd /src
TB --- 2012-05-19 07:16:02 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 07:16:02 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_drive.c
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_evt.c
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'mfi_decode_evt':
/src/usr.sbin/mfiutil/mfi_evt.c:366: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:367: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'show_events':
/src/usr.sbin/mfiutil/mfi_evt.c:562: error: 'struct ' has no member 
named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:572: error: 'struct ' has no member 
named 'class'
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 07:54:28 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 07:54:28 - ERROR: failed to build world
TB --- 2012-05-19 07:54:28 - 1833.40 user 344.40 system 2668.31 real


http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-i386-i386.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_7 tinderbox] failure on i386/pc98

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 07:10:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 07:10:00 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 07:10:00 - starting RELENG_7 tinderbox run for i386/pc98
TB --- 2012-05-19 07:10:00 - cleaning the object tree
TB --- 2012-05-19 07:10:20 - cvsupping the source tree
TB --- 2012-05-19 07:10:20 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_7/i386/pc98/supfile
TB --- 2012-05-19 07:16:02 - building world
TB --- 2012-05-19 07:16:02 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 07:16:02 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 07:16:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 07:16:02 - SRCCONF=/dev/null
TB --- 2012-05-19 07:16:02 - TARGET=pc98
TB --- 2012-05-19 07:16:02 - TARGET_ARCH=i386
TB --- 2012-05-19 07:16:02 - TZ=UTC
TB --- 2012-05-19 07:16:02 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 07:16:02 - cd /src
TB --- 2012-05-19 07:16:02 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 07:16:02 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_drive.c
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_evt.c
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'mfi_decode_evt':
/src/usr.sbin/mfiutil/mfi_evt.c:366: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:367: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'show_events':
/src/usr.sbin/mfiutil/mfi_evt.c:562: error: 'struct ' has no member 
named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:572: error: 'struct ' has no member 
named 'class'
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 07:54:14 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 07:54:14 - ERROR: failed to build world
TB --- 2012-05-19 07:54:14 - 1809.77 user 349.21 system 2654.20 real


http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-i386-pc98.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_7 tinderbox] failure on powerpc/powerpc

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 07:10:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 07:10:00 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 07:10:00 - starting RELENG_7 tinderbox run for powerpc/powerpc
TB --- 2012-05-19 07:10:00 - cleaning the object tree
TB --- 2012-05-19 07:10:19 - cvsupping the source tree
TB --- 2012-05-19 07:10:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_7/powerpc/powerpc/supfile
TB --- 2012-05-19 07:13:13 - building world
TB --- 2012-05-19 07:13:13 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 07:13:13 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 07:13:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 07:13:13 - SRCCONF=/dev/null
TB --- 2012-05-19 07:13:13 - TARGET=powerpc
TB --- 2012-05-19 07:13:13 - TARGET_ARCH=powerpc
TB --- 2012-05-19 07:13:13 - TZ=UTC
TB --- 2012-05-19 07:13:13 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 07:13:13 - cd /src
TB --- 2012-05-19 07:13:13 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 07:13:13 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_drive.c
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_evt.c
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'mfi_decode_evt':
/src/usr.sbin/mfiutil/mfi_evt.c:366: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:367: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'show_events':
/src/usr.sbin/mfiutil/mfi_evt.c:562: error: 'struct ' has no member 
named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:572: error: 'struct ' has no member 
named 'class'
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 07:52:17 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 07:52:17 - ERROR: failed to build world
TB --- 2012-05-19 07:52:17 - 1866.34 user 343.58 system 2537.18 real


http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-powerpc-powerpc.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_7 tinderbox] failure on sparc64/sparc64

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 07:10:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 07:10:00 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 07:10:00 - starting RELENG_7 tinderbox run for sparc64/sparc64
TB --- 2012-05-19 07:10:00 - cleaning the object tree
TB --- 2012-05-19 07:10:19 - cvsupping the source tree
TB --- 2012-05-19 07:10:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_7/sparc64/sparc64/supfile
TB --- 2012-05-19 07:13:13 - building world
TB --- 2012-05-19 07:13:13 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 07:13:13 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 07:13:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 07:13:13 - SRCCONF=/dev/null
TB --- 2012-05-19 07:13:13 - TARGET=sparc64
TB --- 2012-05-19 07:13:13 - TARGET_ARCH=sparc64
TB --- 2012-05-19 07:13:13 - TZ=UTC
TB --- 2012-05-19 07:13:13 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 07:13:13 - cd /src
TB --- 2012-05-19 07:13:13 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 07:13:13 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_drive.c
cc -O2 -fno-strict-aliasing -pipe  -fno-builtin-strftime -Wsystem-headers -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/mfiutil/mfi_evt.c
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'mfi_decode_evt':
/src/usr.sbin/mfiutil/mfi_evt.c:366: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:367: error: 'struct mfi_evt_detail' has no 
member named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c: In function 'show_events':
/src/usr.sbin/mfiutil/mfi_evt.c:562: error: 'struct ' has no member 
named 'class'
/src/usr.sbin/mfiutil/mfi_evt.c:572: error: 'struct ' has no member 
named 'class'
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 07:50:05 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 07:50:05 - ERROR: failed to build world
TB --- 2012-05-19 07:50:05 - 1745.99 user 330.20 system 2405.47 real


http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-sparc64-sparc64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on sparc64/sparc64

2012-05-19 Thread FreeBSD Tinderbox
TB --- 2012-05-19 06:30:24 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca
TB --- 2012-05-19 06:30:24 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE 
FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2012-05-19 06:30:24 - starting RELENG_8 tinderbox run for sparc64/sparc64
TB --- 2012-05-19 06:30:24 - cleaning the object tree
TB --- 2012-05-19 06:30:32 - cvsupping the source tree
TB --- 2012-05-19 06:30:32 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_8/sparc64/sparc64/supfile
TB --- 2012-05-19 06:31:16 - building world
TB --- 2012-05-19 06:31:16 - CROSS_BUILD_TESTING=YES
TB --- 2012-05-19 06:31:16 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-05-19 06:31:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-05-19 06:31:16 - SRCCONF=/dev/null
TB --- 2012-05-19 06:31:16 - TARGET=sparc64
TB --- 2012-05-19 06:31:16 - TARGET_ARCH=sparc64
TB --- 2012-05-19 06:31:16 - TZ=UTC
TB --- 2012-05-19 06:31:16 - __MAKE_CONF=/dev/null
TB --- 2012-05-19 06:31:16 - cd /src
TB --- 2012-05-19 06:31:16 - /usr/bin/make -B buildworld
>>> World build started on Sat May 19 06:31:16 UTC 2012
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
gzip -cn /src/usr.sbin/mergemaster/mergemaster.8 > mergemaster.8.gz
===> usr.sbin/mfiutil (all)
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfiutil.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_cmd.c
cc -O2 -pipe  -fno-builtin-strftime -std=gnu99 -fstack-protector 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -c /src/usr.sbin/mfiutil/mfi_config.c
cc1: warnings being treated as errors
/src/usr.sbin/mfiutil/mfi_config.c: In function 'parse_array':
/src/usr.sbin/mfiutil/mfi_config.c:307: warning: comparison is always true due 
to limited range of data type
*** Error code 1

Stop in /src/usr.sbin/mfiutil.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-05-19 07:05:49 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-05-19 07:05:49 - ERROR: failed to build world
TB --- 2012-05-19 07:05:49 - 1772.60 user 304.09 system 2125.26 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-sparc64-sparc64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"