Skip to content
Snippets Groups Projects
Commit 366cc8b5 authored by Tobias Kahlki's avatar Tobias Kahlki
Browse files

kernel: Disabled kernel symlinks

In Yocto Kirkstone, a new way to create kernel symlinks was added.
Since we use a FAT partition for the Kernel, symlinks are not supported.
Disable the creation of symlinks.
parent dc17c902
No related branches found
No related tags found
No related merge requests found
Pipeline #17417 failed with stage
in 13 seconds
...@@ -14,10 +14,7 @@ EXTRA_OEMAKE += " 'DTC_FLAGS=-@' " ...@@ -14,10 +14,7 @@ EXTRA_OEMAKE += " 'DTC_FLAGS=-@' "
# it generates the -- in the name # it generates the -- in the name
KERNEL_ARTIFACT_NAME = "${PKGV}-${PKGR}-${MACHINE}${IMAGE_VERSION_SUFFIX}" KERNEL_ARTIFACT_NAME = "${PKGV}-${PKGR}-${MACHINE}${IMAGE_VERSION_SUFFIX}"
do_install:append() { KERNEL_IMAGETYPE_SYMLINK = "0"
# Remove the links, we have a fat partition as /boot
find "${D}/${KERNEL_IMAGEDEST}/" -type l -exec rm -v {} \;
}
do_configure:prepend:fng() { do_configure:prepend:fng() {
sed -i -e 's|# CONFIG_LOGO_GF_FNGSYSTEM_CLUT224 is not set|# CONFIG_LOGO_GF_CLUT224 is not set|' ${WORKDIR}/defconfig sed -i -e 's|# CONFIG_LOGO_GF_FNGSYSTEM_CLUT224 is not set|# CONFIG_LOGO_GF_CLUT224 is not set|' ${WORKDIR}/defconfig
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment