aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/sugar
AgeCommit message (Expand)Author
2010-08-03500+ recipes: remove do_stageFrans Meulenbroeks
2010-06-14recipes: bump PR/INC_PR for packages changed in RDEPENDS/RRECOMMENDS/RSUGGEST...Martin Jansa
2010-06-10recipes: bump PR/INC_PR for packages changed in RDEPENDS/RRECOMMENDS/RSUGGEST...Martin Jansa
2010-06-03recipes: conform to OE packaging guidelines with RDEPENDS/RRECOMMENDSMartin Jansa
2010-05-25Make the do_patch apply=yes param implicit if extension is .diff/.patchChris Larson
2010-05-25Rename url params patch=<ignored>/pnum=<n> to apply={yes,no}/striplevel=<n>Chris Larson
2010-04-12recipes: move checksums to recipes from checksums.iniMartin Jansa
2010-03-25use PYTHON_SITEPACKAGES_DIRRoman I Khimov
2009-09-22sugar: added missing dependenciesElena Grandi
2009-09-22python-xklavier: Python bindings for libxklavierElena Grandi
2009-08-24sugar-base: fixed renamed dependency openssh-keygenElena Grandi
2009-08-24sugar-datastore: added runtime dependency on the xapian bindingsElena Grandi
2009-07-01etoys: updated recipe for version 4.0.2212Elena Grandi
2009-07-01sugar-toolkit: updated recipe for version 0.84.4Elena Grandi
2009-07-01sugar-presence-service: updated recipe for version 0.84.0Elena Grandi
2009-07-01sugar-datastore: updated recipe for version 0.84.0Elena Grandi
2009-07-01sugar-base: updated recipe for version 0.84.1Elena Grandi
2009-07-01sugar-artwork: updated recipe for version 0.84.1Elena Grandi
2009-07-01sugar: updated recipe for version 0.84.6Elena Grandi
2009-06-30sugarbase: inherit gnome for gconf and icon helpersKoen Kooi
2009-03-17rename packages/ to recipes/ per earlier agreementDenys Dmytriyenko
alue='jansa/insane'>jansa/insane OpenEmbedded Core user contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/module.bbclass
blob: ad6f7af1bb833b3661ff872ba7b7dec3eaf5cef5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
DEPENDS += "virtual/kernel"

inherit module-base kernel-module-split

addtask make_scripts after do_patch before do_compile
do_make_scripts[lockfiles] = "${TMPDIR}/kernel-scripts.lock"
do_make_scripts[deptask] = "do_populate_sysroot"

module_do_compile() {
	unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
	oe_runmake KERNEL_PATH=${STAGING_KERNEL_DIR}   \
		   KERNEL_SRC=${STAGING_KERNEL_DIR}    \
		   KERNEL_VERSION=${KERNEL_VERSION}    \
		   CC="${KERNEL_CC}" LD="${KERNEL_LD}" \
		   AR="${KERNEL_AR}" \
		   ${MAKE_TARGETS}
}

module_do_install() {
	unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
	oe_runmake DEPMOD=echo INSTALL_MOD_PATH="${D}" \
	           KERNEL_SRC=${STAGING_KERNEL_DIR} \
	           CC="${KERNEL_CC}" LD="${KERNEL_LD}" \
	           modules_install
}

EXPORT_FUNCTIONS do_compile do_install

# add all splitted modules to PN RDEPENDS, PN can be empty now
KERNEL_MODULES_META_PACKAGE = "${PN}"
FILES_${PN} = ""
ALLOW_EMPTY_${PN} = "1"