2023-05-20 22:25:34 +03:00
|
|
|
include /usr/share/dpkg/pkg-info.mk
|
|
|
|
|
2023-07-17 16:57:58 +03:00
|
|
|
# also bump proxmox-kernel-meta if the default MAJ.MIN version changes!
|
2022-12-13 17:09:59 +03:00
|
|
|
KERNEL_MAJ=6
|
2024-04-02 19:19:29 +03:00
|
|
|
KERNEL_MIN=8
|
2024-06-10 14:42:25 +03:00
|
|
|
KERNEL_PATCHLEVEL=8
|
2023-07-17 16:57:58 +03:00
|
|
|
# increment KREL for every published package release!
|
2018-08-10 14:24:30 +03:00
|
|
|
# rebuild packages with new KREL and run 'make abiupdate'
|
2024-06-24 12:00:52 +03:00
|
|
|
KREL=2
|
2018-03-05 17:42:44 +03:00
|
|
|
|
2018-05-28 12:04:46 +03:00
|
|
|
KERNEL_MAJMIN=$(KERNEL_MAJ).$(KERNEL_MIN)
|
|
|
|
KERNEL_VER=$(KERNEL_MAJMIN).$(KERNEL_PATCHLEVEL)
|
|
|
|
|
2023-05-20 17:28:20 +03:00
|
|
|
EXTRAVERSION=-$(KREL)-pve
|
|
|
|
KVNAME=$(KERNEL_VER)$(EXTRAVERSION)
|
2023-07-17 16:57:58 +03:00
|
|
|
PACKAGE=proxmox-kernel-$(KVNAME)
|
|
|
|
HDRPACKAGE=proxmox-headers-$(KVNAME)
|
2017-03-15 16:43:11 +03:00
|
|
|
|
2017-05-10 17:33:45 +03:00
|
|
|
ARCH=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
|
2017-05-10 17:33:47 +03:00
|
|
|
|
|
|
|
# amd64/x86_64/x86 share the arch subdirectory in the kernel, 'x86' so we need
|
|
|
|
# a mapping
|
|
|
|
KERNEL_ARCH=x86
|
2023-05-20 17:28:20 +03:00
|
|
|
ifneq ($(ARCH), amd64)
|
|
|
|
KERNEL_ARCH=$(ARCH)
|
2017-05-10 17:33:47 +03:00
|
|
|
endif
|
|
|
|
|
2017-03-24 14:48:43 +03:00
|
|
|
SKIPABI=0
|
|
|
|
|
2023-07-17 16:57:58 +03:00
|
|
|
BUILD_DIR=proxmox-kernel-$(KERNEL_VER)
|
2017-03-15 16:43:11 +03:00
|
|
|
|
2022-12-13 10:32:18 +03:00
|
|
|
KERNEL_SRC=ubuntu-kernel
|
2018-05-28 12:04:46 +03:00
|
|
|
KERNEL_SRC_SUBMODULE=submodules/$(KERNEL_SRC)
|
2023-05-20 17:28:20 +03:00
|
|
|
KERNEL_CFG_ORG=config-$(KERNEL_VER).org
|
2017-03-15 16:43:11 +03:00
|
|
|
|
2017-10-12 15:56:28 +03:00
|
|
|
ZFSONLINUX_SUBMODULE=submodules/zfsonlinux
|
2018-03-09 13:25:58 +03:00
|
|
|
ZFSDIR=pkg-zfs
|
2018-02-28 11:31:06 +03:00
|
|
|
|
2018-03-09 13:25:58 +03:00
|
|
|
MODULES=modules
|
2023-05-20 17:28:20 +03:00
|
|
|
MODULE_DIRS=$(ZFSDIR)
|
2017-03-15 16:43:11 +03:00
|
|
|
|
2018-03-09 13:25:58 +03:00
|
|
|
# exported to debian/rules via debian/rules.d/dirs.mk
|
2019-05-24 15:40:34 +03:00
|
|
|
DIRS=KERNEL_SRC ZFSDIR MODULES
|
2018-03-09 13:25:58 +03:00
|
|
|
|
2023-08-02 15:17:56 +03:00
|
|
|
DSC=proxmox-kernel-$(KERNEL_MAJMIN)_$(KERNEL_VER)-$(KREL).dsc
|
|
|
|
DST_DEB=$(PACKAGE)_$(KERNEL_VER)-$(KREL)_$(ARCH).deb
|
2023-11-20 17:00:38 +03:00
|
|
|
SIGNED_TEMPLATE_DEB=$(PACKAGE)-signed-template_$(KERNEL_VER)-$(KREL)_$(ARCH).deb
|
2023-08-02 15:17:56 +03:00
|
|
|
META_DEB=proxmox-kernel-$(KERNEL_MAJMIN)_$(KERNEL_VER)-$(KREL)_all.deb
|
|
|
|
HDR_DEB=$(HDRPACKAGE)_$(KERNEL_VER)-$(KREL)_$(ARCH).deb
|
|
|
|
META_HDR_DEB=proxmox-headers-$(KERNEL_MAJMIN)_$(KERNEL_VER)-$(KREL)_all.deb
|
|
|
|
USR_HDR_DEB=proxmox-kernel-libc-dev_$(KERNEL_VER)-$(KREL)_$(ARCH).deb
|
|
|
|
LINUX_TOOLS_DEB=linux-tools-$(KERNEL_MAJMIN)_$(KERNEL_VER)-$(KREL)_$(ARCH).deb
|
|
|
|
LINUX_TOOLS_DBG_DEB=linux-tools-$(KERNEL_MAJMIN)-dbgsym_$(KERNEL_VER)-$(KREL)_$(ARCH).deb
|
2017-03-15 16:43:11 +03:00
|
|
|
|
2023-11-20 17:00:38 +03:00
|
|
|
DEBS=$(DST_DEB) $(META_DEB) $(HDR_DEB) $(META_HDR_DEB) $(LINUX_TOOLS_DEB) $(LINUX_TOOLS_DBG_DEB) $(SIGNED_TEMPLATE_DEB) # $(USR_HDR_DEB)
|
2017-03-15 16:43:11 +03:00
|
|
|
|
2019-05-22 15:01:09 +03:00
|
|
|
all: deb
|
2023-05-20 17:28:20 +03:00
|
|
|
deb: $(DEBS)
|
|
|
|
|
2023-07-17 16:57:58 +03:00
|
|
|
$(META_DEB) $(META_HDR_DEB) $(LINUX_TOOLS_DEB) $(HDR_DEB): $(DST_DEB)
|
2023-05-20 17:28:20 +03:00
|
|
|
$(DST_DEB): $(BUILD_DIR).prepared
|
|
|
|
cd $(BUILD_DIR); dpkg-buildpackage --jobs=auto -b -uc -us
|
|
|
|
lintian $(DST_DEB)
|
|
|
|
#lintian $(HDR_DEB)
|
|
|
|
lintian $(LINUX_TOOLS_DEB)
|
|
|
|
|
2023-06-13 17:15:37 +03:00
|
|
|
dsc:
|
|
|
|
$(MAKE) $(DSC)
|
|
|
|
lintian $(DSC)
|
|
|
|
|
2023-05-20 18:32:24 +03:00
|
|
|
$(DSC): $(BUILD_DIR).prepared
|
|
|
|
cd $(BUILD_DIR); dpkg-buildpackage -S -uc -us -d
|
|
|
|
|
2023-05-20 20:25:27 +03:00
|
|
|
sbuild: $(DSC)
|
|
|
|
sbuild $(DSC)
|
|
|
|
|
2023-05-20 17:28:20 +03:00
|
|
|
$(BUILD_DIR).prepared: $(addsuffix .prepared,$(KERNEL_SRC) $(MODULES) debian)
|
|
|
|
cp -a fwlist-previous $(BUILD_DIR)/
|
|
|
|
cp -a abi-prev-* $(BUILD_DIR)/
|
|
|
|
cp -a abi-blacklist $(BUILD_DIR)/
|
2018-03-09 13:25:58 +03:00
|
|
|
touch $@
|
|
|
|
|
2023-09-19 11:15:46 +03:00
|
|
|
.PHONY: build-dir-fresh
|
|
|
|
build-dir-fresh:
|
|
|
|
$(MAKE) clean
|
|
|
|
$(MAKE) $(BUILD_DIR).prepared
|
|
|
|
echo "created build-directory: $(BUILD_DIR).prepared/"
|
|
|
|
|
2018-03-09 13:25:58 +03:00
|
|
|
debian.prepared: debian
|
2023-05-20 17:28:20 +03:00
|
|
|
rm -rf $(BUILD_DIR)/debian
|
|
|
|
mkdir -p $(BUILD_DIR)
|
|
|
|
cp -a debian $(BUILD_DIR)/debian
|
2023-08-31 13:09:49 +03:00
|
|
|
echo "git clone git://git.proxmox.com/git/pve-kernel.git\\ngit checkout $(shell git rev-parse HEAD)" \
|
|
|
|
>$(BUILD_DIR)/debian/SOURCE
|
2023-05-20 17:28:20 +03:00
|
|
|
@$(foreach dir, $(DIRS),echo "$(dir)=$($(dir))" >> $(BUILD_DIR)/debian/rules.d/env.mk;)
|
|
|
|
echo "KVNAME=$(KVNAME)" >> $(BUILD_DIR)/debian/rules.d/env.mk
|
|
|
|
echo "KERNEL_MAJMIN=$(KERNEL_MAJMIN)" >> $(BUILD_DIR)/debian/rules.d/env.mk
|
|
|
|
cd $(BUILD_DIR); debian/rules debian/control
|
2017-03-15 16:43:11 +03:00
|
|
|
touch $@
|
|
|
|
|
2023-05-20 17:28:20 +03:00
|
|
|
$(KERNEL_SRC).prepared: $(KERNEL_SRC_SUBMODULE) | submodule
|
|
|
|
rm -rf $(BUILD_DIR)/$(KERNEL_SRC) $@
|
|
|
|
mkdir -p $(BUILD_DIR)
|
|
|
|
cp -a $(KERNEL_SRC_SUBMODULE) $(BUILD_DIR)/$(KERNEL_SRC)
|
2018-02-28 11:31:06 +03:00
|
|
|
# TODO: split for archs, track and diff in our repository?
|
2023-05-20 17:28:20 +03:00
|
|
|
cd $(BUILD_DIR)/$(KERNEL_SRC); python3 debian/scripts/misc/annotations --arch amd64 --export >../../$(KERNEL_CFG_ORG)
|
|
|
|
cp $(KERNEL_CFG_ORG) $(BUILD_DIR)/$(KERNEL_SRC)/.config
|
|
|
|
sed -i $(BUILD_DIR)/$(KERNEL_SRC)/Makefile -e 's/^EXTRAVERSION.*$$/EXTRAVERSION=$(EXTRAVERSION)/'
|
|
|
|
rm -rf $(BUILD_DIR)/$(KERNEL_SRC)/debian $(BUILD_DIR)/$(KERNEL_SRC)/debian.master
|
2023-05-20 18:32:11 +03:00
|
|
|
set -e; cd $(BUILD_DIR)/$(KERNEL_SRC); \
|
|
|
|
for patch in ../../patches/kernel/*.patch; do \
|
|
|
|
echo "applying patch '$$patch'"; \
|
|
|
|
patch --batch -p1 < "$${patch}"; \
|
|
|
|
done
|
2017-03-15 16:43:11 +03:00
|
|
|
touch $@
|
|
|
|
|
2023-05-20 17:28:20 +03:00
|
|
|
$(MODULES).prepared: $(addsuffix .prepared,$(MODULE_DIRS))
|
2018-02-28 11:31:06 +03:00
|
|
|
touch $@
|
|
|
|
|
2023-05-20 17:28:20 +03:00
|
|
|
$(ZFSDIR).prepared: $(ZFSONLINUX_SUBMODULE)
|
|
|
|
rm -rf $(BUILD_DIR)/$(MODULES)/$(ZFSDIR) $(BUILD_DIR)/$(MODULES)/tmp $@
|
|
|
|
mkdir -p $(BUILD_DIR)/$(MODULES)/tmp
|
|
|
|
cp -a $(ZFSONLINUX_SUBMODULE)/* $(BUILD_DIR)/$(MODULES)/tmp
|
|
|
|
cd $(BUILD_DIR)/$(MODULES)/tmp; make kernel
|
|
|
|
rm -rf $(BUILD_DIR)/$(MODULES)/tmp
|
|
|
|
touch $(ZFSDIR).prepared
|
2017-03-15 16:43:11 +03:00
|
|
|
|
|
|
|
.PHONY: upload
|
2023-05-20 22:25:34 +03:00
|
|
|
upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
|
2023-05-20 17:28:20 +03:00
|
|
|
upload: $(DEBS)
|
2023-05-20 22:25:34 +03:00
|
|
|
tar cf - $(DEBS)|ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg,pbs --dist $(UPLOAD_DIST) --arch $(ARCH)
|
2017-03-15 16:43:11 +03:00
|
|
|
|
|
|
|
.PHONY: distclean
|
|
|
|
distclean: clean
|
2018-02-28 11:31:06 +03:00
|
|
|
git submodule deinit --all
|
2017-03-15 16:43:11 +03:00
|
|
|
|
2017-03-15 17:21:54 +03:00
|
|
|
# upgrade to current master
|
|
|
|
.PHONY: update_modules
|
2017-10-13 09:30:09 +03:00
|
|
|
update_modules: submodule
|
2017-03-15 17:21:54 +03:00
|
|
|
git submodule foreach 'git pull --ff-only origin master'
|
2023-05-20 17:28:20 +03:00
|
|
|
cd $(ZFSONLINUX_SUBMODULE); git pull --ff-only origin master
|
2017-03-15 17:21:54 +03:00
|
|
|
|
|
|
|
# make sure submodules were initialized
|
2017-10-13 09:30:09 +03:00
|
|
|
.PHONY: submodule
|
|
|
|
submodule:
|
2023-05-20 17:28:20 +03:00
|
|
|
test -f "$(KERNEL_SRC_SUBMODULE)/README" || git submodule update --init $(KERNEL_SRC_SUBMODULE)
|
|
|
|
test -f "$(ZFSONLINUX_SUBMODULE)/Makefile" || git submodule update --init --recursive $(ZFSONLINUX_SUBMODULE)
|
2017-03-15 17:21:54 +03:00
|
|
|
|
2018-03-21 13:27:33 +03:00
|
|
|
# call after ABI bump with header deb in working directory
|
|
|
|
.PHONY: abiupdate
|
2023-05-20 17:28:20 +03:00
|
|
|
abiupdate: abi-prev-$(KVNAME)
|
|
|
|
abi-prev-$(KVNAME): abi-tmp-$(KVNAME)
|
2018-03-21 13:27:33 +03:00
|
|
|
ifneq ($(strip $(shell git status --untracked-files=no --porcelain -z)),)
|
|
|
|
@echo "working directory unclean, aborting!"
|
|
|
|
@false
|
|
|
|
else
|
|
|
|
git rm "abi-prev-*"
|
|
|
|
mv $< $@
|
|
|
|
git add $@
|
2023-05-20 17:28:20 +03:00
|
|
|
git commit -s -m "update ABI file for $(KVNAME)" -m "(generated with debian/scripts/abi-generate)"
|
|
|
|
@echo "update abi-prev-$(KVNAME) committed!"
|
2018-03-21 13:27:33 +03:00
|
|
|
endif
|
|
|
|
|
2023-05-20 17:28:20 +03:00
|
|
|
abi-tmp-$(KVNAME):
|
|
|
|
@ test -e $(HDR_DEB) || (echo "need $(HDR_DEB) to extract ABI data!" && false)
|
|
|
|
debian/scripts/abi-generate $(HDR_DEB) $@ $(KVNAME) 1
|
2017-03-15 17:21:54 +03:00
|
|
|
|
2017-03-15 16:43:11 +03:00
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
2023-07-17 16:57:58 +03:00
|
|
|
rm -rf *~ proxmox-kernel-[0-9]*/ *.prepared $(KERNEL_CFG_ORG)
|
|
|
|
rm -f *.deb *.dsc *.changes *.buildinfo *.build proxmox-kernel*.tar.*
|