All of lore.kernel.org
 help / color / mirror / Atom feed
* Compile error
@ 2004-07-24 15:55 Don Hughes
  2004-07-25 15:27 ` Mark E. Donaldson
  0 siblings, 1 reply; 50+ messages in thread
From: Don Hughes @ 2004-07-24 15:55 UTC (permalink / raw)
  To: netfilter

I am trying to recompile iptables under SuSE 9.1 
to add the time module and get the following when 
issuing a make:

In file included from 
/usr/src/linux/include/linux/netfilter_ipv4.h:11,
                 from 
/usr/src/linux/include/linux/netfilter_ipv4/ip_tab
les.h:25,
                 from include/libiptc/libiptc.h:6,
                 from include/iptables.h:5,
                 from extensions/libipt_ah.c:8:
/usr/src/linux/include/net/protocol.h:39: warning: 
`struct sk_buff' declared inside parameter list
/usr/src/linux/include/net/protocol.h:39: warning: 
its scope is only this definition or declaration, 
which is probably not what you want
/usr/src/linux/include/net/protocol.h:40: error: 
parse error before "u32"
/usr/src/linux/include/net/protocol.h:40: warning: 
`struct sk_buff' declared inside parameter list
/usr/src/linux/include/net/protocol.h:48: warning: 
`struct sk_buff' declared inside parameter list
/usr/src/linux/include/net/protocol.h:53: warning: 
`struct inet6_skb_parm' declared inside parameter 
list
/usr/src/linux/include/net/protocol.h:53: warning: 
`struct sk_buff' declared inside parameter list
/usr/src/linux/include/net/protocol.h:63: error: 
field `list' has incomplete type
make: *** [extensions/libipt_ah_sh.o] Error 1


I have spent 3 weeks trying to resolve this with 
no luck.  Any help would be appreciated.



..don

support@microtechniques.com
White Plains, NY




^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error
@ 2025-08-05  2:39 刘杨
  2025-08-05 10:56 ` Jan Kiszka
  0 siblings, 1 reply; 50+ messages in thread
From: 刘杨 @ 2025-08-05  2:39 UTC (permalink / raw)
  To: Xenomai

Hi xenomai:
My compilation environment:  kernel 5.15.51   xenomai:  3.3.1  platform: x86_64    gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04)
When i enable CONFIG_XENO_DRIVERS_NET_RTCFG_DEBUG, I compilation failed.  The error log is below. 
#####################################################################
  CC [M]  drivers/xenomai/net/stack/rtcfg/rtcfg_event.o
In file included from ./include/linux/printk.h:582,
                 from ./include/linux/kernel.h:19,
                 from drivers/xenomai/net/stack/rtcfg/rtcfg_event.c:25:
drivers/xenomai/net/stack/rtcfg/rtcfg_event.c: In function ‘rtcfg_do_main_event’:
./include/linux/dynamic_debug.h:131:49: error: expected expression before ‘do’
  131 | #define __dynamic_func_call(id, fmt, func, ...) do {    \
      |                                                 ^~
./include/linux/dynamic_debug.h:152:9: note: in expansion of macro ‘__dynamic_func_call’
  152 |         __dynamic_func_call(__UNIQUE_ID(ddebug), fmt, func, ##__VA_ARGS__)
      |         ^~~~~~~~~~~~~~~~~~~
./include/linux/dynamic_debug.h:162:9: note: in expansion of macro ‘_dynamic_func_call’
  162 |         _dynamic_func_call(fmt, __dynamic_pr_debug,             \
      |         ^~~~~~~~~~~~~~~~~~
./include/linux/printk.h:597:9: note: in expansion of macro ‘dynamic_pr_debug’
  597 |         dynamic_pr_debug(fmt, ##__VA_ARGS__)
      |         ^~~~~~~~~~~~~~~~
./drivers/xenomai/net/stack/include/rtcfg/rtcfg.h:45:33: note: in expansion of macro ‘pr_debug’
   45 |         (rtcfg_debug >= (n)) ? (pr_debug(fmt, ##__VA_ARGS__)) : 0
      |                                 ^~~~~~~~
drivers/xenomai/net/stack/rtcfg/rtcfg_event.c:107:9: note: in expansion of macro ‘RTCFG_DEBUG’
  107 |         RTCFG_DEBUG(3, "RTcfg: %s() rtdev=%d, event=%s, state=%s\n",

I made the following changes and compiled successfully.
diff --git a/kernel/drivers/net/stack/include/rtcfg/rtcfg.h b/kernel/drivers/net/stack/include/rtcfg/rtcfg.h
index eb9ad076e..7e480f792 100644
--- a/kernel/drivers/net/stack/include/rtcfg/rtcfg.h
+++ b/kernel/drivers/net/stack/include/rtcfg/rtcfg.h
@@ -41,8 +41,11 @@ extern int rtcfg_debug;
 /* use 0 for production, 1 for verification, >2 for debug */
 #define RTCFG_DEFAULT_DEBUG_LEVEL 10

-#define RTCFG_DEBUG(n, fmt, ...)                                               \
-       (rtcfg_debug >= (n)) ? (pr_debug(fmt, ##__VA_ARGS__)) : 0
+#define RTCFG_DEBUG(n, fmt, args...) \
+    do { \
+        if (rtcfg_debug >= (n)) \
+            pr_debug(fmt, ##args); \
+    } while (0)
 #else
 #define RTCFG_DEBUG(n, fmt, ...)
 #endif /* CONFIG_RTCFG_DEBUG */

Is my modification correct?
Thanks.

^ permalink raw reply related	[flat|nested] 50+ messages in thread
* RE: compile error
@ 2023-06-05  5:30 Chan Kim
  2023-06-12 21:17 ` Simon Glass
  0 siblings, 1 reply; 50+ messages in thread
From: Chan Kim @ 2023-06-05  5:30 UTC (permalink / raw)
  To: U-Boot Mailing List


Earlier I found this error occurs because during the tool build, it uses
list.h file not in the include/linux directory of u-boot but in my host
computer's /usr/local/include/linux directory. So if I temporarily rename
the /usr/local/include/linux/list.h, u-boot compiles ok.
From https://lists.denx.de/pipermail/u-boot/2015-June/217687.html I found it
is correct to use the include path in my host system during the tool build.
(because it happend during tools/lib/sha1.c.) But I don't have that
hlist_node_list definition in my system header file. What is wrong with my
system? (ubuntu 20.04).

Chan Kim

>-----Original Message-----
>From: Chan Kim <ckim@etri.re.kr>
>Sent: Sunday, June 4, 2023 11:41 PM
>To: U-Boot Mailing List <u-boot@lists.denx.de>
>Subject: compile error
>
>Hello all,
>For commit 26659d42654  (Fri Jun 2 12:13:01 2023 -0400)
>
>When I do 'make qemu_arm64_defconfig' and 'make', I get this compile error.
>
>ckim@ckim-ubuntu:~/u-boot-test/u-boot$ make -j28
>  ENVC    include/generated/env.txt
>  UPD     include/generated/timestamp_autogenerated.h
>  ENVP    include/generated/env.in
>  ENVT    include/generated/environment.h
>  HOSTCC  tools/lib/sha1.o
>  HOSTCC  tools/lib/sha256.o
>  HOSTCC  tools/lib/sha512.o
>In file included from include/watchdog.h:13,
>                 from ./tools/../lib/sha512.c:20,
>                 from tools/lib/sha512.c:1:
>include/cyclic.h:40:20: error: field ??list?? has incomplete type
>   40 |  struct hlist_node list;
>      |                    ^~~~
>In file included from include/watchdog.h:13,
>                 from ./tools/../lib/sha1.c:25,
>                 from tools/lib/sha1.c:1:
>include/cyclic.h:40:20: error: field ??list?? has incomplete type
>   40 |  struct hlist_node list;
>      |                    ^~~~
>In file included from include/watchdog.h:13,
>                 from ./tools/../lib/sha256.c:14,
>                 from tools/lib/sha256.c:1:
>include/cyclic.h:40:20: error: field ??list?? has incomplete type
>   40 |  struct hlist_node list;
>      |                    ^~~~
>make[1]: *** [scripts/Makefile.host:112: tools/lib/sha512.o] Error 1
>make[1]: *** Waiting for unfinished jobs....
>make[1]: *** [scripts/Makefile.host:112: tools/lib/sha1.o] Error 1
>make[1]: *** [scripts/Makefile.host:112: tools/lib/sha256.o] Error 1
>make: *** [Makefile:1853: tools] Error 2
>
>Can anyone please fix it?
>
>Thank you!
>
>Chan Kim





^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error
@ 2023-06-04 14:41 Chan Kim
  2023-06-12 21:17 ` Simon Glass
  0 siblings, 1 reply; 50+ messages in thread
From: Chan Kim @ 2023-06-04 14:41 UTC (permalink / raw)
  To: U-Boot Mailing List

Hello all,
For commit 26659d42654  (Fri Jun 2 12:13:01 2023 -0400)

When I do 'make qemu_arm64_defconfig' and 'make', I get this compile error.

ckim@ckim-ubuntu:~/u-boot-test/u-boot$ make -j28
  ENVC    include/generated/env.txt
  UPD     include/generated/timestamp_autogenerated.h
  ENVP    include/generated/env.in
  ENVT    include/generated/environment.h
  HOSTCC  tools/lib/sha1.o
  HOSTCC  tools/lib/sha256.o
  HOSTCC  tools/lib/sha512.o
In file included from include/watchdog.h:13,
                 from ./tools/../lib/sha512.c:20,
                 from tools/lib/sha512.c:1:
include/cyclic.h:40:20: error: field ??list?? has incomplete type
   40 |  struct hlist_node list;
      |                    ^~~~
In file included from include/watchdog.h:13,
                 from ./tools/../lib/sha1.c:25,
                 from tools/lib/sha1.c:1:
include/cyclic.h:40:20: error: field ??list?? has incomplete type
   40 |  struct hlist_node list;
      |                    ^~~~
In file included from include/watchdog.h:13,
                 from ./tools/../lib/sha256.c:14,
                 from tools/lib/sha256.c:1:
include/cyclic.h:40:20: error: field ??list?? has incomplete type
   40 |  struct hlist_node list;
      |                    ^~~~
make[1]: *** [scripts/Makefile.host:112: tools/lib/sha512.o] Error 1
make[1]: *** Waiting for unfinished jobs....
make[1]: *** [scripts/Makefile.host:112: tools/lib/sha1.o] Error 1
make[1]: *** [scripts/Makefile.host:112: tools/lib/sha256.o] Error 1
make: *** [Makefile:1853: tools] Error 2

Can anyone please fix it?

Thank you!

Chan Kim





^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error
@ 2017-10-24  2:17 liupan1234
  0 siblings, 0 replies; 50+ messages in thread
From: liupan1234 @ 2017-10-24  2:17 UTC (permalink / raw)
  To: dev, Sun

Hi All,


I met an error when compile dpdk 17.08 with cmdline:



make config T=x86_64-native-linuxapp-gcc && make EXTRA_CFLAGS="-fPIC" && make install




an error: bad value (native) for -march= switch




do you know why? my gcc version is 4.8.5






^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error
@ 2013-06-18 13:14 Fikret Alim
  2013-06-18 14:12 ` Gary Thomas
  0 siblings, 1 reply; 50+ messages in thread
From: Fikret Alim @ 2013-06-18 13:14 UTC (permalink / raw)
  To: meta-freescale

[-- Attachment #1: Type: text/plain, Size: 5525 bytes --]

Hello,

I got the following error during compile process. What can be the reason,
how can I solve it?

Thanks&Best Regards,
Fikret

ubuntu@ubuntu:~/projects/fsl-community-bsp/fsl-community-bsp/build$ bitbake
fsl-image-test
Pseudo is not present but is required, building this first before the main
build
Loading cache: 100%
|###############################################################################################################|
ETA:  00:00:00
Loaded 1645 entries from dependency cache.

Build Configuration:
BB_VERSION        = "1.18.0"
BUILD_SYS         = "i686-linux"
NATIVELSBSTRING   = "Ubuntu-12.04"
TARGET_SYS        = "arm-poky-linux-gnueabi"
MACHINE           = "imx6qsabrelite"
DISTRO            = "poky"
DISTRO_VERSION    = "1.4.1"
TUNE_FEATURES     = "armv7a vfp neon"
TARGET_FPU        = "vfp-neon"
meta
meta-yocto        = "(nobranch):e4a0a4c5e419154a34710a1b6c28d4180c6304c3"
meta-oe           = "(nobranch):13ae5105ee30410136beeae66ec41ee4a8a2e2b0"
meta-fsl-arm      = "(nobranch):d31a4e85673874dbc6b42bb5d1e8496810c574cc"
meta-fsl-arm-extra = "(nobranch):5f5a9cfcad223f5a1c623346780510ffcdc012ab"
meta-fsl-demos    = "(nobranch):724cfb929748f47782dea3b1dc412b028f6f3515"

NOTE: Resolving any missing task queue dependencies
NOTE: Preparing runqueue
NOTE: Executing SetScene Tasks
NOTE: Executing RunQueue Tasks
ERROR: Error executing a python function in
/home/ubuntu/projects/fsl-community-bsp/fsl-community-bsp/sources/poky/meta/recipes-devtools/quilt/
quilt-native_0.60.bb:
CalledProcessError: Command 'cp -al
/home/ubuntu/projects/fsl-community-bsp/fsl-community-bsp/build/tmp/work/i686-linux/quilt-native/0.60-r0/sysroot-destdir/home/ubuntu/projects/fsl-community-bsp/fsl-community-bsp/build/tmp/sysroots/i686-linux/*
/home/ubuntu/projects/fsl-community-bsp/fsl-community-bsp/build/tmp/work/i686-linux/quilt-native/0.60-r0/sstate-build-populate-sysroot/i686-linux'
returned non-zero exit status 1 with output cp: cannot create hard link
`/home/ubuntu/projects/fsl-community-bsp/fsl-community-bsp/build/tmp/work/i686-linux/quilt-native/0.60-r0/sstate-build-populate-sysroot/i686-linux/usr/share/quilt/compat/awk'
to
`/home/ubuntu/projects/fsl-community-bsp/fsl-community-bsp/build/tmp/work/i686-linux/quilt-native/0.60-r0/sysroot-destdir/home/ubuntu/projects/fsl-community-bsp/fsl-community-bsp/build/tmp/sysroots/i686-linux/usr/share/quilt/compat/awk':
Operation not permitted


ERROR: The stack trace of python calls that resulted in this
exception/failure was:
ERROR:   File "sstate_task_postfunc", line 10, in <module>
ERROR:
ERROR:   File "sstate_task_postfunc", line 7, in sstate_task_postfunc
ERROR:
ERROR:   File "sstate.bbclass", line 45, in sstate_package
ERROR:
ERROR:   File
"/home/ubuntu/projects/fsl-community-bsp/fsl-community-bsp/sources/poky/meta/lib/oe/path.py",
line 94, in copyhardlinktree
ERROR:     check_output(cmd, shell=True, stderr=subprocess.STDOUT)
ERROR:
ERROR:   File
"/home/ubuntu/projects/fsl-community-bsp/fsl-community-bsp/sources/poky/meta/lib/oe/path.py",
line 155, in check_output
ERROR:     raise CalledProcessError(retcode, cmd, output=output)
ERROR:
ERROR: The code that was being executed was:
ERROR:      0006:        bb.build.exec_func(intercept, d)
ERROR:      0007:    sstate_package(shared_state, d)
ERROR:      0008:
ERROR:      0009:
ERROR:  *** 0010:sstate_task_postfunc(d)
ERROR:      0011:
ERROR: [From file: 'sstate_task_postfunc', lineno: 10, function: <module>]
ERROR:      0003:    shared_state = sstate_state_fromvars(d)
ERROR:      0004:    sstate_install(shared_state, d)
ERROR:      0005:    for intercept in shared_state['interceptfuncs']:
ERROR:      0006:        bb.build.exec_func(intercept, d)
ERROR:  *** 0007:    sstate_package(shared_state, d)
ERROR:      0008:
ERROR:      0009:
ERROR:      0010:sstate_task_postfunc(d)
ERROR:      0011:
ERROR: [From file: 'sstate_task_postfunc', lineno: 7, function:
sstate_task_postfunc]
ERROR:      0041:                srcpath = os.path.join(walkroot, dir)
ERROR:      0042:                dstpath = srcpath.replace(state[1],
sstatebuild + state[0])
ERROR:      0043:                make_relative_symlink(srcpath, dstpath, d)
ERROR:      0044:        bb.debug(2, "Preparing tree %s for packaging at
%s" % (state[1], sstatebuild + state[0]))
ERROR:  *** 0045:        oe.path.copyhardlinktree(state[1], sstatebuild +
state[0])
ERROR:      0046:
ERROR:      0047:    workdir = d.getVar('WORKDIR', True)
ERROR:      0048:    for plain in ss['plaindirs']:
ERROR:      0049:        pdir = plain.replace(workdir, sstatebuild)
ERROR: [From file: 'sstate.bbclass', lineno: 45, function: sstate_package]
ERROR: Function failed: sstate_task_postfunc
ERROR: Logfile of failure stored in:
/home/ubuntu/projects/fsl-community-bsp/fsl-community-bsp/build/tmp/work/i686-linux/quilt-native/0.60-r0/temp/log.do_populate_sysroot.13142
ERROR: Task 10
(/home/ubuntu/projects/fsl-community-bsp/fsl-community-bsp/sources/poky/meta/recipes-devtools/quilt/
quilt-native_0.60.bb, do_populate_sysroot) failed with exit code '1'
NOTE: Tasks Summary: Attempted 23 tasks of which 22 didn't need to be rerun
and 1 failed.
No currently running tasks (7 of 63)

Summary: 1 task failed:

/home/ubuntu/projects/fsl-community-bsp/fsl-community-bsp/sources/poky/meta/recipes-devtools/quilt/
quilt-native_0.60.bb, do_populate_sysroot
Summary: There were 43 ERROR messages shown, returning a non-zero exit code.

[-- Attachment #2: Type: text/html, Size: 6227 bytes --]

^ permalink raw reply	[flat|nested] 50+ messages in thread
* Compile Error
@ 2009-12-18  2:00 陈洁丹
  2009-12-18 14:35 ` Steve Grubb
  0 siblings, 1 reply; 50+ messages in thread
From: 陈洁丹 @ 2009-12-18  2:00 UTC (permalink / raw)
  To: linux-audit


[-- Attachment #1.1: Type: text/plain, Size: 860 bytes --]

Hello ,Everyone
I changed to use audit-1.7.17
while compiling ,I have some problem , Here is the error message

zos-remote-plugin.c:39:18: error: lber.h: No such file or directory
In file included from zos-remote-log.h:27,
                 from zos-remote-plugin.c:42:

zos-remote-ldap.h:283: error: expected specifier-qualifier-list before
'LDAP'
zos-remote-ldap.h:309: error: expected declaration specifiers or '...'
before 'BerElement'
Do I need to install ldap-devel.
when I tried to install , I have other problem such as dependency and
confict.
It's really messy....

Do I really need to install ldap-devel to continue compiling?
Thanks again


Jeedan
-----------------------------
陈洁丹   北京邮电大学软件学院
地 址:  北京邮电大学学二D12寝室
邮 编:  100876
Email:   jeedan.chen@gmail.com
---------------------------------

[-- Attachment #1.2: Type: text/html, Size: 1730 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 50+ messages in thread
* Compile Error
@ 2009-12-17  6:22 陈洁丹
  2009-12-17 11:42 ` Steve Grubb
  0 siblings, 1 reply; 50+ messages in thread
From: 陈洁丹 @ 2009-12-17  6:22 UTC (permalink / raw)
  To: linux-audit


[-- Attachment #1.1: Type: text/plain, Size: 458 bytes --]

Hello, everyboby.
while I'm compiling the soucecode of audit-2.0.1 under opensuse 11.0
I come across some error.
Here it's the message

In file included from gen_tables.c:76:
msg_typetab.h:103: error: 'AUDIT_BPRM_FCAPS' undeclared here (not in a
function)
msg_typetab.h:104: error: 'AUDIT_CAPSET' undeclared here (not in a function)


I search the Internet , but  there is no solution.
Do I need to add other library? which one?

Hoping for your help.Thanks

[-- Attachment #1.2: Type: text/html, Size: 640 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 50+ messages in thread
* Compile error
@ 2009-08-04  5:25 Marko Saukko
  2009-08-04 16:22 ` Shane Bryan
  0 siblings, 1 reply; 50+ messages in thread
From: Marko Saukko @ 2009-08-04  5:25 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 495 bytes --]

Hi,

I'm getting following error when compiling the latest git version with
gcc (Ubuntu 4.3.3-5ubuntu4) 4.3.3.

cc1: warnings being treated as errors
sim.c: In function ‘sim_op_retrieve_cb’:
sim.c:347: error: ignoring return value of ‘write’, declared with
attribute warn_unused_result
sim.c: In function ‘sim_op_info_cb’:
sim.c:473: error: ignoring return value of ‘write’, declared with
attribute warn_unused_result
make[2]: *** [sim.o] Error 1

Regards,
Marko

^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error.
@ 2009-03-18  1:17 Dennis Kavadas
  2009-03-18  1:24 ` Julian Calaby
  0 siblings, 1 reply; 50+ messages in thread
From: Dennis Kavadas @ 2009-03-18  1:17 UTC (permalink / raw)
  To: linux-wireless

hi all

i'm currently running a CentOS5 server with kernel version 2.6.18-92.1.22.el5

i've downloaded
http://wireless.kernel.org/download/compat-wireless-2.6/compat-wireless-old.tar.bz2
and when trying to complie i get the below error.

--snip
/usr/local/src/compat-wireless-2.6-old/include/linux/compat_autoconf.h:10:2:
error: #error Compat-wireless requirement: Linux >= 2,6,21
In file included from <command line>:1:
--snip

i'm sure i downloaded the correct driver version as i attempted the
download and compile a few times.

any suggestions ?

^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error
@ 2008-02-18  2:38 Zhao, Yunfeng
  2008-02-18 10:16 ` Avi Kivity
  0 siblings, 1 reply; 50+ messages in thread
From: Zhao, Yunfeng @ 2008-02-18  2:38 UTC (permalink / raw)
  To: kvm-devel


[-- Attachment #1.1: Type: text/plain, Size: 910 bytes --]

Today's IA32e KVM build fails, here is the error message:

libqemu.a(kvm-tpr-opt.o): In function `enable_vapic':

/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20080218000132559/kvm-use
rspace/qemu/kvm-tpr-opt.c:232: undefined reference to `kvm_enable_vapic'

libqemu.a(kvm-tpr-opt.o): In function `kvm_tpr_vcpu_start':

/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20080218000132559/kvm-use
rspace/qemu/kvm-tpr-opt.c:302: undefined reference to
`kvm_enable_tpr_access_reporting'

collect2: ld returned 1 exit status

make[2]: *** [qemu-system-x86_64] Error 1

make[2]: Leaving directory
`/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20080218000132559/kvm-us
erspace/qemu/x86_64-softmmu'

make[1]: *** [subdir-x86_64-softmmu] Error 2

make[1]: Leaving directory
`/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20080218000132559/kvm-us
erspace/qemu'

make: *** [qemu] Error 2


[-- Attachment #1.2: Type: text/html, Size: 3692 bytes --]

[-- Attachment #2: Type: text/plain, Size: 228 bytes --]

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

[-- Attachment #3: Type: text/plain, Size: 158 bytes --]

_______________________________________________
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel

^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error
@ 2008-01-09  2:37 Zhao, Yunfeng
       [not found] ` <10EA09EFD8728347A513008B6B0DA77A029F4E20-wq7ZOvIWXbNpB2pF5aRoyrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
  0 siblings, 1 reply; 50+ messages in thread
From: Zhao, Yunfeng @ 2008-01-09  2:37 UTC (permalink / raw)
  To: kvm-devel

Today's tip fails to compile with following error messages:


/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20080109010121401/kvm-use
rspace/qemu/../libkvm  -DCONFIG_X86 -Wall -O2 -g -fno-strict-aliasing
-I.
-I/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20080109010121401/kvm-u
serspace/qemu -MMD -MP -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
-D_LARGEFILE_SOURCE
-I/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20080109010121401/kvm-u
serspace/qemu/slirp -DQEMU_IMG    -c -o qemu-img-block-raw-posix.o
block-raw-posix.c
In file included from /usr/include/linux/cdrom.h:14,
                 from block-raw-posix.c:52:
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20080109010121401/kvm-use
rspace/qemu/../libkvm/asm/byteorder.h:9: error: syntax error before
"__u64"
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20080109010121401/kvm-use
rspace/qemu/../libkvm/asm/byteorder.h:15: error: syntax error before
"__u32"
make[1]: *** [qemu-img-block-raw-posix.o] Error 1
make[1]: Leaving directory
`/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20080109010121401/kvm-us
erspace/qemu'
make: *** [qemu] Error 2

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace

^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error
@ 2007-09-10  3:03 VictorLai
  0 siblings, 0 replies; 50+ messages in thread
From: VictorLai @ 2007-09-10  3:03 UTC (permalink / raw)
  To: openembedded-devel



Hi, I am trying to setup openembedded environment. I got the following
error. Please provide some suggestion.

-----------------------------------------------------------------------------------------------------------
NOTE: Handling BitBake files: / (4640/4640) [100 %]
NOTE: Parsing finished. 4422 cached, 0 parsed, 218 skipped, 0 masked.
NOTE: build 200709080523: started

OE Build Configuration:
BB_VERSION     = "1.8.8"
OE_REVISION    = "e672e671c803c6418e7dafffe4c149fa8480620a"
TARGET_ARCH    = "arm"
TARGET_OS      = "linux-gnueabi"
MACHINE        = "akita"
DISTRO         = "angstrom"
DISTRO_VERSION = "2007.9-test-20070907"
TARGET_FPU     = "soft"

NOTE: Resolving missing task queue dependencies
NOTE: preferred version 2.5 of glibc not available (for item
virtual/arm-angstrom-linux-gnueabi-libc-for-gcc)
NOTE: preferred version 0.5.2+svn20070907 of osb-nrcit not available (for
item osb-nrcit)
NOTE: preferred version 0.5.2+svn20070907 of osb-nrcore not available (for
item osb-nrcore)
NOTE: preferred version 0.5.2+svn20070907 of osb-jscore not available (for
item osb-jscore)
NOTE: Preparing runqueue
NOTE: Executing runqueue
NOTE: Running task 2392 of 3655 (ID: 441,
/OE/org.openembedded.dev/packages/angstrom/angstrom-version.bb, do_fetch)
NOTE: Running task 2393 of 3655 (ID: 440,
/OE/org.openembedded.dev/packages/angstrom/angstrom-version.bb, do_unpack)
NOTE: Running task 2394 of 3655 (ID: 2792,
/OE/org.openembedded.dev/packages/gpe-mini-browser/gpe-mini-browser_0.21.bb,
 do_configure)
NOTE: package gpe-mini-browser-0.21: started
NOTE: package gpe-mini-browser-0.21-r0: task do_configure: started
ERROR: function do_configure failed
ERROR: log data follows
(/OE/org.openembedded.dev/tmp/work/armv5te-angstrom-linux-gnueabi/gpe-mini-browser-0.21-r0/temp/log.do_configure.22942)
| automake (GNU automake) 1.9.3
| Written by Tom Tromey <tromey@redhat.com>.
|
| Copyright 2004 Free Software Foundation, Inc.
| This is free software; see the source for copying conditions.  There is
NO
| warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.
| AUTOV is 1.9
| NOTE: Executing glib-gettextize --force --copy
| Copying file mkinstalldirs
| Copying file po/Makefile.in.in
|
| Please add the files
|   codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
|   progtest.m4
| from the /OE/org.openembedded.dev/tmp/staging/i686-linux/share/aclocal
directory to your autoconf macro directory
| or directly to your aclocal.m4 file.
| You will also need config.guess and config.sub, which you can get from
| ftp://ftp.gnu.org/pub/gnu/config/.
|
| NOTE: Executing intltoolize --copy --force --automake
| NOTE: Executing autoreconf --verbose --install --force
--exclude=autopoint -I
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal-1.9
 -I
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal
| autoreconf: Entering directory `.'
| autoreconf: configure.ac: not using Gettext
| autoreconf: running: aclocal -I
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal-1.9
 -I
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal
 --force
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:45:
 warning: underquoted definition of AC_LBL_C_INIT
|   run info '(automake)Extending aclocal'
|   or see
http://sources.redhat.com/automake/automake.html#Extending-aclocal
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:172:
 warning: underquoted definition of AC_LBL_C_INLINE
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:228:
 warning: underquoted definition of AC_LBL_LIBPCAP
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:296:
 warning: underquoted definition of AC_LBL_TYPE_SIGNAL
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:326:
 warning: underquoted definition of AC_LBL_FIXINCLUDES
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:372:
 warning: underquoted definition of AC_LBL_LEX_AND_YACC
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:425:
 warning: underquoted definition of AC_LBL_UNION_WAIT
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:454:
 warning: underquoted definition of AC_LBL_SOCKADDR_SA_LEN
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:479:
 warning: underquoted definition of AC_LBL_SOCKADDR_STORAGE
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:512:
 warning: underquoted definition of AC_LBL_HP_PPA_INFO_T_DL_MODULE_ID_1
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:538:
 warning: underquoted definition of AC_LBL_HAVE_RUN_PATH
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:564:
 warning: underquoted definition of AC_LBL_CHECK_TYPE
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:593:
 warning: underquoted definition of AC_LBL_UNALIGNED_ACCESS
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:698:
 warning: underquoted definition of AC_LBL_DEVEL
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:828:
 warning: underquoted definition of AC_LBL_LIBRARY_NET
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:851:
 warning: underquoted definition of AC_C___ATTRIBUTE__
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:889:
 warning: underquoted definition of AC_LBL_TPACKET_STATS
|
/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/audiofile.m4:12:
 warning: underquoted definition of AM_PATH_AUDIOFILE
| autoreconf: configure.ac: tracing
| autoreconf: configure.ac: not using Libtool
| autoreconf: running:
/OE/org.openembedded.dev/tmp/staging/i686-linux/bin/autoconf
--include=/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal-1.9

--include=/OE/org.openembedded.dev/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal
 --force --warnings=cross
| autoreconf: configure.ac: not using Autoheader
| autoreconf: running: automake --foreign --add-missing --copy
--force-missing --warnings=cross
| automake: unknown warning category `cross'
| autoreconf: running: gnu-configize
| autoreconf: Leaving directory `.'
| NOTE: Running
/OE/org.openembedded.dev/tmp/work/armv5te-angstrom-linux-gnueabi/gpe-mini-browser-0.21-r0/gpe-mini-browser-0.21
/configure                   --build=i686-linux
--host=arm-angstrom-linux-gnueabi
--target=arm-angstrom-linux-gnueabi                     --prefix=/usr
--exec_prefix=/usr               --bindir=/usr/bin
--sbindir=/usr/sbin                     --libexecdir=/usr/libexec
--datadir=/usr/share                    --sysconfdir=/etc
--sharedstatedir=/usr/com               --localstatedir=/var
--libdir=/usr/lib      --includedir=/usr/include
--oldincludedir=/usr/include           --infodir=/usr/share/info
--mandir=/usr/share/man                 ...
| configure: loading site script
/OE/org.openembedded.dev/site/endian-little
| configure: loading site script /OE/org.openembedded.dev/site/common-glibc
| configure: loading site script /OE/org.openembedded.dev/site/arm-common
| configure: loading site script /OE/org.openembedded.dev/site/arm-linux
| configure: loading site script /OE/org.openembedded.dev/site/common
| configure: loading site script /OE/org.openembedded.dev/site/common
| checking for a BSD-compatible install...
/OE/org.openembedded.dev/tmp/staging/i686-linux/bin/install -c
| checking whether build environment is sane... yes
| checking for gawk... gawk
| checking whether make sets $(MAKE)... yes
| checking for arm-angstrom-linux-gnueabi-strip...
arm-angstrom-linux-gnueabi-strip
| checking for arm-angstrom-linux-gnueabi-gcc...
arm-angstrom-linux-gnueabi-gcc -march=armv5te -mtune=xscale
| checking for C compiler default output file name... a.out
| checking whether the C compiler works... yes
| checking whether we are cross compiling... yes
| checking for suffix of executables...
| checking for suffix of object files... o
| checking whether we are using the GNU C compiler... yes
| checking whether arm-angstrom-linux-gnueabi-gcc -march=armv5te
-mtune=xscale accepts -g... yes
| checking for arm-angstrom-linux-gnueabi-gcc -march=armv5te -mtune=xscale
option to accept ISO C89... none needed
| checking for style of include used by make... GNU
| checking dependency style of arm-angstrom-linux-gnueabi-gcc
-march=armv5te -mtune=xscale... gcc3
| checking how to run the C preprocessor... arm-angstrom-linux-gnueabi-gcc
-E
| checking for grep that handles long lines and -e...
/OE/org.openembedded.dev/tmp/staging/i686-linux/bin/grep
| checking for egrep...
/OE/org.openembedded.dev/tmp/staging/i686-linux/bin/grep -E
| checking for ANSI C header files... yes
| checking for a BSD-compatible install...
/OE/org.openembedded.dev/tmp/staging/i686-linux/bin/install -c
| checking for sys/types.h... yes
| checking for sys/stat.h... yes
| checking for stdlib.h... yes
| checking for string.h... yes
| checking for memory.h... yes
| checking for strings.h... yes
| checking for inttypes.h... yes
| checking for stdint.h... yes
| checking for unistd.h... yes
| checking build system type... i686-pc-linux-gnu
| checking host system type... arm-angstrom-linux-gnueabi
| checking locale.h usability... yes
| checking locale.h presence... yes
| checking for locale.h... yes
| checking for LC_MESSAGES... yes
| checking libintl.h usability... yes
| checking libintl.h presence... yes
| checking for libintl.h... yes
| checking for ngettext in libc... yes
| checking for dgettext in libc... yes
| checking for bind_textdomain_codeset... yes
| checking for msgfmt...
/OE/org.openembedded.dev/tmp/staging/i686-linux/bin/msgfmt
| checking for dcgettext... yes
| checking if msgfmt accepts -c... yes
| checking for gmsgfmt...
/OE/org.openembedded.dev/tmp/staging/i686-linux/bin/msgfmt
| checking for xgettext...
/OE/org.openembedded.dev/tmp/staging/i686-linux/bin/xgettext
| checking for catalogs to be installed...  C fr nl
| checking for intltool >= 0.23... 0.35.0 found
| checking for perl...
/OE/org.openembedded.dev/tmp/staging/i686-linux/bin/perl
| checking for XML::Parser... ok
| checking for iconv... /usr/bin/iconv
| checking for msgfmt...
/OE/org.openembedded.dev/tmp/staging/i686-linux/bin/msgfmt
| checking for msgmerge...
/OE/org.openembedded.dev/tmp/staging/i686-linux/bin/msgmerge
| checking for xgettext...
/OE/org.openembedded.dev/tmp/staging/i686-linux/bin/xgettext
| checking for arm-angstrom-linux-gnueabi-pkg-config... no
| checking for pkg-config...
/OE/org.openembedded.dev/tmp/staging/i686-linux/bin/pkg-config
| configure: WARNING: In the future, Autoconf will not detect cross-tools
| whose name does not start with the host triplet.  If you think this
| configuration is useful to you, please write to autoconf@gnu.org.
| checking pkg-config is at least version 0.9.0... yes
| checking for MINIBROWSER... configure: error: Package requirements
(gtk+-2.0 libgpewidget gtk-webcore-nrcit  sqlite) were not met:
|
| No package 'gtk-webcore-nrcit' found
|
| Consider adjusting the PKG_CONFIG_PATH environment variable if you
| installed software in a non-standard prefix.
|
| Alternatively, you may set the environment variables MINIBROWSER_CFLAGS
| and MINIBROWSER_LIBS to avoid the need to call pkg-config.
| See the pkg-config man page for more details.
|
| FATAL: oe_runconf failed
NOTE: Task failed:
/OE/org.openembedded.dev/tmp/work/armv5te-angstrom-linux-gnueabi/gpe-mini-browser-0.21-r0/temp/log.do_configure.22942
NOTE: package gpe-mini-browser-0.21-r0: task do_configure: failed
ERROR: TaskFailed event exception, aborting
NOTE: package gpe-mini-browser-0.21: failed
ERROR: Build of
/OE/org.openembedded.dev/packages/gpe-mini-browser/gpe-mini-browser_0.21.bb
do_configure failed
ERROR: Task 2792
(/OE/org.openembedded.dev/packages/gpe-mini-browser/gpe-mini-browser_0.21.bb,
 do_configure) failed
NOTE: Tasks Summary: Attempted 2393 tasks of which 2391 didn't need to be
rerun and 1 failed.
ERROR:
'/OE/org.openembedded.dev/packages/gpe-mini-browser/gpe-mini-browser_0.21.bb'
 failed

Best Regards,

Victor

^ permalink raw reply	[flat|nested] 50+ messages in thread
* Compile error
@ 2007-07-09  1:13 Zhao, Yunfeng
       [not found] ` <10EA09EFD8728347A513008B6B0DA77A01B8F5C9-wq7ZOvIWXbNpB2pF5aRoyrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
  0 siblings, 1 reply; 50+ messages in thread
From: Zhao, Yunfeng @ 2007-07-09  1:13 UTC (permalink / raw)
  To: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

I meet the error below when I compile KVM module against
30dac03825e830641054a829fe99ff6d1f2ebe0d. The kernel is 2.6.22-rc4.

+ make -C kernel
make[1]: Entering directory
`/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-users
pace/BUILD/kernel'
make -j20 -C /lib/modules/2.6.22-rc4/build M=`pwd` "$@"
make[2]: Entering directory
`/usr/src/redhat/BUILD/kernel-2.6.22rc4g85f6038f'
  LD
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/built-in.o
  CC [M]
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/svm.o
  CC [M]
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/vmx.o
  CC [M]
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/vmx-debug.o
  CC [M]
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/kvm_main.o
  CC [M]
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/mmu.o
  CC [M]
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/x86_emulate.o
  CC [M]
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/anon_inodes.o
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/kvm_main.c: In function 'kvm_cpu_hotplug':
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/kvm_main.c:3007: error: 'CPU_DYING' undeclared (first
use in this function)
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/kvm_main.c:3007: error: (Each undeclared identifier is
reported only once
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/kvm_main.c:3007: error: for each function it appears
in.)
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/kvm_main.c:3008: error: 'CPU_DYING_FROZEN' undeclared
(first use in this function)
/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-usersp
ace/BUILD/kernel/kvm_main.c:3013: warning: implicit declaration of
function 'on_cpu'
make[3]: ***
[/workspace/ia32e/nightly/kvm-master-2.6.22-rc4-20070708190117/kvm-users
pace/BUILD/kernel/kvm_main.o] Error 1
make[3]: *** Waiting for unfinished jobs....

How can I fix this issue?


Thanks
Yunfeng

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

^ permalink raw reply	[flat|nested] 50+ messages in thread
* Re: debug and breakpoint interrupts handling?
@ 2007-06-28  3:26 Jun Koi
       [not found] ` <fdaac4d50706272026r33a09fe5gf96d1e2827e3fa30-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 50+ messages in thread
From: Jun Koi @ 2007-06-28  3:26 UTC (permalink / raw)
  To: Dor Laor; +Cc: kvm-devel

On 6/28/07, Dor Laor <dor.laor-atKUWr5tajBWk0Htik3J/w@public.gmane.org> wrote:
> >On 6/27/07, Dor Laor <dor.laor-atKUWr5tajBWk0Htik3J/w@public.gmane.org> wrote:
> >> >BTW, I think that turning on debugger from qemu is a dangerous
> action,
> >> >from security point of view. Once the gdbserver is started, anybody
> >> >can connect to it (with gdb) and modify VM memory in anyway he wants
> >> >(like overwrite kernel with malicious code). The problem why this is
> >> >feasible is because there is no authentication machanism on
> gdbserver
> >> >at all.
> >>
> >> How can gdb-ing qemu harm the kernel? Although the whole guest memory
> >> image is mapped to qemu and writable for gdb, kernel data structures
> are
> >> not mapped (except for kvm_run and it has validity checks). So I
> don't
> >> think it's a security hole.
> >
> >You mean kvm_run() maps guest VM at the start, and unmaps it at the
> >end? That is interesting! That is obviously more secure, as when
> >debugger is active, it cannot modify VM.
>
> It's not why I meant.
> Kvm_run is mapped only once after the creation of the vcpu (in
> kvmctl.c).

Ah, we are talking past each other here :-). I thought you mentioned
kvm_run() function instead of kvm_run structure. (The naming system in
KVM is quite confused)

> The guest has ability to change at anytime the content of the kvm_run
> structure but it has no pointers and the values are checked against
> validity check each time the kernel uses it.
> So except for ruining the guest context gdb or malicious user cannot
> harm the kernel or other guests.
>

Again, a misunderstanding here. I wanted to say that gdb client can be
used to modify the kernel of *guest VM*, rather than host kernel.

Many thanks,
Jun

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error
@ 2007-06-01  5:22 Zhao, Yunfeng
       [not found] ` <10EA09EFD8728347A513008B6B0DA77A01888A23-wq7ZOvIWXbNpB2pF5aRoyrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
  0 siblings, 1 reply; 50+ messages in thread
From: Zhao, Yunfeng @ 2007-06-01  5:22 UTC (permalink / raw)
  To: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f


[-- Attachment #1.1: Type: text/plain, Size: 843 bytes --]

I met an error when i build latest KVM on rhel5.

Seems asm/cmpxchg.h is not in the kernel before 2.6.22.

How can I fix the issue?

 

 

make -C kernel

make[1]: Entering directory `/tmp/tmp/kvm-userspace/kernel'

make -C /lib/modules/2.6.18-8.el5/build M=`pwd` "$@"

make[2]: Entering directory `/usr/src/kernels/2.6.18-8.el5-x86_64'

  CC [M]  /tmp/tmp/kvm-userspace/kernel/mmu.o

/tmp/tmp/kvm-userspace/kernel/mmu.c:25:25: error: asm/cmpxchg.h: No such
file or directory

make[3]: *** [/tmp/tmp/kvm-userspace/kernel/mmu.o] Error 1

make[2]: *** [_module_/tmp/tmp/kvm-userspace/kernel] Error 2

make[2]: Leaving directory `/usr/src/kernels/2.6.18-8.el5-x86_64'

make[1]: *** [all] Error 2

make[1]: Leaving directory `/tmp/tmp/kvm-userspace/kernel'

make: *** [kernel] Error 2

 

thanks

Yunfeng


[-- Attachment #1.2: Type: text/html, Size: 4835 bytes --]

[-- Attachment #2: Type: text/plain, Size: 286 bytes --]

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

[-- Attachment #3: Type: text/plain, Size: 186 bytes --]

_______________________________________________
kvm-devel mailing list
kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/kvm-devel

^ permalink raw reply	[flat|nested] 50+ messages in thread
* Compile Error
@ 2006-09-05 18:20 wei.li4
  0 siblings, 0 replies; 50+ messages in thread
From: wei.li4 @ 2006-09-05 18:20 UTC (permalink / raw)
  To: linuxppc-embedded

Hi All,

I am working on linux-2.6.18-rc2-g73a589b5.tar.bz2 for MPC875, the 
cross-tools are from ELDK 4.0. After configuration and do 'make 
zImage', I got these error:

CC      arch/ppc/boot/simple/m8xx_tty.o
arch/ppc/boot/simple/m8xx_tty.c:32: error: static declaration of 'cpmp' 
follows non-static declaration
include/asm/commproc.h:74: error: previous declaration of 'cpmp' was here
make[2]: *** [arch/ppc/boot/simple/m8xx_tty.o] Error 1

I also got these errors if I used these tools on Linux 2.6.13, but 
there is no error if I use tools from ELDK 3.1.1, can anyone help me 
figure it out? Thanks.

^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error
@ 2005-10-12 11:28 Stephan Böni
  0 siblings, 0 replies; 50+ messages in thread
From: Stephan Böni @ 2005-10-12 11:28 UTC (permalink / raw)
  To: xen-devel, xen-users


[-- Attachment #1.1: Type: text/plain, Size: 2432 bytes --]

I cannot compile the latest xen build (make world):
 
make[4]: Entering directory `/setup/xen/xen-unstable/tools/firmware/acpi'
gcc -o acpigen -I. -I../../libxc acpi_build.c acpi_dsdt.c acpi_facs.c acpi_fadt.
c acpi_gen.c acpi_madt.c acpi_rsdt.c
acpi_gen.c: In function âmainâ:
acpi_gen.c:44: warning: incompatible implicit declaration of built-in function â
exitâ
acpi_gen.c:51: warning: incompatible implicit declaration of built-in function â
exitâ
acpi_gen.c:53: warning: pointer targets in passing argument 1 of âAcpiBuildTable
â differ in signedness
acpi_gen.c:56: warning: incompatible implicit declaration of built-in function â
exitâ
./acpigen acpi.bin
make[4]: Leaving directory `/setup/xen/xen-unstable/tools/firmware/acpi'
make[4]: Entering directory `/setup/xen/xen-unstable/tools/firmware/vmxassist'
gcc -DDEBUG -DTEXTADDR=0x000D0000 -I. -I../../../tools/libxc -Wall -fno-builtin
-O2 -msoft-float -m32 -march=i686 -D__ASSEMBLY__ -DDEBUG -DTEXTADDR=0x000D0000 -
c head.S
gcc -DDEBUG -DTEXTADDR=0x000D0000 -I. -I../../../tools/libxc -Wall -fno-builtin
-O2 -msoft-float -m32 -march=i686 -o gen gen.c
/usr/lib64/gcc/x86_64-suse-linux/4.0.2/../../../../x86_64-suse-linux/bin/ld: ski
pping incompatible /usr/lib64/gcc/x86_64-suse-linux/4.0.2/../../../libc.so when
searching for -lc
/usr/lib64/gcc/x86_64-suse-linux/4.0.2/../../../../x86_64-suse-linux/bin/ld: ski
pping incompatible /usr/lib64/gcc/x86_64-suse-linux/4.0.2/../../../libc.a when s
earching for -lc
/usr/lib64/gcc/x86_64-suse-linux/4.0.2/../../../../x86_64-suse-linux/bin/ld: ski
pping incompatible /usr/lib64/libc.so when searching for -lc
/usr/lib64/gcc/x86_64-suse-linux/4.0.2/../../../../x86_64-suse-linux/bin/ld: ski
pping incompatible /usr/lib64/libc.a when searching for -lc
/usr/lib64/gcc/x86_64-suse-linux/4.0.2/../../../../x86_64-suse-linux/bin/ld: can
not find -lc
collect2: ld returned 1 exit status
make[4]: *** [gen] Error 1
make[4]: Leaving directory `/setup/xen/xen-unstable/tools/firmware/vmxassist'
make[3]: *** [all] Error 2
make[3]: Leaving directory `/setup/xen/xen-unstable/tools/firmware'
make[2]: *** [install] Error 2
make[2]: Leaving directory `/setup/xen/xen-unstable/tools'
make[1]: *** [install-tools] Error 2
make[1]: Leaving directory `/setup/xen/xen-unstable'
make: *** [world] Error 2
 
 
Normaly i have to boot my system with acpi=off. Maybe here is the problem....
 
Stephan
 

[-- Attachment #1.2: Type: text/html, Size: 3601 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 50+ messages in thread
* RE: compile error
@ 2005-08-27 11:29 James Harper
  2005-08-27 11:51 ` Keir Fraser
  0 siblings, 1 reply; 50+ messages in thread
From: James Harper @ 2005-08-27 11:29 UTC (permalink / raw)
  To: Xen-devel

I think that this:

CONFIG_X86_PM_TIMER=y

... might have been the cause. It's building now and I think it's past
the point where it broke previously.

Do we call this a bug?

James



> -----Original Message-----
> From: xen-devel-bounces@lists.xensource.com [mailto:xen-devel-
> bounces@lists.xensource.com] On Behalf Of James Harper
> Sent: Saturday, 27 August 2005 20:45
> To: Xen-devel@lists.xensource.com
> Subject: [Xen-devel] compile error
> 
> I get this error:
> 
> arch/xen/i386/kernel/built-in.o(.init.text+0x3f81): In function
> `acpi_parse_fadt':
> : undefined reference to `pmtmr_ioport'
> arch/xen/i386/kernel/built-in.o(.init.text+0x3f86): In function
> `acpi_parse_fadt':
> : undefined reference to `pmtmr_ioport'
> make: *** [.tmp_vmlinux1] Error 1
> 
> in a pull from 20050822 (I'm actually trying a debian build as per 'ed
> despard') with this config:

<snip>

> Any suggestions?
> 
> Thanks
> 
> James
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error
@ 2005-08-27 10:44 James Harper
  0 siblings, 0 replies; 50+ messages in thread
From: James Harper @ 2005-08-27 10:44 UTC (permalink / raw)
  To: Xen-devel

I get this error:

arch/xen/i386/kernel/built-in.o(.init.text+0x3f81): In function
`acpi_parse_fadt':
: undefined reference to `pmtmr_ioport'
arch/xen/i386/kernel/built-in.o(.init.text+0x3f86): In function
`acpi_parse_fadt':
: undefined reference to `pmtmr_ioport'
make: *** [.tmp_vmlinux1] Error 1

in a pull from 20050822 (I'm actually trying a debian build as per 'ed
despard') with this config:

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.12-xen0
# Thu Aug 25 09:59:51 2005
#
CONFIG_XEN=y
CONFIG_ARCH_XEN=y
CONFIG_NO_IDLE_HZ=y

#
# XEN
#
CONFIG_XEN_PRIVILEGED_GUEST=y
CONFIG_XEN_PHYSDEV_ACCESS=y
CONFIG_XEN_BLKDEV_BACKEND=y
# CONFIG_XEN_BLKDEV_TAP_BE is not set
CONFIG_XEN_NETDEV_BACKEND=y
# CONFIG_XEN_BLKDEV_FRONTEND is not set
# CONFIG_XEN_NETDEV_FRONTEND is not set
# CONFIG_XEN_NETDEV_GRANT_TX is not set
# CONFIG_XEN_NETDEV_GRANT_RX is not set
# CONFIG_XEN_BLKDEV_TAP is not set
# CONFIG_XEN_SHADOW_MODE is not set
# CONFIG_XEN_SCRUB_PAGES is not set
CONFIG_XEN_X86=y
# CONFIG_XEN_X86_64 is not set
CONFIG_HAVE_ARCH_DEV_ALLOC_SKB=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
# CONFIG_CLEAN_COMPILE is not set
CONFIG_BROKEN=y
CONFIG_BROKEN_ON_SMP=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32

#
# General setup
#
CONFIG_LOCALVERSION=""
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_POSIX_MQUEUE=y
# CONFIG_BSD_PROCESS_ACCT is not set
CONFIG_SYSCTL=y
# CONFIG_AUDIT is not set
CONFIG_HOTPLUG=y
CONFIG_KOBJECT_UEVENT=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
# CONFIG_CPUSETS is not set
# CONFIG_EMBEDDED is not set
CONFIG_KALLSYMS=y
# CONFIG_KALLSYMS_ALL is not set
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SHMEM=y
CONFIG_CC_ALIGN_FUNCTIONS=0
CONFIG_CC_ALIGN_LABELS=0
CONFIG_CC_ALIGN_LOOPS=0
CONFIG_CC_ALIGN_JUMPS=0
# CONFIG_TINY_SHMEM is not set
CONFIG_BASE_SMALL=0

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
CONFIG_OBSOLETE_MODPARM=y
CONFIG_MODVERSIONS=y
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_KMOD=y
CONFIG_STOP_MACHINE=y

#
# X86 Processor Configuration
#
CONFIG_XENARCH="i386"
CONFIG_X86=y
CONFIG_MMU=y
CONFIG_UID16=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
CONFIG_MPENTIUMII=y
# CONFIG_MPENTIUMIII is not set
# CONFIG_MPENTIUMM is not set
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MEFFICEON is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MGEODEGX1 is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_X86_GENERIC is not set
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_L1_CACHE_SHIFT=5
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
# CONFIG_HPET_TIMER is not set
# CONFIG_HPET_EMULATE_RTC is not set
CONFIG_SMP=y
CONFIG_SMP_ALTERNATIVES=y
CONFIG_NR_CPUS=8
# CONFIG_SCHED_SMT is not set
# CONFIG_PREEMPT is not set
# CONFIG_X86_REBOOTFIXUPS is not set
# CONFIG_MICROCODE is not set
CONFIG_X86_CPUID=y
CONFIG_SWIOTLB=y

#
# Firmware Drivers
#
# CONFIG_EDD is not set
CONFIG_NOHIGHMEM=y
# CONFIG_HIGHMEM4G is not set
# CONFIG_HIGHMEM64G is not set
CONFIG_MTRR=y
CONFIG_HAVE_DEC_LOCK=y
# CONFIG_REGPARM is not set
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
# CONFIG_HOTPLUG_CPU is not set

#
# Bus options (PCI, PCMCIA, EISA, MCA, ISA)
#
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GOMMCONFIG is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
# CONFIG_PCIEPORTBUS is not set
# CONFIG_PCI_MSI is not set
CONFIG_PCI_LEGACY_PROC=y
CONFIG_PCI_NAMES=y
# CONFIG_PCI_DEBUG is not set
CONFIG_ISA_DMA_API=y
CONFIG_ISA=y
# CONFIG_EISA is not set
# CONFIG_MCA is not set
# CONFIG_SCx200 is not set

#
# PCCARD (PCMCIA/CardBus) support
#
# CONFIG_PCCARD is not set

#
# PCI Hotplug Support
#
# CONFIG_HOTPLUG_PCI is not set
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_X86_SMP=y
CONFIG_X86_BIOS_REBOOT=y
CONFIG_X86_TRAMPOLINE=y
CONFIG_PC=y
CONFIG_SECCOMP=y
CONFIG_EARLY_PRINTK=y

#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_AOUT=m
CONFIG_BINFMT_MISC=m

#
# Device Drivers
#

#
# Generic Driver Options
#
# CONFIG_STANDALONE is not set
# CONFIG_PREVENT_FIRMWARE_BUILD is not set
CONFIG_FW_LOADER=m
# CONFIG_DEBUG_DRIVER is not set

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Parallel port support
#
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
# CONFIG_PARPORT_PC_FIFO is not set
# CONFIG_PARPORT_PC_SUPERIO is not set
# CONFIG_PARPORT_GSC is not set
CONFIG_PARPORT_1284=y

#
# Plug and Play support
#
CONFIG_PNP=y
# CONFIG_PNP_DEBUG is not set

#
# Protocols
#
CONFIG_ISAPNP=y
# CONFIG_PNPBIOS is not set
CONFIG_PNPACPI=y

#
# Block devices
#
CONFIG_BLK_DEV_FD=m
# CONFIG_BLK_DEV_XD is not set
# CONFIG_PARIDE is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=m
CONFIG_BLK_DEV_CRYPTOLOOP=m
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_SX8 is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
# CONFIG_LBD is not set
# CONFIG_CDROM_PKTCDVD is not set

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
CONFIG_ATA_OVER_ETH=m

#
# ATA/ATAPI/MFM/RLL support
#
CONFIG_IDE=m
CONFIG_BLK_DEV_IDE=m

#
# Please see Documentation/ide.txt for help/info on IDE drives
#
# CONFIG_BLK_DEV_IDE_SATA is not set
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDEDISK=m
CONFIG_IDEDISK_MULTI_MODE=y
CONFIG_BLK_DEV_IDECD=m
CONFIG_BLK_DEV_IDETAPE=m
# CONFIG_BLK_DEV_IDEFLOPPY is not set
# CONFIG_BLK_DEV_IDESCSI is not set
# CONFIG_IDE_TASK_IOCTL is not set

#
# IDE chipset support/bugfixes
#
CONFIG_IDE_GENERIC=m
# CONFIG_BLK_DEV_CMD640 is not set
# CONFIG_BLK_DEV_IDEPNP is not set
# CONFIG_BLK_DEV_IDEPCI is not set
# CONFIG_IDE_ARM is not set
# CONFIG_IDE_CHIPSETS is not set
# CONFIG_BLK_DEV_IDEDMA is not set
# CONFIG_IDEDMA_AUTO is not set
# CONFIG_BLK_DEV_HD is not set

#
# SCSI device support
#
CONFIG_SCSI=m
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=m
CONFIG_CHR_DEV_ST=m
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=m
CONFIG_BLK_DEV_SR_VENDOR=y
CONFIG_CHR_DEV_SG=m

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
CONFIG_SCSI_MULTI_LUN=y
# CONFIG_SCSI_CONSTANTS is not set
# CONFIG_SCSI_LOGGING is not set

#
# SCSI Transport Attributes
#
CONFIG_SCSI_SPI_ATTRS=m
# CONFIG_SCSI_FC_ATTRS is not set
CONFIG_SCSI_ISCSI_ATTRS=m

#
# SCSI low-level drivers
#
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_7000FASST is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AHA152X is not set
# CONFIG_SCSI_AHA1542 is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC7XXX_OLD is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_IN2000 is not set
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_SCSI_SATA is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_CPQFCTS is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_DTC3280 is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_EATA_PIO is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_GENERIC_NCR5380 is not set
# CONFIG_SCSI_GENERIC_NCR5380_MMIO is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_PPA is not set
# CONFIG_SCSI_IMM is not set
# CONFIG_SCSI_NCR53C406A is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_PAS16 is not set
# CONFIG_SCSI_PCI2000 is not set
# CONFIG_SCSI_PCI2220I is not set
# CONFIG_SCSI_PSI240I is not set
# CONFIG_SCSI_QLOGIC_FAS is not set
# CONFIG_SCSI_QLOGIC_ISP is not set
# CONFIG_SCSI_QLOGIC_FC is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
CONFIG_SCSI_QLA2XXX=m
# CONFIG_SCSI_QLA21XX is not set
# CONFIG_SCSI_QLA22XX is not set
# CONFIG_SCSI_QLA2300 is not set
# CONFIG_SCSI_QLA2322 is not set
# CONFIG_SCSI_QLA6312 is not set
# CONFIG_SCSI_LPFC is not set
# CONFIG_SCSI_SEAGATE is not set
# CONFIG_SCSI_SYM53C416 is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_T128 is not set
# CONFIG_SCSI_U14_34F is not set
# CONFIG_SCSI_ULTRASTOR is not set
# CONFIG_SCSI_NSP32 is not set
# CONFIG_SCSI_DEBUG is not set

#
# Old CD-ROM drivers (not SCSI, not IDE)
#
# CONFIG_CD_NO_IDESCSI is not set

#
# Multi-device support (RAID and LVM)
#
CONFIG_MD=y
# CONFIG_BLK_DEV_MD is not set
CONFIG_BLK_DEV_DM=m
# CONFIG_DM_CRYPT is not set
CONFIG_DM_SNAPSHOT=m
CONFIG_DM_MIRROR=m
# CONFIG_DM_ZERO is not set
CONFIG_DM_MULTIPATH=m
# CONFIG_DM_MULTIPATH_EMC is not set

#
# Fusion MPT device support
#
# CONFIG_FUSION is not set

#
# IEEE 1394 (FireWire) support
#
# CONFIG_IEEE1394 is not set

#
# I2O device support
#
# CONFIG_I2O is not set

#
# Networking support
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
CONFIG_UNIX=y
CONFIG_NET_KEY=m
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_IP_MULTIPLE_TABLES=y
# CONFIG_IP_ROUTE_FWMARK is not set
CONFIG_IP_ROUTE_MULTIPATH=y
# CONFIG_IP_ROUTE_MULTIPATH_CACHED is not set
CONFIG_IP_ROUTE_VERBOSE=y
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=y
CONFIG_NET_IPGRE=y
CONFIG_NET_IPGRE_BROADCAST=y
CONFIG_IP_MROUTE=y
# CONFIG_IP_PIMSM_V1 is not set
# CONFIG_IP_PIMSM_V2 is not set
# CONFIG_ARPD is not set
CONFIG_SYN_COOKIES=y
CONFIG_INET_AH=m
CONFIG_INET_ESP=m
CONFIG_INET_IPCOMP=m
CONFIG_INET_TUNNEL=y
CONFIG_IP_TCPDIAG=y
# CONFIG_IP_TCPDIAG_IPV6 is not set

#
# IP: Virtual Server Configuration
#
# CONFIG_IP_VS is not set
# CONFIG_IPV6 is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
CONFIG_BRIDGE_NETFILTER=y

#
# IP: Netfilter Configuration
#
CONFIG_IP_NF_CONNTRACK=m
# CONFIG_IP_NF_CT_ACCT is not set
# CONFIG_IP_NF_CONNTRACK_MARK is not set
# CONFIG_IP_NF_CT_PROTO_SCTP is not set
CONFIG_IP_NF_FTP=m
CONFIG_IP_NF_IRC=m
CONFIG_IP_NF_TFTP=m
CONFIG_IP_NF_AMANDA=m
CONFIG_IP_NF_QUEUE=m
CONFIG_IP_NF_IPTABLES=m
CONFIG_IP_NF_MATCH_LIMIT=m
CONFIG_IP_NF_MATCH_IPRANGE=m
CONFIG_IP_NF_MATCH_MAC=m
CONFIG_IP_NF_MATCH_PKTTYPE=m
CONFIG_IP_NF_MATCH_MARK=m
CONFIG_IP_NF_MATCH_MULTIPORT=m
CONFIG_IP_NF_MATCH_TOS=m
CONFIG_IP_NF_MATCH_RECENT=m
CONFIG_IP_NF_MATCH_ECN=m
CONFIG_IP_NF_MATCH_DSCP=m
CONFIG_IP_NF_MATCH_AH_ESP=m
CONFIG_IP_NF_MATCH_LENGTH=m
CONFIG_IP_NF_MATCH_TTL=m
CONFIG_IP_NF_MATCH_TCPMSS=m
CONFIG_IP_NF_MATCH_HELPER=m
CONFIG_IP_NF_MATCH_STATE=m
CONFIG_IP_NF_MATCH_CONNTRACK=m
CONFIG_IP_NF_MATCH_OWNER=m
CONFIG_IP_NF_MATCH_PHYSDEV=m
CONFIG_IP_NF_MATCH_ADDRTYPE=m
CONFIG_IP_NF_MATCH_REALM=m
# CONFIG_IP_NF_MATCH_SCTP is not set
# CONFIG_IP_NF_MATCH_COMMENT is not set
# CONFIG_IP_NF_MATCH_HASHLIMIT is not set
CONFIG_IP_NF_FILTER=m
CONFIG_IP_NF_TARGET_REJECT=m
CONFIG_IP_NF_TARGET_LOG=m
CONFIG_IP_NF_TARGET_ULOG=m
CONFIG_IP_NF_TARGET_TCPMSS=m
CONFIG_IP_NF_NAT=m
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=m
CONFIG_IP_NF_TARGET_REDIRECT=m
CONFIG_IP_NF_TARGET_NETMAP=m
CONFIG_IP_NF_TARGET_SAME=m
CONFIG_IP_NF_NAT_SNMP_BASIC=m
CONFIG_IP_NF_NAT_IRC=m
CONFIG_IP_NF_NAT_FTP=m
CONFIG_IP_NF_NAT_TFTP=m
CONFIG_IP_NF_NAT_AMANDA=m
CONFIG_IP_NF_MANGLE=m
CONFIG_IP_NF_TARGET_TOS=m
CONFIG_IP_NF_TARGET_ECN=m
CONFIG_IP_NF_TARGET_DSCP=m
CONFIG_IP_NF_TARGET_MARK=m
CONFIG_IP_NF_TARGET_CLASSIFY=m
CONFIG_IP_NF_RAW=m
CONFIG_IP_NF_TARGET_NOTRACK=m
CONFIG_IP_NF_ARPTABLES=m
CONFIG_IP_NF_ARPFILTER=m
CONFIG_IP_NF_ARP_MANGLE=m

#
# Bridge: Netfilter Configuration
#
# CONFIG_BRIDGE_NF_EBTABLES is not set
CONFIG_XFRM=y
CONFIG_XFRM_USER=m

#
# SCTP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_SCTP is not set
# CONFIG_ATM is not set
CONFIG_BRIDGE=y
CONFIG_VLAN_8021Q=m
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set

#
# QoS and/or fair queueing
#
CONFIG_NET_SCHED=y
CONFIG_NET_SCH_CLK_JIFFIES=y
# CONFIG_NET_SCH_CLK_GETTIMEOFDAY is not set
# CONFIG_NET_SCH_CLK_CPU is not set
CONFIG_NET_SCH_CBQ=m
CONFIG_NET_SCH_HTB=m
CONFIG_NET_SCH_HFSC=m
CONFIG_NET_SCH_PRIO=m
CONFIG_NET_SCH_RED=m
CONFIG_NET_SCH_SFQ=m
CONFIG_NET_SCH_TEQL=m
CONFIG_NET_SCH_TBF=m
CONFIG_NET_SCH_GRED=m
CONFIG_NET_SCH_DSMARK=m
CONFIG_NET_SCH_NETEM=m
CONFIG_NET_SCH_INGRESS=m
CONFIG_NET_QOS=y
CONFIG_NET_ESTIMATOR=y
CONFIG_NET_CLS=y
CONFIG_NET_CLS_BASIC=m
CONFIG_NET_CLS_TCINDEX=m
CONFIG_NET_CLS_ROUTE4=m
CONFIG_NET_CLS_ROUTE=y
CONFIG_NET_CLS_FW=m
CONFIG_NET_CLS_U32=m
# CONFIG_CLS_U32_PERF is not set
# CONFIG_NET_CLS_IND is not set
CONFIG_CLS_U32_MARK=y
CONFIG_NET_CLS_RSVP=m
CONFIG_NET_CLS_RSVP6=m
CONFIG_NET_EMATCH=y
CONFIG_NET_EMATCH_STACK=32
# CONFIG_NET_EMATCH_CMP is not set
# CONFIG_NET_EMATCH_NBYTE is not set
# CONFIG_NET_EMATCH_U32 is not set
# CONFIG_NET_EMATCH_META is not set
# CONFIG_NET_CLS_ACT is not set
CONFIG_NET_CLS_POLICE=y

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
CONFIG_NETDEVICES=y
CONFIG_DUMMY=m
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
# CONFIG_NET_SB1000 is not set

#
# ARCnet devices
#
# CONFIG_ARCNET is not set

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
CONFIG_MII=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_NET_VENDOR_3COM is not set
# CONFIG_LANCE is not set
# CONFIG_NET_VENDOR_SMC is not set
# CONFIG_NET_VENDOR_RACAL is not set

#
# Tulip family network device support
#
CONFIG_NET_TULIP=y
# CONFIG_DE2104X is not set
CONFIG_TULIP=y
# CONFIG_TULIP_MWI is not set
# CONFIG_TULIP_MMIO is not set
# CONFIG_TULIP_NAPI is not set
# CONFIG_DE4X5 is not set
# CONFIG_WINBOND_840 is not set
# CONFIG_DM9102 is not set
# CONFIG_AT1700 is not set
# CONFIG_DEPCA is not set
# CONFIG_HP100 is not set
# CONFIG_NET_ISA is not set
CONFIG_NET_PCI=y
# CONFIG_PCNET32 is not set
# CONFIG_AMD8111_ETH is not set
# CONFIG_ADAPTEC_STARFIRE is not set
# CONFIG_AC3200 is not set
# CONFIG_APRICOT is not set
CONFIG_B44=m
# CONFIG_FORCEDETH is not set
# CONFIG_CS89x0 is not set
# CONFIG_DGRS is not set
# CONFIG_EEPRO100 is not set
CONFIG_E100=m
# CONFIG_FEALNX is not set
CONFIG_NATSEMI=m
# CONFIG_NE2K_PCI is not set
# CONFIG_8139CP is not set
CONFIG_8139TOO=m
CONFIG_8139TOO_PIO=y
# CONFIG_8139TOO_TUNE_TWISTER is not set
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_OLD_RX_RESET is not set
# CONFIG_SIS900 is not set
# CONFIG_EPIC100 is not set
# CONFIG_SUNDANCE is not set
CONFIG_TLAN=m
# CONFIG_VIA_RHINE is not set
# CONFIG_NET_POCKET is not set

#
# Ethernet (1000 Mbit)
#
CONFIG_ACENIC=m
# CONFIG_ACENIC_OMIT_TIGON_I is not set
# CONFIG_DL2K is not set
CONFIG_E1000=m
# CONFIG_E1000_NAPI is not set
CONFIG_NS83820=m
# CONFIG_HAMACHI is not set
CONFIG_YELLOWFIN=m
CONFIG_R8169=m
# CONFIG_R8169_NAPI is not set
CONFIG_R8169_VLAN=y
# CONFIG_SK98LIN is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_TIGON3=m
# CONFIG_BNX2 is not set

#
# Ethernet (10000 Mbit)
#
# CONFIG_IXGB is not set
# CONFIG_S2IO is not set

#
# Token Ring devices
#
# CONFIG_TR is not set

#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set

#
# Wan interfaces
#
# CONFIG_WAN is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PLIP is not set
CONFIG_PPP=m
CONFIG_PPP_MULTILINK=y
CONFIG_PPP_FILTER=y
CONFIG_PPP_ASYNC=m
CONFIG_PPP_SYNC_TTY=m
CONFIG_PPP_DEFLATE=m
CONFIG_PPP_BSDCOMP=m
CONFIG_PPPOE=m
# CONFIG_SLIP is not set
# CONFIG_NET_FC is not set
# CONFIG_SHAPER is not set
# CONFIG_NETCONSOLE is not set

#
# ISDN subsystem
#
CONFIG_ISDN=m

#
# Old ISDN4Linux
#
CONFIG_ISDN_I4L=m
# CONFIG_ISDN_PPP is not set
CONFIG_ISDN_AUDIO=y
CONFIG_ISDN_TTY_FAX=y

#
# ISDN feature submodules
#
CONFIG_ISDN_DRV_LOOP=m
CONFIG_ISDN_DIVERSION=m

#
# ISDN4Linux hardware drivers
#

#
# Passive cards
#
CONFIG_ISDN_DRV_HISAX=m

#
# D-channel protocol features
#
CONFIG_HISAX_EURO=y
# CONFIG_DE_AOC is not set
# CONFIG_HISAX_NO_SENDCOMPLETE is not set
# CONFIG_HISAX_NO_LLC is not set
# CONFIG_HISAX_NO_KEYPAD is not set
# CONFIG_HISAX_1TR6 is not set
# CONFIG_HISAX_NI1 is not set
CONFIG_HISAX_MAX_CARDS=8

#
# HiSax supported cards
#
# CONFIG_HISAX_16_0 is not set
# CONFIG_HISAX_16_3 is not set
# CONFIG_HISAX_TELESPCI is not set
# CONFIG_HISAX_S0BOX is not set
# CONFIG_HISAX_AVM_A1 is not set
# CONFIG_HISAX_FRITZPCI is not set
# CONFIG_HISAX_AVM_A1_PCMCIA is not set
# CONFIG_HISAX_ELSA is not set
# CONFIG_HISAX_IX1MICROR2 is not set
# CONFIG_HISAX_DIEHLDIVA is not set
# CONFIG_HISAX_ASUSCOM is not set
# CONFIG_HISAX_TELEINT is not set
# CONFIG_HISAX_HFCS is not set
# CONFIG_HISAX_SEDLBAUER is not set
# CONFIG_HISAX_SPORTSTER is not set
# CONFIG_HISAX_MIC is not set
CONFIG_HISAX_NETJET=y
# CONFIG_HISAX_NETJET_U is not set
# CONFIG_HISAX_NICCY is not set
# CONFIG_HISAX_ISURF is not set
# CONFIG_HISAX_HSTSAPHIR is not set
# CONFIG_HISAX_BKM_A4T is not set
# CONFIG_HISAX_SCT_QUADRO is not set
# CONFIG_HISAX_GAZEL is not set
# CONFIG_HISAX_HFC_PCI is not set
# CONFIG_HISAX_W6692 is not set
# CONFIG_HISAX_HFC_SX is not set
# CONFIG_HISAX_ENTERNOW_PCI is not set
# CONFIG_HISAX_DEBUG is not set

#
# HiSax PCMCIA card service modules
#

#
# HiSax sub driver modules
#
# CONFIG_HISAX_HFC4S8S is not set
# CONFIG_HISAX_FRITZ_PCIPNP is not set

#
# Active cards
#
# CONFIG_ISDN_DRV_ICN is not set
# CONFIG_ISDN_DRV_PCBIT is not set
# CONFIG_ISDN_DRV_SC is not set
# CONFIG_ISDN_DRV_ACT2000 is not set
# CONFIG_HYSDN is not set

#
# CAPI subsystem
#
CONFIG_ISDN_CAPI=m
# CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON is not set
CONFIG_ISDN_CAPI_MIDDLEWARE=y
CONFIG_ISDN_CAPI_CAPI20=m
CONFIG_ISDN_CAPI_CAPIFS_BOOL=y
CONFIG_ISDN_CAPI_CAPIFS=m
CONFIG_ISDN_CAPI_CAPIDRV=m

#
# CAPI hardware drivers
#

#
# Active AVM cards
#
# CONFIG_CAPI_AVM is not set

#
# Active Eicon DIVA Server cards
#
CONFIG_CAPI_EICON=y
CONFIG_ISDN_DIVAS=m
CONFIG_ISDN_DIVAS_BRIPCI=y
CONFIG_ISDN_DIVAS_PRIPCI=y
CONFIG_ISDN_DIVAS_DIVACAPI=m
CONFIG_ISDN_DIVAS_USERIDI=m
CONFIG_ISDN_DIVAS_MAINT=m

#
# Telephony Support
#
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
# CONFIG_INPUT_TSDEV is not set
# CONFIG_INPUT_EVDEV is not set
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_NEWTON is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=m
CONFIG_MOUSE_SERIAL=m
# CONFIG_MOUSE_INPORT is not set
# CONFIG_MOUSE_LOGIBM is not set
# CONFIG_MOUSE_PC110PAD is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PARKBD is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_GAMEPORT is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_SERIAL_NONSTANDARD is not set

#
# Serial drivers
#
# CONFIG_SERIAL_8250 is not set

#
# Non-8250 serial port support
#
# CONFIG_SERIAL_JSM is not set
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256
CONFIG_PRINTER=m
# CONFIG_LP_CONSOLE is not set
# CONFIG_PPDEV is not set
# CONFIG_TIPAR is not set

#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
# CONFIG_HW_RANDOM is not set
# CONFIG_NVRAM is not set
# CONFIG_RTC is not set
# CONFIG_GEN_RTC is not set
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set

#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
# CONFIG_AGP is not set
# CONFIG_DRM is not set
# CONFIG_MWAVE is not set
# CONFIG_RAW_DRIVER is not set
CONFIG_HPET=y
# CONFIG_HPET_RTC_IRQ is not set
CONFIG_HPET_MMAP=y
# CONFIG_HANGCHECK_TIMER is not set

#
# TPM devices
#
# CONFIG_TCG_TPM is not set

#
# I2C support
#
# CONFIG_I2C is not set

#
# Dallas's 1-wire bus
#
CONFIG_W1=m
# CONFIG_W1_MATROX is not set
CONFIG_W1_THERM=m
# CONFIG_W1_SMEM is not set

#
# Misc devices
#
# CONFIG_IBM_ASM is not set

#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set

#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set

#
# Graphics support
#
# CONFIG_FB is not set
# CONFIG_VIDEO_SELECT is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
# CONFIG_MDA_CONSOLE is not set
CONFIG_DUMMY_CONSOLE=y

#
# Sound
#
# CONFIG_SOUND is not set

#
# USB support
#
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y
# CONFIG_USB is not set

#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set

#
# MMC/SD Card support
#
# CONFIG_MMC is not set

#
# InfiniBand support
#
# CONFIG_INFINIBAND is not set

#
# Power management options
#

#
# ACPI (Advanced Configuration and Power Interface) Support
#
CONFIG_ACPI=y
CONFIG_ACPI_BOOT=y
CONFIG_ACPI_INTERPRETER=y
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_ASUS=m
CONFIG_ACPI_IBM=m
CONFIG_ACPI_TOSHIBA=m
# CONFIG_ACPI_CUSTOM_DSDT is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_BUS=y
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_PCI=y
CONFIG_ACPI_SYSTEM=y
CONFIG_X86_PM_TIMER=y
CONFIG_ACPI_CONTAINER=m

#
# File systems
#
CONFIG_EXT2_FS=m
CONFIG_EXT2_FS_XATTR=y
CONFIG_EXT2_FS_POSIX_ACL=y
CONFIG_EXT2_FS_SECURITY=y
CONFIG_EXT3_FS=m
CONFIG_EXT3_FS_XATTR=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_EXT3_FS_SECURITY=y
CONFIG_JBD=m
# CONFIG_JBD_DEBUG is not set
CONFIG_FS_MBCACHE=m
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
CONFIG_FS_POSIX_ACL=y

#
# XFS support
#
# CONFIG_XFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
# CONFIG_QUOTA is not set
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=m
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_ZISOFS_FS=m
CONFIG_UDF_FS=m
CONFIG_UDF_NLS=y

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=m
CONFIG_MSDOS_FS=m
CONFIG_VFAT_FS=m
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
# CONFIG_NTFS_FS is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_SYSFS=y
CONFIG_DEVFS_FS=y
# CONFIG_DEVFS_MOUNT is not set
# CONFIG_DEVFS_DEBUG is not set
# CONFIG_DEVPTS_FS_XATTR is not set
CONFIG_TMPFS=y
# CONFIG_TMPFS_XATTR is not set
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_RAMFS=y

#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
CONFIG_CRAMFS=y
# CONFIG_VXFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set

#
# Network File Systems
#
CONFIG_NFS_FS=m
CONFIG_NFS_V3=y
# CONFIG_NFS_V4 is not set
# CONFIG_NFS_DIRECTIO is not set
CONFIG_NFSD=m
CONFIG_NFSD_V3=y
# CONFIG_NFSD_V4 is not set
# CONFIG_NFSD_TCP is not set
CONFIG_LOCKD=m
CONFIG_LOCKD_V4=y
CONFIG_EXPORTFS=m
CONFIG_SUNRPC=m
# CONFIG_RPCSEC_GSS_KRB5 is not set
# CONFIG_RPCSEC_GSS_SPKM3 is not set
CONFIG_SMB_FS=m
# CONFIG_SMB_NLS_DEFAULT is not set
CONFIG_CIFS=m
CONFIG_CIFS_STATS=y
CONFIG_CIFS_XATTR=y
CONFIG_CIFS_POSIX=y
# CONFIG_CIFS_EXPERIMENTAL is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set

#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y

#
# Native Language Support
#
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
CONFIG_NLS_CODEPAGE_437=m
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
CONFIG_NLS_ASCII=m
CONFIG_NLS_ISO8859_1=m
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
CONFIG_NLS_ISO8859_15=m
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
CONFIG_NLS_UTF8=m

#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY is not set

#
# Cryptographic options
#
CONFIG_CRYPTO=y
CONFIG_CRYPTO_HMAC=y
CONFIG_CRYPTO_NULL=m
CONFIG_CRYPTO_MD4=m
CONFIG_CRYPTO_MD5=m
CONFIG_CRYPTO_SHA1=m
CONFIG_CRYPTO_SHA256=m
CONFIG_CRYPTO_SHA512=m
CONFIG_CRYPTO_WP512=m
CONFIG_CRYPTO_TGR192=m
CONFIG_CRYPTO_DES=m
CONFIG_CRYPTO_BLOWFISH=m
CONFIG_CRYPTO_TWOFISH=m
CONFIG_CRYPTO_SERPENT=m
CONFIG_CRYPTO_AES_586=m
CONFIG_CRYPTO_CAST5=m
CONFIG_CRYPTO_CAST6=m
CONFIG_CRYPTO_TEA=m
CONFIG_CRYPTO_ARC4=m
CONFIG_CRYPTO_KHAZAD=m
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_DEFLATE=m
CONFIG_CRYPTO_MICHAEL_MIC=m
CONFIG_CRYPTO_CRC32C=m
# CONFIG_CRYPTO_TEST is not set

#
# Hardware crypto devices
#
# CONFIG_CRYPTO_DEV_PADLOCK is not set

#
# Library routines
#
CONFIG_CRC_CCITT=m
CONFIG_CRC32=y
CONFIG_LIBCRC32C=m
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=m

#
# Kernel hacking
#
# CONFIG_PRINTK_TIME is not set
CONFIG_DEBUG_KERNEL=y
CONFIG_MAGIC_SYSRQ=y
CONFIG_LOG_BUF_SHIFT=14
# CONFIG_SCHEDSTATS is not set
# CONFIG_DEBUG_SLAB is not set
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
# CONFIG_DEBUG_INFO is not set
# CONFIG_DEBUG_FS is not set
# CONFIG_FRAME_POINTER is not set
# CONFIG_DEBUG_STACKOVERFLOW is not set
# CONFIG_KPROBES is not set
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_PAGEALLOC is not set
# CONFIG_4KSTACKS is not set
CONFIG_X86_FIND_SMP_CONFIG=y
CONFIG_X86_MPPARSE=y

Any suggestions?

Thanks

James

^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error
@ 2005-04-14 10:47 Jiang Jun-A21079
  0 siblings, 0 replies; 50+ messages in thread
From: Jiang Jun-A21079 @ 2005-04-14 10:47 UTC (permalink / raw)
  To: linux-mtd

Compile information:
erase.c: In function `jffs2_mark_erased_block':
erase.c:336: error: structure has no member named `wbuf'
erase.c:339: error: structure has no member named `oobinfo'

JFFS2 is a snapshot of 20050413
I compile for NOR flash and WRITEBUFFER not defined.

^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error
@ 2004-03-18 12:29 Mauro Stettler
  0 siblings, 0 replies; 50+ messages in thread
From: Mauro Stettler @ 2004-03-18 12:29 UTC (permalink / raw)
  To: linux-kernel

hi list

i got en error when i do make clean bzImage to compile my kernel 2.6.4.
i already did make mrproper and oldconfig...

it's a gentoo 1.4 with gcc3.3.2-r5 and glibc2.3.2-r9



  CLEAN   scripts
  RM  $(CLEAN_FILES)
  HOSTCC  scripts/fixdep
  HOSTCC  scripts/split-include
  HOSTCC  scripts/conmakehash
  HOSTCC  scripts/docproc
  HOSTCC  scripts/kallsyms
  CC      scripts/empty.o
  HOSTCC  scripts/mk_elfconfig
  MKELF   scripts/elfconfig.h
  HOSTCC  scripts/file2alias.o
  HOSTCC  scripts/modpost.o
  HOSTCC  scripts/sumversion.o
  HOSTLD  scripts/modpost
  HOSTCC  scripts/pnmtologo
  HOSTCC  scripts/bin2c
  SPLIT   include/linux/autoconf.h -> include/config/*
  CC      arch/i386/kernel/asm-offsets.s
In file included from include/asm/system.h:5,
                 from include/asm/processor.h:18,
                 from include/linux/prefetch.h:13,
                 from include/linux/list.h:7,
                 from include/linux/signal.h:4,
                 from arch/i386/kernel/asm-offsets.c:7:
include/linux/kernel.h:10:20: stdarg.h: No such file or directory
In file included from include/asm/system.h:5,
                 from include/asm/processor.h:18,
                 from include/linux/prefetch.h:13,
                 from include/linux/list.h:7,
                 from include/linux/signal.h:4,
                 from arch/i386/kernel/asm-offsets.c:7:
include/linux/kernel.h:71: error: syntax error before "va_list"
include/linux/kernel.h:71: warning: function declaration isn't a
prototype
include/linux/kernel.h:74: error: syntax error before "va_list"
include/linux/kernel.h:74: warning: function declaration isn't a
prototype
include/linux/kernel.h:77: error: syntax error before "va_list"
include/linux/kernel.h:77: warning: function declaration isn't a
prototype
include/linux/kernel.h:81: error: syntax error before "va_list"
include/linux/kernel.h:81: warning: function declaration isn't a
prototype
make[1]: *** [arch/i386/kernel/asm-offsets.s] Error 1
make: *** [arch/i386/kernel/asm-offsets.s] Error 2



greets Mauro


^ permalink raw reply	[flat|nested] 50+ messages in thread
* compile error
@ 2004-03-02  9:42 liu zixing
  2004-03-02  9:52 ` David Woodhouse
  0 siblings, 1 reply; 50+ messages in thread
From: liu zixing @ 2004-03-02  9:42 UTC (permalink / raw)
  To: linux-mtd

I work on a board with Xscale IXP425 , I want to make a DiskOnChip 2000 as 
a storage device.
We already have a linux kernel-2.4.21-rmk1-ds1 run on it.
I download the linux driver for DOC from m-systems.com, and configure the 
"M-systems driver" as a module.
But  when I run "make modules", there are error messages:
    tffs2lnx.o compiled for a little endian system and target is big 
endian.

That means the library libosak  is compiled as little endian, 
so I want to ask whether  there is big endian version libosak ? And where 
can I download ?

thanks.
                                                             hugh.liu
                                                             3.2

_________________________________________________________________
免费下载 MSN Explorer:   http://explorer.msn.com/lccn  

^ permalink raw reply	[flat|nested] 50+ messages in thread
* Compile error
@ 2002-11-09  0:24 Indy500
  0 siblings, 0 replies; 50+ messages in thread
From: Indy500 @ 2002-11-09  0:24 UTC (permalink / raw)
  To: linux-mtd

Hi

I try to compile the CVS Tree 21.10 and above with linuxkernel 2.4.19 
but there is always a compile error on File mtdpart.c

mtdpart.c: In function `part_unpoint':
mtdpart.c:76: too many arguments to function
mtdpart.c: In function `add_mtd_partitions':
mtdpart.c:331: warning: assignment from incompatible pointer type
make[4]: *** [mtdpart.o] Fehler 1

any Ideas?

^ permalink raw reply	[flat|nested] 50+ messages in thread

end of thread, other threads:[~2025-08-05 10:56 UTC | newest]

Thread overview: 50+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-24 15:55 Compile error Don Hughes
2004-07-25 15:27 ` Mark E. Donaldson
  -- strict thread matches above, loose matches on Subject: below --
2025-08-05  2:39 compile error 刘杨
2025-08-05 10:56 ` Jan Kiszka
2023-06-05  5:30 Chan Kim
2023-06-12 21:17 ` Simon Glass
2023-06-04 14:41 Chan Kim
2023-06-12 21:17 ` Simon Glass
2017-10-24  2:17 liupan1234
2013-06-18 13:14 Fikret Alim
2013-06-18 14:12 ` Gary Thomas
2013-06-18 14:17   ` Luo Zhenhua-B19537
2009-12-18  2:00 Compile Error 陈洁丹
2009-12-18 14:35 ` Steve Grubb
2009-12-17  6:22 陈洁丹
2009-12-17 11:42 ` Steve Grubb
2009-08-04  5:25 Compile error Marko Saukko
2009-08-04 16:22 ` Shane Bryan
2009-08-04 20:20   ` Denis Kenzior
2009-08-04 20:57     ` Shane Bryan
2009-03-18  1:17 compile error Dennis Kavadas
2009-03-18  1:24 ` Julian Calaby
2009-03-18  1:29   ` Dennis Kavadas
2009-03-18  1:32     ` Julian Calaby
2009-03-18  1:34       ` Dennis Kavadas
2008-02-18  2:38 Zhao, Yunfeng
2008-02-18 10:16 ` Avi Kivity
2008-02-18 13:15   ` Zhao, Yunfeng
2008-02-18 14:51     ` Avi Kivity
2008-01-09  2:37 Zhao, Yunfeng
     [not found] ` <10EA09EFD8728347A513008B6B0DA77A029F4E20-wq7ZOvIWXbNpB2pF5aRoyrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2008-01-09  8:39   ` Avi Kivity
     [not found]     ` <4784882F.9000103-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2008-01-09 17:03       ` Hollis Blanchard
2008-01-10  9:56         ` Avi Kivity
2007-09-10  3:03 VictorLai
2007-07-09  1:13 Compile error Zhao, Yunfeng
     [not found] ` <10EA09EFD8728347A513008B6B0DA77A01B8F5C9-wq7ZOvIWXbNpB2pF5aRoyrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2007-07-09  7:02   ` Avi Kivity
2007-06-28  3:26 debug and breakpoint interrupts handling? Jun Koi
     [not found] ` <fdaac4d50706272026r33a09fe5gf96d1e2827e3fa30-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2007-06-29  6:12   ` Compile error Dong, Eddie
     [not found]     ` <10EA09EFD8728347A513008B6B0DA77A01AE9AD9-wq7ZOvIWXbNpB2pF5aRoyrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2007-07-01  9:35       ` Dor Laor
2007-06-01  5:22 compile error Zhao, Yunfeng
     [not found] ` <10EA09EFD8728347A513008B6B0DA77A01888A23-wq7ZOvIWXbNpB2pF5aRoyrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2007-06-01  6:29   ` Avi Kivity
2006-09-05 18:20 Compile Error wei.li4
2005-10-12 11:28 compile error Stephan Böni
2005-08-27 11:29 James Harper
2005-08-27 11:51 ` Keir Fraser
2005-08-27 10:44 James Harper
2005-04-14 10:47 Jiang Jun-A21079
2004-03-18 12:29 Mauro Stettler
2004-03-02  9:42 liu zixing
2004-03-02  9:52 ` David Woodhouse
2002-11-09  0:24 Compile error Indy500

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.