From b53807060ba4dc3bff9934b84dc6ad57251bcf77 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Thu, 19 Nov 2015 17:54:11 +0100 Subject: [PATCH] sysmocom-owhw-image: no initramfs, hard-link for kernel for some reason barebox is not able to resolve the symlink, so let's create a hard link instead. --- recipes-apps/images/sysmocom-owhw-image.bb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/recipes-apps/images/sysmocom-owhw-image.bb b/recipes-apps/images/sysmocom-owhw-image.bb index 4ab9a70..ec1e294 100644 --- a/recipes-apps/images/sysmocom-owhw-image.bb +++ b/recipes-apps/images/sysmocom-owhw-image.bb @@ -15,13 +15,11 @@ link_kernel() { OLD_PWD=$PWD cd ${IMAGE_ROOTFS}/ - ln -s ./boot/uImage-* ./kernel || true + ln ./boot/uImage-* ./kernel || true echo "Copying devicetree to /devicetree" cp "${DEPLOY_DIR_IMAGE}/uImage-am335x-gsmk-owhw.dtb" ./devicetree - touch ./initramfs - cd $OLD_PWD }