Merge branch '6.3.5' of https://github.com/gfdgd-xi/Linux-kernel_deb_builder into 6.3.5
This commit is contained in:
94
build_action-aarch64.sh
Normal file
94
build_action-aarch64.sh
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
sed -i "/deb-src/s/# //g" /etc/apt/sources.list
|
||||||
|
sudo apt update
|
||||||
|
sudo apt install python3-pyquery -y
|
||||||
|
python3 get-newest-version.py $1
|
||||||
|
#VERSION=$(grep 'Kernel Configuration' < config | awk '{print $3}')
|
||||||
|
# add deb-src to sources.list
|
||||||
|
MAINVERSION=$1
|
||||||
|
VERSION=`cat /tmp/kernelversion.txt`
|
||||||
|
URL=`cat /tmp/kernelurl.txt`
|
||||||
|
curl https://github.com/gfdgd-xi/dclc-kernel/raw/main/$VERSION-aarch64/index.html | grep 404
|
||||||
|
if [[ $? != 0 ]]; then
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
# install dep
|
||||||
|
sudo apt install -y wget xz-utils make gcc flex bison dpkg-dev bc rsync kmod cpio libssl-dev git lsb vim libelf-dev
|
||||||
|
sudo apt build-dep -y linux
|
||||||
|
|
||||||
|
# change dir to workplace
|
||||||
|
cd "${GITHUB_WORKSPACE}" || exit
|
||||||
|
|
||||||
|
# download kernel source
|
||||||
|
wget $URL
|
||||||
|
tar -xf linux-"$VERSION".tar.xz
|
||||||
|
cd linux-"$VERSION" || exit
|
||||||
|
|
||||||
|
# copy config file
|
||||||
|
cp ../config .config
|
||||||
|
#
|
||||||
|
# disable DEBUG_INFO to speedup build
|
||||||
|
scripts/config --disable DEBUG_INFO
|
||||||
|
scripts/config --set-str SYSTEM_TRUSTED_KEYS ""
|
||||||
|
# apply patches
|
||||||
|
# shellcheck source=src/util.sh
|
||||||
|
# source ../patch.d/*.sh
|
||||||
|
|
||||||
|
# build deb packages
|
||||||
|
CPU_CORES=$(($(grep -c processor < /proc/cpuinfo)*2))
|
||||||
|
sudo make bindeb-pkg -j"$CPU_CORES"
|
||||||
|
|
||||||
|
# move deb packages to artifact dir
|
||||||
|
cd ..
|
||||||
|
mkdir "artifact"
|
||||||
|
#cp ./*.deb artifact/
|
||||||
|
git clone https://gfdgd-xi:$PASSWORD@github.com/gfdgd-xi/dclc-kernel
|
||||||
|
#cd dclc-kernel
|
||||||
|
mkdir dclc-kernel/$VERSION-aarch64
|
||||||
|
rm -rfv *dbg*.deb
|
||||||
|
mv ./*.deb dclc-kernel/$VERSION-aarch64
|
||||||
|
cd dclc-kernel/$VERSION-aarch64
|
||||||
|
cd ..
|
||||||
|
cd head
|
||||||
|
cat > deb-/DEBIAN/control <<EOF
|
||||||
|
Package: linux-kernel-dclc-gfdgdxi
|
||||||
|
Version: $VERSION
|
||||||
|
Maintainer: gfdgd xi <3025613752@qq.com>
|
||||||
|
Homepage: https://github.com/gfdgd-xi/dclc-kernel
|
||||||
|
Architecture: arm64
|
||||||
|
Severity: serious
|
||||||
|
Certainty: possible
|
||||||
|
Check: binaries
|
||||||
|
Type: binary, udeb
|
||||||
|
Priority: optional
|
||||||
|
Depends: linux-headers-$VERSION-arm64-desktop, linux-image-$VERSION-arm64-desktop
|
||||||
|
Section: utils
|
||||||
|
Installed-Size: 0
|
||||||
|
Description: 内核(虚包)
|
||||||
|
EOF
|
||||||
|
cat > deb-$MAINVERSION/DEBIAN/control <<EOF
|
||||||
|
Package: linux-kernel-dclc-gfdgdxi-$MAINVERSION
|
||||||
|
Version: $VERSION
|
||||||
|
Maintainer: gfdgd xi <3025613752@qq.com>
|
||||||
|
Homepage: https://github.com/gfdgd-xi/dclc-kernel
|
||||||
|
Architecture: arm64
|
||||||
|
Severity: serious
|
||||||
|
Certainty: possible
|
||||||
|
Check: binaries
|
||||||
|
Type: binary, udeb
|
||||||
|
Priority: optional
|
||||||
|
Depends: linux-headers-$VERSION-arm64-desktop, linux-image-$VERSION-arm64-desktop
|
||||||
|
Section: utils
|
||||||
|
Installed-Size: 0
|
||||||
|
Description: 内核(虚包)
|
||||||
|
EOF
|
||||||
|
dpkg -b deb linux-kernel-dclc-gfdgdxi_${VERSION}_arm64.deb
|
||||||
|
dpkg -b deb-$MAINVERSION linux-kernel-dclc-gfdgdxi-$MAINVERSION_${VERSION}_arm64.deb
|
||||||
|
cd ..
|
||||||
|
bash ./repack-zstd --scan .
|
||||||
|
./build.py
|
||||||
|
git add .
|
||||||
|
git config --global user.email 3025613752@qq.com
|
||||||
|
git config --global user.name gfdgd-xi
|
||||||
|
git commit -m 提交$VERSION
|
||||||
|
git push
|
||||||
11041
config-aarch64
Normal file
11041
config-aarch64
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user