Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > GNU Linux Zone > The Linux Kernel > [SOLVED] Makefile for module in and out of Kconfig/Kbuild system
 The Linux Kernel   Compiling, theory, programming or other discussion about the linux kernel

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Closed Thread
 
Thread Tools Display Modes
Old 09-12-2008   #1 (permalink)
Just Joined!
 
Join Date: Sep 2008
Posts: 4
[SOLVED] Makefile for module in and out of Kconfig/Kbuild system

What I want to do is be able to build a module both inside and outside of the kernel build system.
  • Inside=at the top level of the Linux sources do: make menuconfig, make etc
  • Outside=just go into a working directory with the module source in and type 'make'

In my Kbuild I have:

obj-$(CONFIG_THING) := thing.o
thing-y := thing_1.o \
thing_2.o


This works when I build within the kernel build system (make menuconfig, make etc...)
when I set CONFIG_THING to m via the Kconfig system I get a thing.ko built.
when I set CONFIG_THING to y via the Kconfig system I get thing support built into the kernel.

I thought that a Makefile similar to that below would help, but obviously CONFIG_THING does not
get set correctly.

ifneq ($(KERNELRELEASE),)
include Kbuild
else
# Normal Makefile
KERNELDIR := /lib/modules/`uname -r`/build
CONFIG_THING = m
all:
$(MAKE) -C $(KERNELDIR) M=`pwd` $@

# Module clean up
clean:
$(MAKE) -C $(KERNELDIR) M=`pwd` clean

endif


Is there any way I can force CONFIG_THING to be 'm' in order to reuse the Kbuild file?
SteveL is offline  

Old 09-15-2008   #2 (permalink)
Just Joined!
 
Join Date: Sep 2008
Posts: 4
Thumbs up

Solved!

In my Makefile I added 'CONFIG_THING=m' to the make call, thus:

all:
$(MAKE) -C $(KERNELDIR) M=`pwd` $@ CONFIG_THING=m

I'm pretty sure that does what I want.
SteveL is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Free Network Mapping Tool for Microsoft® Office Visio® Professional 2007 Users
Don't map your network by hand – let LANsurveyor Express for Microsoft Visio Professional 2007 automatically create network diagrams for you.
subscribe
Free eBook:"Vulnerability Management for Dummies"
Get all the Facts and See How to Implement a Successful Vulnerability Management Program.
subscribe
Google vs The World: The Battle of the Message Security Vendors
With such a powerful name behind it, Google Message Security stands out in a sea of products that do exactly the same thing - or so they say.
subscribe

Safe, Secure Backup


All times are GMT. The time now is 11:02 AM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2