All of lore.kernel.org
 help / color / mirror / Atom feed
From: Philippe Gerum <rpm@xenomai.org>
To: Helder Daniel <hdaniel@ualg.pt>,
	"Xenomai@xenomai.org" <xenomai@xenomai.org>
Subject: Re: [Xenomai] Fwd: Error boilerplate/wrappers.h no found trying to compile RTDM module on 3.x-rc3 cobalt
Date: Tue, 10 Mar 2015 22:39:59 +0100	[thread overview]
Message-ID: <54FF64AF.5000300@xenomai.org> (raw)
In-Reply-To: <CAKk99t03p_Pc41meo_zzZ0V6X_vjHZRWBeO1aNb+DM2c38pNTg@mail.gmail.com>

On 03/09/2015 07:57 PM, Helder Daniel wrote:
> Hi again,
> 
> I am sorry to ask help again about this point but I still am no able to
> compile a kernel module with Xenomai 3.x support.
> 
> I made the changes pointed in the previous email:
> In the module is now being included just:
> 
> <rtdm/driver.h>
> 
> and the makefile is now:
> 
> EXTRA_CFLAGS := $(shell xeno-config --kcflags)
> all:
> 
> make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
> 

You need /lib/modules/$(shell uname -r)/build to refer to a kernel tree
prepared with the Xenomai kernel sources, i.e. scripts/prepare-kernel.sh
should have run in this source tree at some point. The errors you get
indicate that no Xenomai code can be found there.

A basic Makefile for foo_module.ko composed of a single source foo.c,
and pulling the extra CFLAGS from xeno-config, could look like:

$(eval ccflags-y = $(shell xeno-config --kcflags))
obj-y += foo_module.o
foo_module-y := foo.o

-- 
Philippe.


  reply	other threads:[~2015-03-10 21:39 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-06  9:28 [Xenomai] Error boilerplate/wrappers.h no found trying to compile RTDM module on 3.x-rc3 cobalt Helder Daniel
2015-03-06  9:38 ` Philippe Gerum
     [not found]   ` <CAKk99t1AGHj8sOf7Vgy_UZ_+rECP5Vx22cyup--FHsh=RuK2zA@mail.gmail.com>
2015-03-06 10:14     ` Philippe Gerum
     [not found]       ` <CAKk99t3FfAff0X0nGzKD+YcVFQWm5aeSRFB4U6No1YSPuS_qpA@mail.gmail.com>
2015-03-09 18:57         ` [Xenomai] Fwd: " Helder Daniel
2015-03-10 21:39           ` Philippe Gerum [this message]
2015-03-11 17:30             ` Helder Daniel
2015-03-11 20:21               ` Philippe Gerum
2015-03-11 21:01                 ` Gilles Chanteperdrix
2015-03-13 13:50                   ` Helder Daniel
2015-03-13 14:04                     ` Gilles Chanteperdrix
2015-03-13 16:27                       ` Helder Daniel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=54FF64AF.5000300@xenomai.org \
    --to=rpm@xenomai.org \
    --cc=hdaniel@ualg.pt \
    --cc=xenomai@xenomai.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.