-
Notifications
You must be signed in to change notification settings - Fork 408
Description
Dear all,
I am working to build the kernel using the yocto embedded toolchain https://www.yoctoproject.org. It does not work out of the box because the build process in Kernel 3.4 creates a recursive symbolic link while building /drivers/gpu/arm/mali400/ump
The reason for this behaviour in the 3.4.y kernel is the commit 73341c8 where arch-release is added. It was removed in commit 9a3fbdc.
The following path fixes this issue.
--- linux/drivers/gpu/arm/mali400/ump/Kbuild 2014-07-30 15:44:03.984805492 +0200
+++ linux/drivers/gpu/arm/mali400/ump/Kbuild 2014-07-30 15:44:39.609139070 +0200
@@ -21,7 +21,7 @@
else
Link arch to the selected arch-config directory
-$(shell ln -sf arch-$(CONFIG) $(src)/arch)
+$(shell ln -sf
endif
Maybe add this fix to the master branch?