diff options
author | Koen Kooi <koen@openembedded.org> | 2009-01-30 12:18:36 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-01-30 12:18:36 +0100 |
commit | efb46ab0f4c8168d628f6e21c195727ed1a152fb (patch) | |
tree | c8dad60fb514e300a96b4dcfdbc3a246ef2550be /packages/kexecboot/linux-kexecboot_2.6.21-hh20.bb | |
parent | fc03e2be0b4470748a8b7707cea7293303adc424 (diff) |
linux-kexecboot 2.6.21: do postprocessing on initramfs in do_configure_append
Diffstat (limited to 'packages/kexecboot/linux-kexecboot_2.6.21-hh20.bb')
-rw-r--r-- | packages/kexecboot/linux-kexecboot_2.6.21-hh20.bb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/kexecboot/linux-kexecboot_2.6.21-hh20.bb b/packages/kexecboot/linux-kexecboot_2.6.21-hh20.bb index 6dd9dd1c20..9689396a20 100644 --- a/packages/kexecboot/linux-kexecboot_2.6.21-hh20.bb +++ b/packages/kexecboot/linux-kexecboot_2.6.21-hh20.bb @@ -11,3 +11,11 @@ SRC_URI = "${HANDHELDS_CVS};module=linux/kernel26;tag=${@'K' + bb.data.getVar('P file://defconfig" S = "${WORKDIR}/kernel26" + + +do_configure_append() { + gzip -d ${S}/initramfs.cpio.gz || true + sed -i -e s:\.gz::g .config +} + + |