Re: another compile error

2009-06-10 Thread Yuri Pankov
On Tue, Jun 09, 2009 at 05:00:20PM +0200, DA Forsyth wrote:
> Hiya
> 
> trying to build kernel for 7.2 and get this
> (my earlier problem was my having CFLAGS=... in /etc/src.conf)
> 
> MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72
> cc -c -O -pipe  -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -
> Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -
> Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc  -
> I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -
> DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -
> finline-limit=8000 --param inline-unit-growth=100 --param large-
> function-growth=1000  -mno-align-long-strings -mpreferred-stack-
> boundary=2  -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -
> ffreestanding -Werror  vers.c
> linking kernel.debug
> udbp.o(.text+0x59): In function `ng_udbp_disconnect':
> /usr/src/sys/dev/usb/udbp.c:857: undefined reference to 
> `ng_rmnode_self'
> udbp.o(.text+0xc9): In function `udbp_detach':
> /usr/src/sys/dev/usb/udbp.c:450: undefined reference to 
> `ng_rmnode_self'
> udbp.o(.text+0xde):/usr/src/sys/dev/usb/udbp.c:452: undefined 
> reference to `ng_unref_node'
> udbp.o(.text+0x79e): In function `udbp_attach':
> /usr/src/sys/dev/usb/udbp.c:375: undefined reference to `ng_newtype'
> udbp.o(.text+0x7cc):/usr/src/sys/dev/usb/udbp.c:381: undefined 
> reference to `ng_make_node_common'
> udbp.o(.text+0x813):/usr/src/sys/dev/usb/udbp.c:384: undefined 
> reference to `ng_name_node'
> udbp.o(.text+0x828):/usr/src/sys/dev/usb/udbp.c:385: undefined 
> reference to `ng_unref_node'
> udbp.o(.text+0x993): In function `ng_udbp_rcvmsg':
> /usr/src/sys/dev/usb/udbp.c:705: undefined reference to 
> `M_NETGRAPH_MSG'
> udbp.o(.text+0xa55):/usr/src/sys/dev/usb/udbp.c:733: undefined 
> reference to `ng_address_ID'
> udbp.o(.text+0xa6e):/usr/src/sys/dev/usb/udbp.c:733: undefined 
> reference to `ng_snd_item'
> udbp.o(.text+0xa7d):/usr/src/sys/dev/usb/udbp.c:733: undefined 
> reference to `ng_free_item'
> udbp.o(.text+0xa89):/usr/src/sys/dev/usb/udbp.c:734: undefined 
> reference to `M_NETGRAPH_MSG'
> udbp.o(.text+0xb15): In function `udbp_in_transfer_cb':
> /usr/src/sys/dev/usb/udbp.c:531: undefined reference to 
> `ng_package_data'
> udbp.o(.text+0xb3a):/usr/src/sys/dev/usb/udbp.c:531: undefined 
> reference to `ng_address_hook'
> udbp.o(.text+0xb4e):/usr/src/sys/dev/usb/udbp.c:531: undefined 
> reference to `ng_snd_item'
> udbp.o(.text+0xd33): In function `ng_udbp_rmnode':
> /usr/src/sys/dev/usb/udbp.c:815: undefined reference to 
> `ng_unref_node'
> udbp.o(.text+0xd46):/usr/src/sys/dev/usb/udbp.c:817: undefined 
> reference to `ng_make_node_common'
> udbp.o(.text+0xd7f):/usr/src/sys/dev/usb/udbp.c:820: undefined 
> reference to `ng_name_node'
> udbp.o(.text+0xd90):/usr/src/sys/dev/usb/udbp.c:821: undefined 
> reference to `ng_unref_node'
> udbp.o(.text+0xde3): In function `ng_udbp_rcvdata':
> /usr/src/sys/dev/usb/udbp.c:752: undefined reference to 
> `ng_free_item'
> udbp.o(.rodata+0x20): In function `ng_udbp_connect':
> /usr/src/sys/dev/usb/udbp.c:842: undefined reference to 
> `ng_parse_int32_type'
> udbp.o(.rodata+0x3c): In function `ng_udbp_disconnect':
> /usr/src/sys/dev/usb/udbp.c:853: undefined reference to 
> `ng_parse_struct_type'
> udbp.o(.rodata+0x64):/usr/src/sys/dev/usb/udbp.c:859: undefined 
> reference to `ng_parse_int32_type'
> udbp.o(.rodata+0x70): In function `udbp_detach':
> /usr/src/sys/dev/usb/udbp.c:433: undefined reference to 
> `ng_parse_int32_type'
> *** Error code 1
> 
> Stop in /usr/obj/usr/src/sys/LERGY72.
> *** Error code 1
> 
> 
> --
>DA Fo rsythNetwork Supervisor
> Principal Technical Officer -- Institute for Water Research
> http://www.ru.ac.za/institutes/iwr/

Looks like you are missing `options NETGRAPH' in your kernel config
(check udbp(4), EXAMPLES section).


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


Re: another compile error

2009-06-10 Thread DA Forsyth
On 9 Jun 2009 , Kent Stewart entreated about
 "Re: another compile error":

> > > > trying to build kernel for 7.2 and get this
> > > > (my earlier problem was my having CFLAGS=... in /etc/src.conf)
> > > >
> > > > MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72
> > > > cc -c -O -pipe  -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -

> > Hello,
> >
> >  If you want udbp(4) you have to know that it requires netgraph(4).
> > They are both available as modules and/or kernel config options
> > (actually udbp(4) is a device :) ).
> 
> If that is all it takes, then, I think that GENERIC should mention 
> the "options NETGRAPH" as a requirement for udbp. There are numerous places 
> with "requires miibus" as a comment because a device won't compile without 
> it. A commented line has often been there because it was a work in progress 
> such as ULE was for what seems like years or broken for unknown reasons. 
> GENERIC was always self documenting.

Thanks guys.   having 'options NETGRAPH' is indeed the fix.  There is 
no mention of it being required for udbp in GENERIC, nor in either of 
the NOTES files.  It is mentioned in the man for udbp, which I hadn't 
read (yet), silly me.


--
   DA Fo rsythNetwork Supervisor
Principal Technical Officer -- Institute for Water Research
http://www.ru.ac.za/institutes/iwr/


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


Re: another compile error

2009-06-09 Thread Valentin Bud
On Tue, Jun 9, 2009 at 8:30 PM, Kent Stewart  wrote:

> On Tuesday 09 June 2009 09:54:41 am Valentin Bud wrote:
> > On Tue, Jun 9, 2009 at 7:42 PM, Kent Stewart  wrote:
> > > On Tuesday 09 June 2009 08:00:20 am DA Forsyth wrote:
> > > > Hiya
> > > >
> > > > trying to build kernel for 7.2 and get this
> > > > (my earlier problem was my having CFLAGS=... in /etc/src.conf)
> > > >
> > > > MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72
> > > > cc -c -O -pipe  -std=c99 -g -Wall -Wredundant-decls -Wnested-externs
> -
> > > > Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -
> > > > Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc
>  -
> > > > I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -
> > > > DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -
> > > > finline-limit=8000 --param inline-unit-growth=100 --param large-
> > > > function-growth=1000  -mno-align-long-strings -mpreferred-stack-
> > > > boundary=2  -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -
> > > > ffreestanding -Werror  vers.c
> > > > linking kernel.debug
> > > > udbp.o(.text+0x59): In function `ng_udbp_disconnect':
> > > > /usr/src/sys/dev/usb/udbp.c:857: undefined reference to
> > > > `ng_rmnode_self'
> > > > udbp.o(.text+0xc9): In function `udbp_detach':
> > > > /usr/src/sys/dev/usb/udbp.c:450: undefined reference to
> > > > `ng_rmnode_self'
> > > > udbp.o(.text+0xde):/usr/src/sys/dev/usb/udbp.c:452: undefined
> > > > reference to `ng_unref_node'
> > > > udbp.o(.text+0x79e): In function `udbp_attach':
> > > > /usr/src/sys/dev/usb/udbp.c:375: undefined reference to `ng_newtype'
> > > > udbp.o(.text+0x7cc):/usr/src/sys/dev/usb/udbp.c:381: undefined
> > > > reference to `ng_make_node_common'
> > > > udbp.o(.text+0x813):/usr/src/sys/dev/usb/udbp.c:384: undefined
> > > > reference to `ng_name_node'
> > > > udbp.o(.text+0x828):/usr/src/sys/dev/usb/udbp.c:385: undefined
> > >
> > > I just cvsuped and did a buildworld and a buildkernel. The kernel
> > > compiled without a problem. So, this means that you have probably
> > > modified your kernel
> > > config file until it doesn't work. Start over with GENERIC and leave
> the
> > > comment on udbp.
> > >
> > > Kent
> > >
> > > --
> > > Kent Stewart
> > > Richland, WA
> > >
> > > http://users.owt.com/kstewart/index.html
> > >
> > > ___
> > > freebsd-questions@freebsd.org mailing list
> > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> > > To unsubscribe, send any mail to "
> > > freebsd-questions-unsubscr...@freebsd.org"
> >
> > Hello,
> >
> >  If you want udbp(4) you have to know that it requires netgraph(4).
> > They are both available as modules and/or kernel config options
> > (actually udbp(4) is a device :) ).
>
> If that is all it takes, then, I think that GENERIC should mention
> the "options NETGRAPH" as a requirement for udbp.


Well i agree with you but it *doesn't*. The man page does it:

man 4 udbp:

"It requires netgraph(4) to be available.  This can be done either by
 adding options NETGRAPH to your kernel configuration file, or alterna-
 tively loading netgraph(4) as a module, either from /boot/loader.conf
or
 from the command line, before the udbp module."

v


> There are numerous places
> with "requires miibus" as a comment because a device won't compile without
> it. A commented line has often been there because it was a work in progress
> such as ULE was for what seems like years or broken for unknown reasons.
> GENERIC was always self documenting.
>
> Kent
>
> --
> Kent Stewart
> Richland, WA
>
> http://users.owt.com/kstewart/index.html
>
>


-- 
network warrior since 2005
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: another compile error

2009-06-09 Thread Kent Stewart
On Tuesday 09 June 2009 09:54:41 am Valentin Bud wrote:
> On Tue, Jun 9, 2009 at 7:42 PM, Kent Stewart  wrote:
> > On Tuesday 09 June 2009 08:00:20 am DA Forsyth wrote:
> > > Hiya
> > >
> > > trying to build kernel for 7.2 and get this
> > > (my earlier problem was my having CFLAGS=... in /etc/src.conf)
> > >
> > > MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72
> > > cc -c -O -pipe  -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -
> > > Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -
> > > Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc  -
> > > I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -
> > > DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -
> > > finline-limit=8000 --param inline-unit-growth=100 --param large-
> > > function-growth=1000  -mno-align-long-strings -mpreferred-stack-
> > > boundary=2  -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -
> > > ffreestanding -Werror  vers.c
> > > linking kernel.debug
> > > udbp.o(.text+0x59): In function `ng_udbp_disconnect':
> > > /usr/src/sys/dev/usb/udbp.c:857: undefined reference to
> > > `ng_rmnode_self'
> > > udbp.o(.text+0xc9): In function `udbp_detach':
> > > /usr/src/sys/dev/usb/udbp.c:450: undefined reference to
> > > `ng_rmnode_self'
> > > udbp.o(.text+0xde):/usr/src/sys/dev/usb/udbp.c:452: undefined
> > > reference to `ng_unref_node'
> > > udbp.o(.text+0x79e): In function `udbp_attach':
> > > /usr/src/sys/dev/usb/udbp.c:375: undefined reference to `ng_newtype'
> > > udbp.o(.text+0x7cc):/usr/src/sys/dev/usb/udbp.c:381: undefined
> > > reference to `ng_make_node_common'
> > > udbp.o(.text+0x813):/usr/src/sys/dev/usb/udbp.c:384: undefined
> > > reference to `ng_name_node'
> > > udbp.o(.text+0x828):/usr/src/sys/dev/usb/udbp.c:385: undefined
> >
> > I just cvsuped and did a buildworld and a buildkernel. The kernel
> > compiled without a problem. So, this means that you have probably
> > modified your kernel
> > config file until it doesn't work. Start over with GENERIC and leave the
> > comment on udbp.
> >
> > Kent
> >
> > --
> > Kent Stewart
> > Richland, WA
> >
> > http://users.owt.com/kstewart/index.html
> >
> > ___
> > freebsd-questions@freebsd.org mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> > To unsubscribe, send any mail to "
> > freebsd-questions-unsubscr...@freebsd.org"
>
> Hello,
>
>  If you want udbp(4) you have to know that it requires netgraph(4).
> They are both available as modules and/or kernel config options
> (actually udbp(4) is a device :) ).

If that is all it takes, then, I think that GENERIC should mention 
the "options NETGRAPH" as a requirement for udbp. There are numerous places 
with "requires miibus" as a comment because a device won't compile without 
it. A commented line has often been there because it was a work in progress 
such as ULE was for what seems like years or broken for unknown reasons. 
GENERIC was always self documenting.

Kent

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

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


Re: another compile error

2009-06-09 Thread Valentin Bud
On Tue, Jun 9, 2009 at 7:42 PM, Kent Stewart  wrote:

> On Tuesday 09 June 2009 08:00:20 am DA Forsyth wrote:
> > Hiya
> >
> > trying to build kernel for 7.2 and get this
> > (my earlier problem was my having CFLAGS=... in /etc/src.conf)
> >
> > MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72
> > cc -c -O -pipe  -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -
> > Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -
> > Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc  -
> > I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -
> > DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -
> > finline-limit=8000 --param inline-unit-growth=100 --param large-
> > function-growth=1000  -mno-align-long-strings -mpreferred-stack-
> > boundary=2  -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -
> > ffreestanding -Werror  vers.c
> > linking kernel.debug
> > udbp.o(.text+0x59): In function `ng_udbp_disconnect':
> > /usr/src/sys/dev/usb/udbp.c:857: undefined reference to
> > `ng_rmnode_self'
> > udbp.o(.text+0xc9): In function `udbp_detach':
> > /usr/src/sys/dev/usb/udbp.c:450: undefined reference to
> > `ng_rmnode_self'
> > udbp.o(.text+0xde):/usr/src/sys/dev/usb/udbp.c:452: undefined
> > reference to `ng_unref_node'
> > udbp.o(.text+0x79e): In function `udbp_attach':
> > /usr/src/sys/dev/usb/udbp.c:375: undefined reference to `ng_newtype'
> > udbp.o(.text+0x7cc):/usr/src/sys/dev/usb/udbp.c:381: undefined
> > reference to `ng_make_node_common'
> > udbp.o(.text+0x813):/usr/src/sys/dev/usb/udbp.c:384: undefined
> > reference to `ng_name_node'
> > udbp.o(.text+0x828):/usr/src/sys/dev/usb/udbp.c:385: undefined
>
> I just cvsuped and did a buildworld and a buildkernel. The kernel compiled
> without a problem. So, this means that you have probably modified your
> kernel
> config file until it doesn't work. Start over with GENERIC and leave the
> comment on udbp.
>
> Kent
>
> --
> Kent Stewart
> Richland, WA
>
> http://users.owt.com/kstewart/index.html
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "
> freebsd-questions-unsubscr...@freebsd.org"
>

Hello,

 If you want udbp(4) you have to know that it requires netgraph(4).
They are both available as modules and/or kernel config options
(actually udbp(4) is a device :) ).

a great day,
v

-- 
network warrior since 2005
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: another compile error

2009-06-09 Thread Kent Stewart
On Tuesday 09 June 2009 08:00:20 am DA Forsyth wrote:
> Hiya
>
> trying to build kernel for 7.2 and get this
> (my earlier problem was my having CFLAGS=... in /etc/src.conf)
>
> MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72
> cc -c -O -pipe  -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -
> Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -
> Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc  -
> I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -
> DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -
> finline-limit=8000 --param inline-unit-growth=100 --param large-
> function-growth=1000  -mno-align-long-strings -mpreferred-stack-
> boundary=2  -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -
> ffreestanding -Werror  vers.c
> linking kernel.debug
> udbp.o(.text+0x59): In function `ng_udbp_disconnect':
> /usr/src/sys/dev/usb/udbp.c:857: undefined reference to
> `ng_rmnode_self'
> udbp.o(.text+0xc9): In function `udbp_detach':
> /usr/src/sys/dev/usb/udbp.c:450: undefined reference to
> `ng_rmnode_self'
> udbp.o(.text+0xde):/usr/src/sys/dev/usb/udbp.c:452: undefined
> reference to `ng_unref_node'
> udbp.o(.text+0x79e): In function `udbp_attach':
> /usr/src/sys/dev/usb/udbp.c:375: undefined reference to `ng_newtype'
> udbp.o(.text+0x7cc):/usr/src/sys/dev/usb/udbp.c:381: undefined
> reference to `ng_make_node_common'
> udbp.o(.text+0x813):/usr/src/sys/dev/usb/udbp.c:384: undefined
> reference to `ng_name_node'
> udbp.o(.text+0x828):/usr/src/sys/dev/usb/udbp.c:385: undefined
 
I just cvsuped and did a buildworld and a buildkernel. The kernel compiled 
without a problem. So, this means that you have probably modified your kernel 
config file until it doesn't work. Start over with GENERIC and leave the 
comment on udbp.

Kent

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

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


another compile error

2009-06-09 Thread DA Forsyth
Hiya

trying to build kernel for 7.2 and get this
(my earlier problem was my having CFLAGS=... in /etc/src.conf)

MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72
cc -c -O -pipe  -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -
Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -
Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc  -
I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -
DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -
finline-limit=8000 --param inline-unit-growth=100 --param large-
function-growth=1000  -mno-align-long-strings -mpreferred-stack-
boundary=2  -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -
ffreestanding -Werror  vers.c
linking kernel.debug
udbp.o(.text+0x59): In function `ng_udbp_disconnect':
/usr/src/sys/dev/usb/udbp.c:857: undefined reference to 
`ng_rmnode_self'
udbp.o(.text+0xc9): In function `udbp_detach':
/usr/src/sys/dev/usb/udbp.c:450: undefined reference to 
`ng_rmnode_self'
udbp.o(.text+0xde):/usr/src/sys/dev/usb/udbp.c:452: undefined 
reference to `ng_unref_node'
udbp.o(.text+0x79e): In function `udbp_attach':
/usr/src/sys/dev/usb/udbp.c:375: undefined reference to `ng_newtype'
udbp.o(.text+0x7cc):/usr/src/sys/dev/usb/udbp.c:381: undefined 
reference to `ng_make_node_common'
udbp.o(.text+0x813):/usr/src/sys/dev/usb/udbp.c:384: undefined 
reference to `ng_name_node'
udbp.o(.text+0x828):/usr/src/sys/dev/usb/udbp.c:385: undefined 
reference to `ng_unref_node'
udbp.o(.text+0x993): In function `ng_udbp_rcvmsg':
/usr/src/sys/dev/usb/udbp.c:705: undefined reference to 
`M_NETGRAPH_MSG'
udbp.o(.text+0xa55):/usr/src/sys/dev/usb/udbp.c:733: undefined 
reference to `ng_address_ID'
udbp.o(.text+0xa6e):/usr/src/sys/dev/usb/udbp.c:733: undefined 
reference to `ng_snd_item'
udbp.o(.text+0xa7d):/usr/src/sys/dev/usb/udbp.c:733: undefined 
reference to `ng_free_item'
udbp.o(.text+0xa89):/usr/src/sys/dev/usb/udbp.c:734: undefined 
reference to `M_NETGRAPH_MSG'
udbp.o(.text+0xb15): In function `udbp_in_transfer_cb':
/usr/src/sys/dev/usb/udbp.c:531: undefined reference to 
`ng_package_data'
udbp.o(.text+0xb3a):/usr/src/sys/dev/usb/udbp.c:531: undefined 
reference to `ng_address_hook'
udbp.o(.text+0xb4e):/usr/src/sys/dev/usb/udbp.c:531: undefined 
reference to `ng_snd_item'
udbp.o(.text+0xd33): In function `ng_udbp_rmnode':
/usr/src/sys/dev/usb/udbp.c:815: undefined reference to 
`ng_unref_node'
udbp.o(.text+0xd46):/usr/src/sys/dev/usb/udbp.c:817: undefined 
reference to `ng_make_node_common'
udbp.o(.text+0xd7f):/usr/src/sys/dev/usb/udbp.c:820: undefined 
reference to `ng_name_node'
udbp.o(.text+0xd90):/usr/src/sys/dev/usb/udbp.c:821: undefined 
reference to `ng_unref_node'
udbp.o(.text+0xde3): In function `ng_udbp_rcvdata':
/usr/src/sys/dev/usb/udbp.c:752: undefined reference to 
`ng_free_item'
udbp.o(.rodata+0x20): In function `ng_udbp_connect':
/usr/src/sys/dev/usb/udbp.c:842: undefined reference to 
`ng_parse_int32_type'
udbp.o(.rodata+0x3c): In function `ng_udbp_disconnect':
/usr/src/sys/dev/usb/udbp.c:853: undefined reference to 
`ng_parse_struct_type'
udbp.o(.rodata+0x64):/usr/src/sys/dev/usb/udbp.c:859: undefined 
reference to `ng_parse_int32_type'
udbp.o(.rodata+0x70): In function `udbp_detach':
/usr/src/sys/dev/usb/udbp.c:433: undefined reference to 
`ng_parse_int32_type'
*** Error code 1

Stop in /usr/obj/usr/src/sys/LERGY72.
*** Error code 1


--
   DA Fo rsythNetwork Supervisor
Principal Technical Officer -- Institute for Water Research
http://www.ru.ac.za/institutes/iwr/


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