diff options
Diffstat (limited to 'linux')
-rw-r--r-- | linux/gumstix_2.6.5-gnalm1-gum0.oe | 2 | ||||
-rw-r--r-- | linux/omap_2.6.5-omap1.oe | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/linux/gumstix_2.6.5-gnalm1-gum0.oe b/linux/gumstix_2.6.5-gnalm1-gum0.oe index bae18ef450..4ba8e73184 100644 --- a/linux/gumstix_2.6.5-gnalm1-gum0.oe +++ b/linux/gumstix_2.6.5-gnalm1-gum0.oe @@ -13,7 +13,7 @@ inherit kernel KERNEL_IMAGETYPE = "zImage" do_configure_prepend() { - oe_machinstall -m 0644 ${WORKDIR}/defconfig ${S}/.config || die "no default configuration for ${MACHINE} available." + install -m 0644 ${WORKDIR}/defconfig ${S}/.config || die "no default configuration for ${MACHINE} available." oe_runmake oldconfig } diff --git a/linux/omap_2.6.5-omap1.oe b/linux/omap_2.6.5-omap1.oe index d35dfced88..8593e83072 100644 --- a/linux/omap_2.6.5-omap1.oe +++ b/linux/omap_2.6.5-omap1.oe @@ -11,7 +11,7 @@ inherit kernel KERNEL_IMAGETYPE = "zImage" do_configure_prepend() { - oe_machinstall -m 0644 ${WORKDIR}/defconfig ${S}/.config || die "no default configuration for ${MACHINE} available." + install -m 0644 ${WORKDIR}/defconfig ${S}/.config || die "no default configuration for ${MACHINE} available." oe_runmake oldconfig } |