2023-03-04 10:07:54 +01:00
|
|
|
#! /bin/bash
|
2023-06-16 19:46:34 +02:00
|
|
|
|
2024-07-21 23:28:13 +02:00
|
|
|
VERSION=$(date '+%Y%m%d')
|
2024-07-21 23:13:20 +02:00
|
|
|
|
2023-03-03 21:53:16 +01:00
|
|
|
# Clone Upstream
|
2023-05-26 16:35:04 +02:00
|
|
|
#git clone https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/
|
2023-08-10 18:47:48 +02:00
|
|
|
git clone https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/ -b main
|
2023-03-04 10:42:59 +01:00
|
|
|
cp -rvn ./debian-firmware/* ./linux-firmware/
|
2023-03-03 21:59:31 +01:00
|
|
|
cd ./linux-firmware
|
|
|
|
touch debian/changelog
|
2024-07-21 23:28:13 +02:00
|
|
|
echo -e "linux-firmware ("$VERSION".git-101pika1) canary; urgency=medium\n\n * New Upstream Release\n\n -- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200" > debian/changelog
|
2023-03-03 21:53:16 +01:00
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2024-07-21 23:28:13 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p linux-firmware_"$VERSION".git || echo "dh-make didn't go clean"
|
2023-05-26 16:35:04 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
2023-03-03 21:53:16 +01:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|