Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kbuild: buildtar: add dtbs support

Make 'make tar-pkg' install dtbs.

Signed-off-by: Domenico Andreoli <domenico.andreoli@linux.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

authored by

Domenico Andreoli and committed by
Masahiro Yamada
55a87cd8 685969e0

+12
+12
scripts/package/buildtar
··· 53 53 mkdir -p -- "${tmpdir}/boot" 54 54 dirs=boot 55 55 56 + 57 + # 58 + # Try to install dtbs 59 + # 60 + if grep -q '^CONFIG_OF_EARLY_FLATTREE=y' include/config/auto.conf; then 61 + # Only some architectures with OF support have this target 62 + if [ -d "${srctree}/arch/${SRCARCH}/boot/dts" ]; then 63 + $MAKE ARCH="${ARCH}" -f ${srctree}/Makefile INSTALL_DTBS_PATH="${tmpdir}/boot/dtbs/${KERNELRELEASE}" dtbs_install 64 + fi 65 + fi 66 + 67 + 56 68 # 57 69 # Try to install modules 58 70 #