Merge pull request #6 from GaryThomas/master

linux-raspberrypi: Fix kernel build when host uses make 3.82
This commit is contained in:
David-John Willis 2012-05-21 13:55:53 -07:00
commit 9179bbb13a

View File

@ -27,3 +27,7 @@ PARALLEL_MAKEINST = ""
do_configure_prepend() { do_configure_prepend() {
install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available." install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available."
} }
do_install_prepend() {
install -d ${D}/lib/firmware
}