]> git.proxmox.com Git - pve-firmware.git/blob - Makefile
buildsys: use versioned build-dir
[pve-firmware.git] / Makefile
1 include /usr/share/dpkg/pkg-info.mk
2
3 PACKAGE = pve-firmware
4
5 BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
6
7 FW_DEB=$(PACKAGE)_$(DEB_VERSION)_all.deb
8 DEBS=$(FW_DEB)
9
10 .PHONY: deb
11 deb: $(DEBS)
12
13 $(FW_DEB): $(BUILDDIR)
14 cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
15
16 # NOTE: when collapsing FW lists keep major.minor still separated, so we can sunset the older ones
17 # without user impact safely. The last oldstable list needs to be kept avoid breakage on upgrade
18 .PHONY: fw.list
19 fw.list: fwlist-5.4.86-1-pve
20 fw.list: fwlist-5.11.x-y-pve
21 fw.list: fwlist-5.13.x-y-pve
22 fw.list: fwlist-5.15.5-1-pve
23 fw.list: fwlist-5.15.19-1-pve
24 fw.list: fwlist-5.15.27-1-pve
25 fw.list: fwlist-5.15.35-1-pve
26 fw.list: fwlist-5.15.53-1-pve
27 fw.list: fwlist-5.19.0-1-pve
28 fw.list: fwlist-5.19-iwlwifi-extra
29 fw.list: fwlist-6.1.0-1-pve
30 fw.list: fwlist-6.1.10-1-pve
31 fw.list: fwlist-6.2.2-1-pve
32 fw.list: fwlist-6.2.6-1-pve
33 rm -f $@.tmp $@
34 sort -u $^ > $@.tmp
35 mv $@.tmp $@
36
37 $(BUILDDIR): linux-firmware.git/WHENCE dvb-firmware.git/README fw.list
38 rm -rf $@ $@.tmp
39 mkdir -p $@.tmp/lib/firmware
40 cp -a debian $@.tmp
41 echo "git clone git://git.proxmox.com/git/pve-firmware.git\\ngit checkout $$(git rev-parse HEAD)" >$@.tmp/debian/SOURCE
42 cd linux-firmware.git; ./copy-firmware.sh -v ../$@.tmp/lib/firmware/
43 ./assemble-firmware.pl fw.list $@.tmp/lib/firmware
44 find $@.tmp/lib/firmware -empty -type d -delete
45 install -d $@.tmp/usr/share/doc/pve-firmware
46 cp linux-firmware.git/WHENCE $@.tmp/usr/share/doc/pve-firmware/README
47 install -d $@.tmp/usr/share/doc/pve-firmware/licenses
48 cp linux-firmware.git/LICEN[CS]E* $@.tmp/usr/share/doc/pve-firmware/licenses
49 # we only compress big ones that almost definitively ain't required in the initrd
50 # or are so big and unbuyable (netronome...)
51 cd $@.tmp/lib/firmware; find . -type f \( -name 'i[wb][lt]*' -o -path '*/netronome/*' \) -print0 | xargs -0 -n1 -P0 -- xz -C crc32
52 cd $@.tmp/lib/firmware; find . -xtype l -print0 | xargs -0 -n1 -P0 -- sh -c 'ln -sf "$$(readlink "$$0").xz" "$$0"; mv "$$0" "$$0.xz"'
53 mv $@.tmp $@
54
55 # upgrade to current master
56 .PHONY: update_modules
57 update_modules: submodule
58 git submodule foreach 'git pull --ff-only origin master'
59
60 # make sure submodules were initialized
61 .PHONY: submodule
62 submodule dvb-firmware.git/README linux-firmware.git/WHENCE:
63 test -f "linux-firmware.git/WHENCE" || git submodule update --init
64
65 .PHONY: upload
66 upload: $(DEBS)
67 tar cf - $(DEBS) | ssh repoman@repo.proxmox.com -- upload --product pve,pmg,pbs --dist bullseye
68
69 .PHONY: clean
70 clean:
71 rm -rf $(BUILDDIR) $(BUILDDIR).tmp fw.list *.deb *.buildinfo *.dsc *.changes