diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2012-02-22 00:45:14 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-02-22 09:41:00 +0100 |
commit | a07cfc98590c66e9a1c7596a160f01b36ddc2d54 (patch) | |
tree | ef51684b3a7b4c9a19cc3fbf7cc32456c69b0185 /meta-initramfs | |
parent | dc521d165d9dec214b549ff14a77909ae7ab786a (diff) | |
download | meta-openembedded-a07cfc98590c66e9a1c7596a160f01b36ddc2d54.tar.gz |
meta-initramfs: import linux-kexecboot_3.2 and _git from meta-handheld
* bump PR
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-initramfs')
-rw-r--r-- | meta-initramfs/recipes-kernel/linux/linux-kexecboot_3.2.bb | 13 | ||||
-rw-r--r-- | meta-initramfs/recipes-kernel/linux/linux-kexecboot_git.bb | 23 |
2 files changed, 36 insertions, 0 deletions
diff --git a/meta-initramfs/recipes-kernel/linux/linux-kexecboot_3.2.bb b/meta-initramfs/recipes-kernel/linux/linux-kexecboot_3.2.bb new file mode 100644 index 000000000..32074291f --- /dev/null +++ b/meta-initramfs/recipes-kernel/linux/linux-kexecboot_3.2.bb | |||
@@ -0,0 +1,13 @@ | |||
1 | require linux-kexecboot.inc | ||
2 | |||
3 | PR = "${INC_PR}.1" | ||
4 | S = "${WORKDIR}/linux-${PV}" | ||
5 | |||
6 | SRC_URI += "${KERNELORG_MIRROR}/linux/kernel/v3.x/linux-${PV}.tar.bz2;name=kernel \ | ||
7 | ${KERNELORG_MIRROR}/linux/kernel/v3.x/patch-${PV}.1.bz2;apply=yes;name=stablepatch \ | ||
8 | " | ||
9 | |||
10 | SRC_URI[kernel.md5sum] = "7ceb61f87c097fc17509844b71268935" | ||
11 | SRC_URI[kernel.sha256sum] = "c881fc2b53cf0da7ca4538aa44623a7de043a41f76fd5d0f51a31f6ed699d463" | ||
12 | SRC_URI[stablepatch.md5sum] = "31fc34340f11118873463a1d59d47b7f" | ||
13 | SRC_URI[stablepatch.sha256sum] = "e9a26dc5faa309ae5172e3c65081fa98b60befab160fb14d9a75816bbde15626" | ||
diff --git a/meta-initramfs/recipes-kernel/linux/linux-kexecboot_git.bb b/meta-initramfs/recipes-kernel/linux/linux-kexecboot_git.bb new file mode 100644 index 000000000..b1fc75bb9 --- /dev/null +++ b/meta-initramfs/recipes-kernel/linux/linux-kexecboot_git.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | require linux-kexecboot.inc | ||
2 | |||
3 | PR = "${INC_PR}.1" | ||
4 | |||
5 | KERNEL_RELEASE = "3.2.0-rc7" | ||
6 | OLD_KERNEL_RELEASE = "3.1.99" | ||
7 | PV = "${OLD_KERNEL_RELEASE}+${KERNEL_RELEASE}+gitr${SRCPV}" | ||
8 | |||
9 | SRCREV = "371de6e4e0042adf4f9b54c414154f57414ddd37" | ||
10 | |||
11 | CMDLINE_DEBUG = "debug" | ||
12 | |||
13 | S = "${WORKDIR}/git" | ||
14 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git;protocol=git;branch=master" | ||
15 | |||
16 | do_configure_prepend() { | ||
17 | #otherwise it gets extra '+' "2.6.37+" | ||
18 | #because: | ||
19 | #$ scripts/setlocalversion . => + | ||
20 | #$ make kernelversion => 2.6.37 | ||
21 | #$ make kernelrelease => 2.6.37+ | ||
22 | rm -rf ${S}/.git | ||
23 | } | ||