summaryrefslogtreecommitdiff
path: root/toolchain/linux-headers
AgeCommit message (Collapse)Author
2021-11-01toolchain: linux-headers: Fix kernel version for ADK_UPDATE_PATCHES_GITPhil Sutter
When using git to apply kernel patches, the extracted kernel sources become a git repository with HEAD not being at a tag. Therefore $(LINUX_DIR)/scripts/setlocalversion appends '+' to the kernel version string which ADK in turn does not expect. In consequence, 'modprobe' on target won't find any modules. Avoid this by creating an empty '$(LINUX_DIR)/.scmversion' file - setlocalversion recognizes it and uses its content instead of doing its own detection. Signed-off-by: Phil Sutter <phil@nwl.cc>
2021-11-01mk: Introduce KERNEL_MAKE variablePhil Sutter
This combines the typical kernel make call idiom into a single variable reference. A side-effect is that parallel make is enabled (via added '-j' flag) in many cases, but that shouldn't cause harm. Signed-off-by: Phil Sutter <phil@nwl.cc>
2018-03-07add support for walduxWaldemar Brodkorb