Hello! Not sure what I am missing but for some perculiar reason my kernel config doesn't compile, it bails out with: ===> xl (depend) ln -s /usr/obj/usr/src/sys/VORPOL/opt_bdg.h opt_bdg.h @ -> /usr/src/sys machine -> /usr/src/sys/i386/include awk -f @/tools/makeobjops.awk @/dev/mii/miibus_if.m -h awk -f @/tools/makeobjops.awk @/dev/pci/pci_if.m -h awk -f @/tools/makeobjops.awk @/kern/bus_if.m -h awk -f @/tools/makeobjops.awk @/kern/device_if.m -h rm -f .depend mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -I- -I. -I@ -I@/contrib/altq -I@/../include -I/usr/include -I/usr/obj/usr/src/sys/CUSTOM /usr/src/sys/modules/xl/../../pci/if_xl.c 1 error *** Error code 2 1 error *** Error code 2 1 error which I had before when I accidently removed options ether. # # CUSTOM -- Kernel configuration file for FreeBSD/i386 # machine i386 cpu I686_CPU ident CUSTOM options PQ_CACHESIZE=512 options SCHED_4BSD options PREEMPTION options INET options FFS options SOFTUPDATES options UFS_ACL options UFS_DIRHASH options NFSCLIENT options CD9660 options PROCFS options PSEUDOFS options COMPAT_43 options COMPAT_FREEBSD4 options COMPAT_FREEBSD5 options SCSI_DELAY=2000 options KTRACE options SYSVSHM options SYSVMSG options SYSVSEM options _KPOSIX_PRIORITY_SCHEDULING options KBD_INSTALL_CDEV options ADAPTIVE_GIANT options KDB options DDB options SMP device apic options DEVICE_POLLING options HZ=1000 device acpi device isa device pci device agp device ata device atadisk device atapicd device atapicam options ATA_STATIC_ID device scbus device da device cd device pass device npx device atkbdc device atkbd device psm device vga device splash options VESA device sc options MAXCONS=12 options SC_PIXEL_MODE device miibus device rl device loop device mem device io device random device ether device tun device tap device pty device if_bridge device bpf device usb device uhci device ohci device ehci device ugen device uhid device ukbd device umass device ums device sound device snd_cmi device snd_ich device drm device radeondrm options NETGRAPH options NETGRAPH_BLUETOOTH options NETGRAPH_BLUETOOTH_L2CAP options NETGRAPH_BLUETOOTH_SOCKET options NETGRAPH_BLUETOOTH_UBT options NETGRAPH_BLUETOOTH_HCI this is RELENG_6 *just* before BETA3. ___________________________________________________________ To help you stay safe and secure online, we've developed the all new Yahoo! Security Centre. http://uk.security.yahoo.com
Am Sonntag, 4. September 2005 03:15 CEST schrieb L.Edgeworth: [*snip*] Sorry, can't help, i can't see any reason for this in your config file...> > options SMP > device apic > > options DEVICE_POLLING > options HZ=1000AFAIK setting HZ to 1000 isn't nedded on 6.0 and above systems. It's standard. Here's what my non-acpi/apic system (486@133MHz) says: kern.clockrate: { hz = 1000, tick = 1000, profhz = 1024, stathz = 128 } And here from my 1GHz Celeron with acpi and apic: kern.clockrate: { hz = 1000, tick = 1000, profhz = 666, stathz = 133 } Can somebody eplain the profhz to me? Especially why it's higher on the much slower machine... -Harry> > device acpi > > device isa > device pci > device agp > > device ata > device atadisk > device atapicd > device atapicam > options ATA_STATIC_ID > > device scbus > device da > device cd > device pass > > device npx > > device atkbdc > device atkbd > device psm > > device vga > device splash > options VESA > > device sc > options MAXCONS=12 > options SC_PIXEL_MODE > > device miibus > device rl > > device loop > device mem > device io > device random > device ether > device tun > device tap > device pty > device if_bridge > > device bpf > > device usb > device uhci > device ohci > device ehci > device ugen > device uhid > device ukbd > device umass > device ums > > device sound > device snd_cmi > device snd_ich > > device drm > device radeondrm > > options NETGRAPH > options NETGRAPH_BLUETOOTH > options NETGRAPH_BLUETOOTH_L2CAP > options NETGRAPH_BLUETOOTH_SOCKET > options NETGRAPH_BLUETOOTH_UBT > options NETGRAPH_BLUETOOTH_HCI > > this is RELENG_6 *just* before BETA3. > > > > ___________________________________________________________ > To help you stay safe and secure online, we've developed the all new > Yahoo! Security Centre. http://uk.security.yahoo.com > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to > "freebsd-current-unsubscribe@freebsd.org"-------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 187 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-stable/attachments/20050904/7c74ae4a/attachment.bin
On Sun, Sep 04, 2005 at 02:15:56AM +0100, L.Edgeworth wrote:> Hello! > > Not sure what I am missing but for some perculiar reason my kernel > config doesn't compile, it bails out with: > > ===> xl (depend) > ln -s /usr/obj/usr/src/sys/VORPOL/opt_bdg.h opt_bdg.h > @ -> /usr/src/sys > machine -> /usr/src/sys/i386/include > awk -f @/tools/makeobjops.awk @/dev/mii/miibus_if.m -h > awk -f @/tools/makeobjops.awk @/dev/pci/pci_if.m -h > awk -f @/tools/makeobjops.awk @/kern/bus_if.m -h > awk -f @/tools/makeobjops.awk @/kern/device_if.m -h > rm -f .depend > mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -I- -I. -I@ > -I@/contrib/altq -I@/../include -I/usr/include > -I/usr/obj/usr/src/sys/CUSTOM /usr/src/sys/modules/xl/../../pci/if_xl.c > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 errorLooks like you're running make -j. Don't do this when you encounter errors, because they're probably hidden far back in the output. Also, when you cause an error when you modify your kernel config, the logical thing to do is to back out your change, or carefully read the comments in GENERIC and NOTES that will usually tell you why what you did was wrong. Kris -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 187 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-stable/attachments/20050903/91c5253a/attachment.bin