Phenomenon The system could compile the Linux system kernel normally, but after installing SVN, the kernel compilation failed. CHK include/linux/version.h CHK include/generated/utsrelease.h make[1]: `include/generated/mach-types.h' is up to date. CALL scripts/checksyscalls.sh CHK include/generated/compile.h gcc: directory: No such file or directory gcc: directory": No such file or directory <command-line>:0: warning: missing terminating " character gcc: directory: No such file or directory gcc: directory": No such file or directory <command-line>:0: warning: missing terminating " character gcc: directory: No such file or directory gcc: directory": No such file or directory <command-line>:0: warning: missing terminating " character CC drivers/gpu/mali/mali/common/mali_kernel_core.o arm-eabi-gcc: error: ": No such file or directory make[4]: *** [drivers/gpu/mali/mali/common/mali_kernel_core.o] Error 1 make[3]: *** [drivers/gpu/mali/mali] Error 2 make[2]: *** [drivers/gpu/mali] Error 2 make[1]: *** [drivers/gpu] Error 2 make: *** [drivers] Error 2 make: *** Waiting for unfinished tasks.... Cause Analysis We found that there are statements about SVN_REV:=xxxx in drivers/gpu/mali/ump/Makefile.common and drivers/gpu/mali/mali/Makefile. Under normal circumstances, SVN_REV:= is empty. When the SVN version is checked, SVN_REV:= has a value, which causes the script to go into the wrong branch. Workaround Just assign the SVN_REV value in both files to empty "". drivers/gpu/mali/ump/Makefile.common: 16 # Get subversion revision number, fall back to 0000 if no svn info is available 17 #SVN_REV:=$(shell ((svnversion | grep -qv exported && echo -n 'Revision: ' && svnversion) || git svn info | sed -e 's/$$$$/M/' | grep '^Revision: ' || echo ${MALI_RELEASE_NAME}) 2>/dev/null | sed -e 's/^Revision: //') 19 SVN_REV:="" drivers/gpu/mali/mali/Makefile: 117 #SVN_REV := $(shell (cd $(DRIVER_DIR); (svnversion | grep -qv exported && svnversion) || git svn info | grep '^Revision: '| sed -e 's/ ^Revision: //' ) 2>/dev/null ) 119 SVN_REV := "" Summarize This is the end of this article about resolving conflicts between Linux kernel and SVN versions. For more information about resolving conflicts between Linux kernel and SVN versions, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: MySQL 8.0.18 deployment and installation tutorial under Windows 7
>>: Vue development tree structure components (component recursion)
Use JS to complete a simple calculator for your r...
1. Basic knowledge (methods of date objects) 😜 ge...
The input box always displays the input history wh...
Preface InnoDB stores data in tablespaces. In the...
I believe that many partners who have just come i...
The definition and inheritance of classes in JS a...
CJK is the abbreviation of CJK Unified Ideographs...
Since the network requests initiated by native js...
/****************** * Kernel debugging technology...
The difference between http and https is For some...
The default time type (datetime and timestamp) in...
Table of contents Preface The role of render Rend...
MariaDB is installed by default in CentOS, which ...
what is it? GNU Parallel is a shell tool for exec...
illustrate: VMware IOInsight is a tool that helps...