




已阅读5页,还剩5页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
uClinux内核编译FAQ2008-04-18 11:56:47分类: Q arm-elf-gcc -Wall -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -mlittle-endian -mtune=arm710 -march=armv3 -msoft-float -fno-builtin -nostdinc -D_LIBC -I././././include -I. -fstrict-aliasing -Os -O2 -g -fomit-frame-pointer -fno-common -fno-builtin -Wall -DEMBED -isystem /usr/local/lib/gcc-lib/arm-elf/2.95.3/include -DNDEBUG -c syscall.c -o syscall.o cc1: warning: -g with -fomit-frame-pointer may not give sensible debugging syscall.c: In function syscall: syscall.c:40: _NR_syscall undeclared (first use in this function) syscall.c:40: (Each undeclared identifier is reported only once syscall.c:40: for each function it appears in.) make6: * syscall.o Error 1 make6: Leaving directory /root/Desktop/uclinuxkernel/uClibc/libc/sysdeps/linux/arm make5: * arm Error 2 make5: Leaving directory /root/Desktop/uclinuxkernel/uClibc/libc/sysdeps/linux make4: * _dir_linux Error 2 make4: Leaving directory /root/Desktop/uclinuxkernel/uClibc/libc/sysdeps make3: * _dir_sysdeps Error 2 make3: Leaving directory /root/Desktop/uclinuxkernel/uClibc/libc make2: * _dir_libc Error 2 make2: Leaving directory /root/Desktop/uclinuxkernel/uClibc make1: * all Error 2 make1: Leaving directory /opt/uClinux-dist/lib make: * lib_only Error 2 A /opt/uClinux-dist/uClibc/libc/sysdeps/linux/arm/syscal.c add include file: #include Q config/autoconf.h: No such file or directory A #include = #include ABOUT ./uClibc/include/paths.h ./uClibc/libc/sysdeps/linux/common/syscalls.c - Q romfs-inst.sh libpam/libpam.so /lib/libpam.so.0 cp: cannot create regular file /root/uClinux-dist/romfs/lib/libpam.so.0: No such file or directory make2: * romfs Error 1 A mkdir -p romfs/lib/ - Q ioperm.c:104: BUS_ISA_PORT_SHIFT undeclared (first use in this function) ioperm.c:104: initializer element is not constant ioperm.c:104: (near initialization for ioshift_name2) make6: * ioperm.o Error 1 make6: Leaving directory /root/uClinux-dist/uClibc/libc/sysdeps/linux/arm make5: * arm Error 2 A cd uClibc make menuconfig ARCH=armnommu CROSS=arm-elf- cd . - Q arm-elf-ld -p -X -T arch/armnommu/vmlinux.lds arch/armnommu/kernel/head-armv.o arch/armnommu/kernel/init_task.o init/main.o init/version.o init/do_mounts.o -start-group arch/armnommu/kernel/kernel.o arch/armnommu/mm/mm.o arch/armnommu/mach-S3C44B0X/S3C44B0X.o kernel/kernel.o mmnommu/mmnommu.o fs/fs.o ipc/ipc.o drivers/serial/serial.o drivers/char/char.o drivers/block/block.o drivers/misc/misc.o drivers/net/net.o drivers/net/appletalk/appletalk.o drivers/media/media.o net/network.o arch/armnommu/lib/lib.a /root/uClinux-dist/linux-2.4.x/lib/lib.a /usr/local/lib/gcc-lib/arm-elf/2.95.3/libgcc.a -end-group -o linux fs/fs.o(.data+0x1378): multiple definition of romfs_file_operations romfs.o(.data+0x80): first defined here make1: * linux Error 1 make1: Leaving directory /root/uClinux-dist/linux-2.4.x make: * linux Error 1 A vi /uClinux-dist/linux-2.4.x/fs/romfs/inode.c /* Mapping from our types to the kernel */ static struct address_space_operations romfs_aops = readpage: romfs_readpage ; static struct file_operations romfs_dir_operations = read: generic_read_dir, readdir: romfs_readdir, ; static struct file_operations romfs_file_operations = read: generic_file_read, mmap: generic_file_mmap, #ifdef MAGIC_ROM_PTR romptr: romfs_romptr, #endif - Q: I get the following error message: qc-driver.c:51: linux/version.h: No such file or directory qc-driver.c:52: parse error or ./include/linux/config.h:4: linux/autoconf.h: No such file or directory or sed: cant read /usr/src/linux/Makefile: No such file or directory or Makefile:26: /usr/src/linux/.config: No such file or directory A: You must install Linux kernel source code corresponding to the kernel you will be running with the camera driver. The source must be configured and depencies must have been created. Typically you can just install the kernel source package that comes with your distribution. If youre instead using virgin kernel in /usr/src/linux-x.y.zz, you must first copy kernel configuration file to /usr/src/linux-x.y.zz/.config, then go to the directory and run make oldconfig and make dep. This should create the missing linux/version.h file. Some more help for Redhat/Mandrake users: If you get a lot of errors on mandrake or red hat when you do a make, it may be because you didnt install a full development version, meaning your kernel sources are not there. This worked for me urpmi kernel-source urpmi kernel-headers urpmi kernel-doc urpmi is your friend, it will find the CD that it needs to get this. Some rpms may be installed already, big deal, do this then do a make, it worked on mandrake 8.2! - Q: And finally, I look for /dev/video* (to set the videodev on gnomemeeting) and I havent any videodevice. A: mknod /dev/video0 c 81 0 chmod a+r /dev/video0 ln -s /dev/video0 /dev/video - Q: quickcam.c:2099: too few arguments to function remap_page_range_R2baf18f2 Damian Ivereigh posted a patch to be able to compile the driver for RedHat 9.0 but I dont know how to do A: Due to qc-usb 0.5.1, this should be now fixed. If you still encounter this problem, and if youre using qc-usb, just compile it with command USER_OPT=-DHAVE_VMA=1 make all Otherwise (if youre using older qce-ga): 1. Download qce-ga-0.40d.tar.gz package and save the patch wget http:/www.ee.oulu.fi/tuukkat/quickcam/qce-gq-rh9.patch wget http:/www.ee.oulu.fi/tuukkat/quickcam/qce-ga-0.40d.tar.gz 2. Extract the package: tar xvfz qce-ga-0.40d.tar.gz 3. Enter the source directory cd qce-ga-0.40d 4. Apply the patch: patch -s -p1 ./qce-gq-rh9.patch 5. patch complains that the patch is reversed. Answer yes: Reversed (or previously applied) patch detected! Assume -R? n y 6. Then compile and install the driver normally make ./quickcam.sh - Q: I dont have permissions for /dev/video? A: Easiest way to add permissions is to do chmod a+rw /dev/video? as root. Altenatively, especially on Debian, users belonging to the video group can access video devices. In this case, you might instead prefer issuing addgroup video as root and then login as normal user. Check in which groups your are in with id -a - Q: My log files keep filling up (but the driver works fine)! A: use qcset debug=0 to disable all possible messages. If it doesnt help, send e-mail to mailing lists showing the exact error message that fills your logs. (especially frame lost message is uninteresting, it is known to happen with some programs and will be fixed later. - Q: quickcam.o: kernel-module version mismatch quickcam.o was compiled for kernel version 2.4.18 while this kernel is version 2.4.18-686-smp. A: Then edit Makefile in the kernel source directory and change the line 4 from EXTRAVERSION = to EXTRAVERSION = -686-smp -or if this doesnt help- Go to /usr/src/linux-2.4/include/linux/version.h and change the UTS_RELEASE to match the output of uname -r on the command line (should be 2.4.18-686-smp). Then recompile the module and then the insmod will work perfectly :) from Mark - Q: I want to reverse engineer an USB camera. How? A: Run *ugh* Windoze *cough* drivers with a USB stream capture program, like /projects/usbsnoop/ Then send the same commands to the camera from Linux. - Q: I added IEEE1394 card and now Quickcam doesnt work? A: The card driver overwrites /dev/video0.2, use insmod ./quickcam.o video_nr=3 and then /dev/video3 with Quickcam. Create /dev/video3 with mknod if necessary. (from Makarand) - Error:make2: Entering directory /opt/uClinux-dist/uClibcRules.mak:25: Config: No such file or directoryYou didnt read the README, did you. =)Choose a configuration file in extras/Config/ and then run ln -s ./extra/Configs/Config. ./Config A: The solution to this seems obvious. I cp ./vendors/Lineo/uCdimm/config.uClibc ./vendors/Lineo/uCsimm and make again with the same settings as above. The library compile bombs out a little further along. - Qm68k-elf-gcc -Wall -fno-builtin -nostdinc -m68000 -nostdinc -I././././include -I/usr/local/lib/gcc-lib/m68k-elf/2.95.3/include -I. -D_LIBC -m68000 -O2 -g -fomit-frame-pointer -DCONFIG_LINEO -fno-builtin -msep-data -DEMBED -I/opt/uClinux-dist/lib/uClibc/include -I/opt/uClinux-dist -Dlinux -D_linux_ -D_uClinux_ -Dunix -I/opt/uClinux-dist/linux-2.4.x/include -DNDEBUG -DL_ioperm syscalls.c -c -o ioperm.osyscalls.c:767: sys/io.h: No such file or directorymake6: * ioperm.o Error 1 A recent posting suggests a solution. Rather than copy individual missing files, I untared an older uClibc-snapshot into ./uClibc and then overcopied with the uClibc-0.9.10 tree. The make goes further still and stops with. use the uClib of uClinux-dist-20050311.tar.gz replace it,because I can make it in that. - Qm68k-elf-gcc -Wall -fno-builtin -c crti.S -o crti.ocp crti.o ././././lib/cp: cannot create regular file ././././lib/crti.o: No such file or directorymake6: * crti.o Error 1 A Now Im lost. I made a wild guess which is probably wrong and created a directory called ./uClibc/lib and recompiled. - Qmake6: Entering directory /opt/uClinux-dist/uClibc/libc/sysdeps/linux/m68km68k-elf-gcc -Wall -fno-builtin -nostdinc -m68000 -nostdinc -I././././include -I/usr/local/lib/gcc-lib/m68k-elf/2.95.3/include -I. -D_LIBC -m68000 -O2 -g -fomit-frame-pointer -DCONFIG_LINEO -fno-builtin -msep-data -DEMBED -I/opt/uClinux-dist/lib/uClibc/include -I/opt/uClinux-dist -Dlinux -D_linux_ -D_uClinux_ -Dunix -I/opt/uClinux-dist/linux-2.4.x/include -DNDEBUG -c _longjmp.S -o _longjmp.o././././include/bits/setjmp.h: Assembler messages:././././include/bits/setjmp.h:25: Error: Unknown operator - statement typedef struct ignored etc A My hos
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 个人家属楼租赁合同5篇
- 新成都市标准劳动合同范本4篇
- 美术材料购销合同范本
- 防水护栏安装合同范本
- 个人渔船雇员合同范本
- 多用途擦地机订购合同6篇
- 清洁与消毒管理培训考试试题及答案
- 知识竟赛数学题目及答案
- 知二求二题目及答案大全
- 商业地产投资项目管理方案落实方案
- 职场应用文高职PPT完整全套教学课件
- 垃圾焚烧发电项目电气安装与调试施工方案
- GB/T 42381.8-2023数据质量第8部分:信息和数据质量:概念和测量
- 设施蔬菜生产机械化技术
- LY/T 1821-2009林业地图图式
- JJF 1272-2011阻容法露点湿度计校准规范
- 液压与气压传动 第2版 马振福 高职课件0、1新
- 危化品安全管理学习课件
- SY∕T 7298-2016 陆上石油天然气开采钻井废物处置污染控制技术要求
- 突发事件处理记录表(标准范本)
- 磁敏传感器(品) 课件
评论
0/150
提交评论