Displaying 2 results from an estimated 2 matches for "config_hdlc_modul".
Did you mean:
config_hdlc_module
2004 Jun 24
0
-- Serious issues with current CVS?
...nfig.h to get a
driver to install at all (ie the stuff below:)
The previous cvs download from a few weeks ago (June 9th) compiled and
loaded fine.
/* We now use the linux kernel config to detect which options to use */
/* You can still override them below */
/*
#if defined(CONFIG_HDLC) || defined(CONFIG_HDLC_MODULE)
#define CONFIG_ZAPATA_NET
#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,4,20)
#define CONFIG_OLD_HDLC_API
#else
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,3)
#define HDLC_MAINTAINERS_ARE_MORE_STUPID_THAN_I_THOUGHT
#endif
#endif
#endif
#ifdef CONFIG_PPP
#define CONFIG_ZAPATA_PPP
#endif
*/
T...
2004 Jun 30
0
Compile error with CVS HEAD zaptel
...:
zaptel.c:1238: warning: implicit declaration of function `hdlc_close'
It completes but fails to install with modprobe finding unresolved
references.
This error was introduced with the introduction of the second clause of the
statement below in zconfig.h
#if defined(CONFIG_HDLC) || defined(CONFIG_HDLC_MODULE)
========================^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Clearly there is a problem building against the kernel modules in 2.14.18 as
hdlc_close does not exist. There is no problem if I comment out the second
part from and including the || above.
It builds ok against 2.4.23 but I need to keep 2...