install: $(CONFIG_SHELL) $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" \ $(obj)/Image System.map "$(INSTALL_PATH)"
时间: 2024-06-07 17:06:43 浏览: 112
install.sh
这是一个 Linux 内核的 Makefile 规则,用于将编译好的内核镜像(Image)、内核符号表(System.map)等安装到指定的路径(INSTALL_PATH)中。其中,$(CONFIG_SHELL) 是指定用于执行命令的 Shell 程序;$(srctree) 是指 Linux 源码根目录的路径;$(src) 是指当前 Makefile 所在目录的相对路径。具体可以参考 Linux 内核源码中的 Documentation/kbuild/makefiles.txt。
阅读全文