From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <457FF5B6.7070509@domain.hid> Content-Class: urn:content-classes:message Date: Wed, 13 Dec 2006 13:44:38 +0100 From: "Niklaus Burren" MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="ISO-8859-15" Content-Transfer-Encoding: 7bit Subject: [Xenomai-help] Symbols undefined [Scanned] List-Id: Help regarding installation and common use of Xenomai List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: xenomai@xenomai.org Hello Im trying to create a Xenomai kernel module for a ARM processor (PXA-270). In this module I register a interrupt handler with the function rt_inter_create(). When I compile the module I get the following warnings: *** Warning: "rt_intr_delete" [/home/student/work/xenomai/latency-test/latency-test.ko] undefined! *** Warning: "rt_intr_create" [/home/student/work/xenomai/latency-test/latency-test.ko] undefined! *** Warning: "rt_intr_enable" [/home/student/work/xenomai/latency-test/latency-test.ko] undefined! I don't know what is wrong. In my makefile I have defined the paths to the libraries and the include files of xenomai: obj-m = latency-test.o XENODIR = /opt/carme/rootfs/usr/xenomai KDIR = /opt/carme/linux-2.6.15-col2 PWD = $(shell pwd) EXTRA_CFLAGS = -I $(XENODIR)/include -L $(XENODIR)/lib all: $(MAKE) -C $(KDIR) M=$(PWD) modules clean: $(MAKE) -C $(KDIR) M=$(PWD) clean Has someone an idea what is wrong? Kind Regards Niklaus Burren