WARN: Attempt to change type of gdc from option to device at /home/jhb/work/freebsd/svn/head/sys/pc98/conf/NOTES:307
Previous type set at /home/jhb/work/freebsd/svn/head/sys/conf/options.pc98:70
WARN: device acpi_aiboost is defined globally but only tested in i386 NOTES
WARN: device acpi_asus is defined globally but only tested in i386 NOTES
WARN: device acpi_dock is defined globally but only tested in i386 NOTES
WARN: device acpi_fujitsu is defined globally but only tested in i386 NOTES
WARN: device acpi_hp is defined globally but only tested in i386 NOTES
WARN: device acpi_ibm is defined globally but only tested in i386 NOTES
WARN: option ACPI_MAX_TASKS is defined globally but never tested
WARN: option ACPI_MAX_THREADS is defined globally but never tested
WARN: device acpi_panasonic is defined globally but only tested in i386 NOTES
WARN: device acpi_sony is defined globally but only tested in i386 NOTES
WARN: device acpi_toshiba is defined globally but only tested in i386 NOTES
WARN: device acpi_video is defined globally but only tested in i386 NOTES
WARN: device acpi_wmi is defined globally but only tested in i386 NOTES
WARN: ad7418 is defined globally but never tested
WARN: ada is defined globally but never tested
WARN: option ADAPTIVE_LOCKMGRS is defined globally but never tested
WARN: adlink is defined globally but never tested
--
John Baldwin
_______________________________________________
freebsd...@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-curre...@freebsd.org"
Sounds like a perfect candidate for src/tools or regression tests.
--
Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- rob...@keltia.freenix.fr
In memoriam to Ondine : http://ondine.keltia.net/
What does "tested" mean in this context? I'm pretty sure some of the
devices/drivers in the list work but that's probably not it :)
>
> WARN: Attempt to change type of gdc from option to device at /home/jhb/work/freebsd/svn/head/sys/pc98/conf/NOTES:307
> Previous type set at /home/jhb/work/freebsd/svn/head/sys/conf/options.pc98:70
> WARN: device acpi_aiboost is defined globally but only tested in i386 NOTES
> WARN: device acpi_asus is defined globally but only tested in i386 NOTES
> WARN: device acpi_dock is defined globally but only tested in i386 NOTES
> WARN: device acpi_fujitsu is defined globally but only tested in i386 NOTES
> WARN: device acpi_hp is defined globally but only tested in i386 NOTES
> WARN: device acpi_ibm is defined globally but only tested in i386 NOTES
> WARN: option ACPI_MAX_TASKS is defined globally but never tested
> WARN: option ACPI_MAX_THREADS is defined globally but never tested
> WARN: device acpi_panasonic is defined globally but only tested in i386 NOTES
> WARN: device acpi_sony is defined globally but only tested in i386 NOTES
> WARN: device acpi_toshiba is defined globally but only tested in i386 NOTES
> WARN: device acpi_video is defined globally but only tested in i386 NOTES
> WARN: device acpi_wmi is defined globally but only tested in i386 NOTES
> WARN: ad7418 is defined globally but never tested
> WARN: ada is defined globally but never tested
> WARN: option ADAPTIVE_LOCKMGRS is defined globally but never tested
> WARN: adlink is defined globally but never tested
>
_______________________________________________
IIUC, it means "listed in NOTES on all arches that it claims to run on".
> > WARN: device acpi_aiboost is defined globally but only tested in i386 NOTES
> > WARN: device acpi_asus is defined globally but only tested in i386 NOTES
> > WARN: device acpi_dock is defined globally but only tested in i386 NOTES
> > WARN: device acpi_fujitsu is defined globally but only tested in i386 NOTES
> > WARN: device acpi_hp is defined globally but only tested in i386 NOTES
> > WARN: device acpi_ibm is defined globally but only tested in i386 NOTES
> > WARN: option ACPI_MAX_TASKS is defined globally but never tested
> > WARN: option ACPI_MAX_THREADS is defined globally but never tested
> > WARN: device acpi_panasonic is defined globally but only tested in i386 NOTES
> > WARN: device acpi_sony is defined globally but only tested in i386 NOTES
> > WARN: device acpi_toshiba is defined globally but only tested in i386 NOTES
> > WARN: device acpi_video is defined globally but only tested in i386 NOTES
> > WARN: device acpi_wmi is defined globally but only tested in i386 NOTES
The bug here is not that they aren't tested outside i386, but that they
are defined globally (although some of them, perhaps even all, are also
valid on amd64)
DES
--
Dag-Erling Smørgrav - d...@des.no
Yes. It means something like 'LINT builds will test this option'.
> > > WARN: device acpi_aiboost is defined globally but only tested in i386 NOTES
> > > WARN: device acpi_asus is defined globally but only tested in i386 NOTES
> > > WARN: device acpi_dock is defined globally but only tested in i386 NOTES
> > > WARN: device acpi_fujitsu is defined globally but only tested in i386 NOTES
> > > WARN: device acpi_hp is defined globally but only tested in i386 NOTES
> > > WARN: device acpi_ibm is defined globally but only tested in i386 NOTES
> > > WARN: option ACPI_MAX_TASKS is defined globally but never tested
> > > WARN: option ACPI_MAX_THREADS is defined globally but never tested
> > > WARN: device acpi_panasonic is defined globally but only tested in i386 NOTES
> > > WARN: device acpi_sony is defined globally but only tested in i386 NOTES
> > > WARN: device acpi_toshiba is defined globally but only tested in i386 NOTES
> > > WARN: device acpi_video is defined globally but only tested in i386 NOTES
> > > WARN: device acpi_wmi is defined globally but only tested in i386 NOTES
>
> The bug here is not that they aren't tested outside i386, but that they
> are defined globally (although some of them, perhaps even all, are also
> valid on amd64)
Yep. Either way it is still "buggy".
--
John Baldwin