mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:02:20 +00:00
kbuild: deb-pkg: split debian/rules
debian/rules is generated by shell, but the escape sequence (\$) is unreadable. debian/rules embeds only two variables (ARCH and KERNELRELEASE). Split them out to debian/rules.vars, and check-in the rest of Makefile code to scripts/package/debian/rules. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Tested-by: Nathan Chancellor <nathan@kernel.org> Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
This commit is contained in:
parent
4b970e4365
commit
d9287ea8ff
28
scripts/package/debian/rules
Executable file
28
scripts/package/debian/rules
Executable file
@ -0,0 +1,28 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
|
include debian/rules.vars
|
||||||
|
|
||||||
|
srctree ?= .
|
||||||
|
|
||||||
|
.PHONY: binary binary-indep binary-arch
|
||||||
|
binary: binary-arch binary-indep
|
||||||
|
binary-indep: build-indep
|
||||||
|
binary-arch: build-arch
|
||||||
|
$(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) \
|
||||||
|
KERNELRELEASE=$(KERNELRELEASE) \
|
||||||
|
run-command KBUILD_RUN_COMMAND=+$(srctree)/scripts/package/builddeb
|
||||||
|
|
||||||
|
.PHONY: build build-indep build-arch
|
||||||
|
build: build-arch build-indep
|
||||||
|
build-indep:
|
||||||
|
build-arch:
|
||||||
|
$(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) \
|
||||||
|
KERNELRELEASE=$(KERNELRELEASE) \
|
||||||
|
$(shell $(srctree)/scripts/package/deb-build-option) \
|
||||||
|
olddefconfig all
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
clean:
|
||||||
|
rm -rf debian/files debian/linux-*
|
||||||
|
$(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) clean
|
@ -263,35 +263,11 @@ Description: Linux kernel debugging symbols for $version
|
|||||||
EOF
|
EOF
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cat <<EOF > debian/rules
|
cat <<EOF > debian/rules.vars
|
||||||
#!/usr/bin/make -f
|
ARCH := ${ARCH}
|
||||||
|
KERNELRELEASE := ${KERNELRELEASE}
|
||||||
srctree ?= .
|
|
||||||
KERNELRELEASE = ${KERNELRELEASE}
|
|
||||||
|
|
||||||
.PHONY: clean build build-arch build-indep binary binary-arch binary-indep
|
|
||||||
|
|
||||||
build-indep:
|
|
||||||
build-arch:
|
|
||||||
\$(MAKE) -f \$(srctree)/Makefile ARCH=${ARCH} \
|
|
||||||
KERNELRELEASE=\$(KERNELRELEASE) \
|
|
||||||
\$(shell \$(srctree)/scripts/package/deb-build-option) \
|
|
||||||
olddefconfig all
|
|
||||||
|
|
||||||
build: build-arch
|
|
||||||
|
|
||||||
binary-indep:
|
|
||||||
binary-arch: build-arch
|
|
||||||
\$(MAKE) -f \$(srctree)/Makefile ARCH=${ARCH} \
|
|
||||||
KERNELRELEASE=\$(KERNELRELEASE) \
|
|
||||||
run-command KBUILD_RUN_COMMAND=+\$(srctree)/scripts/package/builddeb
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -rf debian/files debian/linux-*
|
|
||||||
\$(MAKE) -f \$(srctree)/Makefile ARCH=${ARCH} clean
|
|
||||||
|
|
||||||
binary: binary-arch
|
|
||||||
EOF
|
EOF
|
||||||
chmod +x debian/rules
|
|
||||||
|
cp "${srctree}/scripts/package/debian/rules" debian/
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
Loading…
Reference in New Issue
Block a user