shaddow501 Posted February 11, 2020 Posted February 11, 2020 Hello If I would like to build a specific Kernel (5.1.15-sunxi64) that I have already made before and just want to add some patches to the kernel, what is the right command? ./compile.sh BOARD=bananapim64 BRANCH=5.1.15y RELEASE=bionic BUILD_MINIMAL=no BUILD_DESKTOP=no KERNEL_ONLY=no KERNEL_CONFIGURE=no INSTALL_HEADERS=yes
martinayotte Posted February 11, 2020 Posted February 11, 2020 17 minutes ago, shaddow501 said: BRANCH=5.1.15y You can not specify kernel number like that ... This variable is to specify branches like "BRANCH=current" or "BRANCH=dev". And in both cases, patches are maintained accordingly where current=5.4.y and dev=5.5.y, so no ways to get back in the past for 5.1.15 since we switched from 5.1.y to 5.2.y back in July ... https://github.com/armbian/build/commit/dbb265135a0010efa286285fc87a04e2bd9e6fc8
shaddow501 Posted February 11, 2020 Author Posted February 11, 2020 So there is no way to create version 5.1.15 even though it was created before in my Ubuntu machine and have all the files cashed there?
martinayotte Posted February 11, 2020 Posted February 11, 2020 55 minutes ago, shaddow501 said: So there is no way to create version 5.1.15 even though it was created before in my Ubuntu machine and have all the files cashed there? Perhaps manually, if you left your machine in that state ...
martinayotte Posted February 11, 2020 Posted February 11, 2020 2 minutes ago, shaddow501 said: Do you might have any guide? Go inside your 5.1.15 tree, check the beginning of the Makefile to verify the version, you should have : VERSION = 5 PATCHLEVEL = 1 SUBLEVEL = 15 Then you can rebuild it using those commands : make -j4 ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-" oldconfig make -j4 ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-" Image modules make -j4 ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-" INSTALL_PATH=$PWD/output install make -j4 ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-" INSTALL_MOD_PATH=$PWD/output modules_install make -j4 ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-" INSTALL_HDR_PATH=$PWD/output headers_install make -j4 ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-" INSTALL_DTBS_PATH=$PWD/output/dtb dtbs Kernel files will be produced in "output" folder.
shaddow501 Posted February 11, 2020 Author Posted February 11, 2020 Thanks I will try. How do I insert my patch with those commands?
martinayotte Posted February 11, 2020 Posted February 11, 2020 14 minutes ago, shaddow501 said: How do I insert my patch with those commands? From that folder, "patch -p1 < my_patch_file" ...
shaddow501 Posted February 11, 2020 Author Posted February 11, 2020 37 minutes ago, martinayotte said: From that folder, "patch -p1 < my_patch_file" ... Thanks
shaddow501 Posted February 20, 2020 Author Posted February 20, 2020 Hello martinayotte I have succeeded to perform the commands that you have given me and recompile to the output directory. But now can you instruct me how to create the debs for installation? 1 . linux-u-boot*.deb 2. linux-headers-*.deb 3. linux-dtb*.deb 4. linux-image*.deb 5. full Linux image? So I can install those in the target?
martinayotte Posted February 20, 2020 Posted February 20, 2020 58 minutes ago, shaddow501 said: But now can you instruct me how to create the debs for installation? 1 . linux-u-boot*.deb 2. linux-headers-*.deb 3. linux-dtb*.deb 4. linux-image*.deb 5. full Linux image? Unfortunately, this would be too complex ... You have to copies manually from files in $PWD/output to your existing installation using SSH.
shaddow501 Posted February 20, 2020 Author Posted February 20, 2020 40 minutes ago, martinayotte said: Unfortunately, this would be too complex ... You have to copies manually from files in $PWD/output to your existing installation using SSH. So I do really do not understand. I was able to compile a new kernel but cannot install it?? so what is the point? What do I copy? why isnt it possible to modify the script to not download a new kernel but to use the one in the cache folder? The files already stored there, it shouldnt download anything new just to use the existing? Why is it so complex??
martinayotte Posted February 20, 2020 Posted February 20, 2020 44 minutes ago, shaddow501 said: What do I copy? Like I've said the content of $PWD/output, so zImage, kernel modules, dtb. 45 minutes ago, shaddow501 said: Why is it so complex?? Because you will have to learn much more about all tools "dpkg-buildpackage" and others ...
shaddow501 Posted February 20, 2020 Author Posted February 20, 2020 5 hours ago, martinayotte said: Like I've said the content of $PWD/output, so zImage, kernel modules, dtb. Because you will have to learn much more about all tools "dpkg-buildpackage" and others ... That is why I ask for help from Linux experts, not all of us have a lot of knowledge like you do. how do I do the zimage thing ? how do I create the deb file? can you give me an example? I have added: KERNELBRANCH='tag:v5.1.21' to build/userpatches/lib.config but I get: o.k. ] Checking git sources [ linux-mainline 5.1.21 ] [ .... ] Creating local copy [ .... ] Fetching updates fatal: Couldn't find remote ref tags/5.1.21 [ .... ] Checking out error: pathspec 'FETCH_HEAD' did not match any file(s) known to git. Where do I find the available working tags?? where does it look for the source from? why cant I build an older kernel?' Why it isnt possible to use the downloaded kernel source from here https://mirrors.edge.kernel.org/pub/linux/kernel/ and use the script to compile a kernel based on it. I have searched in the internet for about 3 days for a how to. There is nothing!
shaddow501 Posted February 26, 2020 Author Posted February 26, 2020 On 2/11/2020 at 11:50 PM, martinayotte said: Go inside your 5.1.15 tree, check the beginning of the Makefile to verify the version, you should have : VERSION = 5 PATCHLEVEL = 1 SUBLEVEL = 15 Then you can rebuild it using those commands : make -j4 ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-" oldconfig make -j4 ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-" Image modules make -j4 ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-" INSTALL_PATH=$PWD/output install make -j4 ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-" INSTALL_MOD_PATH=$PWD/output modules_install make -j4 ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-" INSTALL_HDR_PATH=$PWD/output headers_install make -j4 ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-" INSTALL_DTBS_PATH=$PWD/output/dtb dtbs Kernel files will be produced in "output" folder. When trying to compile the debs file using the debug switch I get those errors. sudo make -j4 ARCH=arm64 CROSS_COMPILE="ccache aarch64-linux-gnu-" INSTALL_DTBS_PATH=$PWD/output/dtb dtbs --debug GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... File 'dtbs' does not exist. File 'prepare3' does not exist. File 'FORCE' does not exist. Must remake target 'FORCE'. Successfully remade target file 'FORCE'. Prerequisite 'FORCE' of target 'include/config/kernel.release' does not exist. Must remake target 'include/config/kernel.release'. File 'scripts_dtc' does not exist. File 'scripts_basic' does not exist. Must remake target 'scripts_basic'. File 'prepare3' does not exist. File 'scripts_dtc' does not exist. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... File '__build' does not exist. File 'FORCE' does not exist. Must remake target 'FORCE'. Successfully remade target file 'FORCE'. Prerequisite 'FORCE' of target 'scripts/basic/fixdep' does not exist. Must remake target 'scripts/basic/fixdep'. Successfully remade target file 'scripts/basic/fixdep'. Must remake target '__build'. Successfully remade target file '__build'. File 'dtbs' does not exist. File 'prepare3' does not exist. File 'scripts_dtc' does not exist. Must remake target 'scripts_dtc'. File 'prepare3' does not exist. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... File '__build' does not exist. File 'FORCE' does not exist. Must remake target 'FORCE'. Successfully remade target file 'FORCE'. Prerequisite 'FORCE' of target 'scripts/dtc/dtc.o' does not exist. Must remake target 'scripts/dtc/dtc.o'. Successfully remade target file 'scripts/dtc/dtc.o'. Prerequisite 'FORCE' of target 'scripts/dtc/flattree.o' does not exist. Must remake target 'scripts/dtc/flattree.o'. Successfully remade target file 'scripts/dtc/flattree.o'. Prerequisite 'FORCE' of target 'scripts/dtc/fstree.o' does not exist. Must remake target 'scripts/dtc/fstree.o'. Successfully remade target file 'scripts/dtc/fstree.o'. Prerequisite 'FORCE' of target 'scripts/dtc/data.o' does not exist. Must remake target 'scripts/dtc/data.o'. Successfully remade target file 'scripts/dtc/data.o'. Prerequisite 'FORCE' of target 'scripts/dtc/livetree.o' does not exist. Must remake target 'scripts/dtc/livetree.o'. Successfully remade target file 'scripts/dtc/livetree.o'. Prerequisite 'FORCE' of target 'scripts/dtc/treesource.o' does not exist. Must remake target 'scripts/dtc/treesource.o'. Successfully remade target file 'scripts/dtc/treesource.o'. Prerequisite 'FORCE' of target 'scripts/dtc/srcpos.o' does not exist. Must remake target 'scripts/dtc/srcpos.o'. Successfully remade target file 'scripts/dtc/srcpos.o'. Prerequisite 'FORCE' of target 'scripts/dtc/checks.o' does not exist. Must remake target 'scripts/dtc/checks.o'. Successfully remade target file 'scripts/dtc/checks.o'. Prerequisite 'FORCE' of target 'scripts/dtc/util.o' does not exist. Must remake target 'scripts/dtc/util.o'. Successfully remade target file 'scripts/dtc/util.o'. Prerequisite 'FORCE' of target 'scripts/dtc/dtc-lexer.lex.c' does not exist. Must remake target 'scripts/dtc/dtc-lexer.lex.c'. Successfully remade target file 'scripts/dtc/dtc-lexer.lex.c'. Prerequisite 'FORCE' of target 'scripts/dtc/dtc-parser.tab.h' does not exist. Must remake target 'scripts/dtc/dtc-parser.tab.h'. Successfully remade target file 'scripts/dtc/dtc-parser.tab.h'. Prerequisite 'FORCE' of target 'scripts/dtc/dtc-lexer.lex.o' does not exist. Must remake target 'scripts/dtc/dtc-lexer.lex.o'. Successfully remade target file 'scripts/dtc/dtc-lexer.lex.o'. Prerequisite 'FORCE' of target 'scripts/dtc/dtc-parser.tab.c' does not exist. Must remake target 'scripts/dtc/dtc-parser.tab.c'. Successfully remade target file 'scripts/dtc/dtc-parser.tab.c'. Prerequisite 'FORCE' of target 'scripts/dtc/dtc-parser.tab.o' does not exist. Must remake target 'scripts/dtc/dtc-parser.tab.o'. File 'dtbs' does not exist. File 'prepare3' does not exist. Must remake target 'prepare3'. Successfully remade target file 'prepare3'. Successfully remade target file 'scripts/dtc/dtc-parser.tab.o'. Prerequisite 'FORCE' of target 'scripts/dtc/dtc' does not exist. Must remake target 'scripts/dtc/dtc'. Successfully remade target file 'scripts/dtc/dtc'. Must remake target '__build'. Successfully remade target file '__build'. File 'dtbs' does not exist. Must remake target 'dtbs'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... File '__build' does not exist. File 'arch/arm64/boot/dts/actions' does not exist. Must remake target 'arch/arm64/boot/dts/actions'. File 'arch/arm64/boot/dts/al' does not exist. Must remake target 'arch/arm64/boot/dts/al'. File 'arch/arm64/boot/dts/allwinner' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner'. File 'arch/arm64/boot/dts/altera' does not exist. Must remake target 'arch/arm64/boot/dts/altera'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... File 'arch/arm64/boot/dts/amd' does not exist. GNU Make 4.1 Must remake target 'arch/arm64/boot/dts/amd'. Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. File 'arch/arm64/boot/dts/amlogic' does not exist. Must remake target 'arch/arm64/boot/dts/amlogic'. File 'arch/arm64/boot/dts/apm' does not exist. Must remake target 'arch/arm64/boot/dts/apm'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... File '__build' does not exist. File 'FORCE' does not exist. Must remake target 'FORCE'. Successfully remade target file 'FORCE'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-a64-amarula-relic.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-a64-amarula-relic.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-a64-amarula-relic.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-a64-bananapi-m64.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-a64-bananapi-m64.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-a64-bananapi-m64.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-a64-nanopi-a64.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-a64-nanopi-a64.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-a64-nanopi-a64.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-a64-olinuxino.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-a64-olinuxino.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-a64-olinuxino.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-a64-orangepi-win.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-a64-orangepi-win.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-a64-orangepi-win.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-a64-pine64-lts.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-a64-pine64-lts.dtb'. Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-a64-pine64-lts.dtb'. Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-a64-pine64-plus.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-a64-pine64-plus.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-a64-pine64-plus.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-a64-pine64.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-a64-pine64.dtb'. File 'arch/arm64/boot/dts/arm' does not exist. Must remake target 'arch/arm64/boot/dts/arm'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-a64-pine64.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-a64-pinebook.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-a64-pinebook.dtb'. File 'arch/arm64/boot/dts/bitmain' does not exist. Must remake target 'arch/arm64/boot/dts/bitmain'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-a64-pinebook.dtb'. GNU Make 4.1 Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-a64-sopine-baseboard.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-a64-sopine-baseboard.dtb'. Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-a64-sopine-baseboard.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h5-bananapi-m2-plus.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h5-bananapi-m2-plus.dtb'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h5-bananapi-m2-plus.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h5-bananapi-m2-plus-v1.2.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h5-bananapi-m2-plus-v1.2.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h5-bananapi-m2-plus-v1.2.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h5-libretech-all-h3-cc.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h5-libretech-all-h3-cc.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h5-libretech-all-h3-cc.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h5-nanopi-neo2.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h5-nanopi-neo2.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h5-nanopi-neo2.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h5-nanopi-neo-plus2.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h5-nanopi-neo-plus2.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h5-nanopi-neo-plus2.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-pc2.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-pc2.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-pc2.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-prime.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-prime.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-prime.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dtb' does not exist. Updating goal targets.... Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dtb'. File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. Updating goal targets.... Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dtb'. File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-3.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-3.dtb'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-3.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-lite2.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-lite2.dtb'. File 'arch/arm64/boot/dts/broadcom' does not exist. Must remake target 'arch/arm64/boot/dts/broadcom'. Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-lite2.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-one-plus.dtb' does not exist. Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-one-plus.dtb'. File 'arch/arm64/boot/dts/cavium' does not exist. Must remake target 'arch/arm64/boot/dts/cavium'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-one-plus.dtb'. Prerequisite 'FORCE' of target 'arch/arm64/boot/dts/allwinner/sun50i-h6-pine-h64.dtb' does not exist. GNU Make 4.1 Must remake target 'arch/arm64/boot/dts/allwinner/sun50i-h6-pine-h64.dtb'. Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Successfully remade target file 'arch/arm64/boot/dts/allwinner/sun50i-h6-pine-h64.dtb'. Must remake target '__build'. Successfully remade target file '__build'. File 'arch/arm64/boot/dts/exynos' does not exist. Must remake target 'arch/arm64/boot/dts/exynos'. GNU Make 4.1 Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... File 'arch/arm64/boot/dts/freescale' does not exist. Must remake target 'arch/arm64/boot/dts/freescale'. Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Updating goal targets.... File '__build' does not exist. File 'arch/arm64/boot/dts/broadcom/northstar2' does not exist. Must remake target 'arch/arm64/boot/dts/broadcom/northstar2'. File 'arch/arm64/boot/dts/hisilicon' does not exist. Must remake target 'arch/arm64/boot/dts/hisilicon'. Reading makefiles... File 'arch/arm64/boot/dts/broadcom/stingray' does not exist. Must remake target 'arch/arm64/boot/dts/broadcom/stingray'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. File 'arch/arm64/boot/dts/lg' does not exist. Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Must remake target 'arch/arm64/boot/dts/lg'. Successfully remade target file '__build'. File '__build' does not exist. File 'arch/arm64/boot/dts/marvell' does not exist. Must remake target 'arch/arm64/boot/dts/marvell'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... GNU Make 4.1 GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> There is NO WARRANTY, to the extent permitted by law. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Reading makefiles... Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. File 'arch/arm64/boot/dts/mediatek' does not exist. Must remake target 'arch/arm64/boot/dts/mediatek'. Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... File 'arch/arm64/boot/dts/nvidia' does not exist. Must remake target 'arch/arm64/boot/dts/nvidia'. Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. File 'arch/arm64/boot/dts/qcom' does not exist. Must remake target 'arch/arm64/boot/dts/qcom'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. File 'arch/arm64/boot/dts/realtek' does not exist. Must remake target 'arch/arm64/boot/dts/realtek'. Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... File 'arch/arm64/boot/dts/renesas' does not exist. Must remake target 'arch/arm64/boot/dts/renesas'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. Updating goal targets.... File 'arch/arm64/boot/dts/rockchip' does not exist. Must remake target 'arch/arm64/boot/dts/rockchip'. File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. File 'arch/arm64/boot/dts/socionext' does not exist. Must remake target 'arch/arm64/boot/dts/socionext'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. GNU Make 4.1 Reading makefiles... Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. File 'arch/arm64/boot/dts/sprd' does not exist. Must remake target 'arch/arm64/boot/dts/sprd'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. File 'arch/arm64/boot/dts/synaptics' does not exist. Must remake target 'arch/arm64/boot/dts/synaptics'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. File 'arch/arm64/boot/dts/ti' does not exist. Must remake target 'arch/arm64/boot/dts/ti'. Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... File 'arch/arm64/boot/dts/xilinx' does not exist. Must remake target 'arch/arm64/boot/dts/xilinx'. Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. GNU Make 4.1 File 'arch/arm64/boot/dts/zte' does not exist. Must remake target 'arch/arm64/boot/dts/zte'. Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... Updating goal targets.... File '__build' does not exist. File '__build' does not exist. Must remake target '__build'. Must remake target '__build'. Successfully remade target file '__build'. Successfully remade target file '__build'. Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. File '__build' does not exist. GNU Make 4.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Reading makefiles... Updating goal targets.... File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'. File '__build' does not exist. Must remake target '__build'. Successfully remade target file '__build'.
Recommended Posts