-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb1833c
commit 7fe869c
Showing
2 changed files
with
84 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,90 +1,87 @@ | ||
#!/bin/bash | ||
|
||
df -h | ||
dd if=/dev/zero of=test bs=1M count=26000 | ||
FEDORA_KERNEL_VERSION=5.19.11-200.fc36 | ||
PATCHES_GIT=https://github.com/Redecorating/linux-t2-arch | ||
PATCHES_COMMIT=5355ddb032ff65577d3c9d1bc8f0ff80eeaaa359 | ||
|
||
#FEDORA_KERNEL_VERSION=5.19.11-200.fc36 | ||
#PATCHES_GIT=https://github.com/Redecorating/linux-t2-arch | ||
#PATCHES_COMMIT=5355ddb032ff65577d3c9d1bc8f0ff80eeaaa359 | ||
# | ||
#echo "=====INSTALLING DEPENDENCIES=====" | ||
#dnf install -y fedpkg koji fedora-packager git curl pesign ncurses-devel libbpf fedpkg rpmdevtools ccache openssl-devel libkcapi libkcapi-devel libkcapi-static libkcapi-tools | ||
# | ||
#rpmdev-setuptree | ||
#cd "/root/rpmbuild"/SPECS | ||
# | ||
#echo "=====DOWNLOADING SOURCES=====" | ||
#cd /root/rpmbuild/SOURCES | ||
#koji download-build --arch=src kernel-${FEDORA_KERNEL_VERSION} | ||
#rpm -Uvh kernel-${FEDORA_KERNEL_VERSION}.src.rpm | ||
#cd /root/rpmbuild/SPECS | ||
## Fedora devs are against merging kernel-local for all architectures, so we have to patch it in. | ||
#sed -i "s@for i in %{all_arch_configs}@for i in *.config@g" kernel.spec | ||
#dnf -y builddep kernel.spec | ||
# | ||
#echo "======DOWNLOADING PATCHES=====" | ||
#rm -rf /tmp/download /tmp/src | ||
#mkdir /tmp/download && cd /tmp/download | ||
#git clone --single-branch --branch main ${PATCHES_GIT} | ||
#cd * | ||
#git checkout ${PATCHES_COMMIT} | ||
#rm -rf 0001-arch-additions.patch 2013-aaudio-set-the-card-driver-name-to-AppleT2x-channel-.patch | ||
# | ||
#echo "=====PREPARING SOURCES=====" | ||
#cd ~/rpmbuild/SPECS | ||
#sed -i 's/# define buildid .local/%define buildid .t2/g' kernel.spec | ||
#echo "CONFIG_STAGING=y" >> "/root/rpmbuild/SOURCES/kernel-local" | ||
#echo "CONFIG_APPLE_IBRIDGE=y" >> "/root/rpmbuild/SOURCES/kernel-local" | ||
#echo "CONFIG_APPLE_BCE=y" >> "/root/rpmbuild/SOURCES/kernel-local" | ||
#echo "CONFIG_BT_HCIBCM4377=m" >> "/root/rpmbuild/SOURCES/kernel-local" | ||
#rpmbuild -bp kernel.spec | ||
# | ||
#echo "=====COPYING SOURCE TREE=====" | ||
#mkdir /tmp/src && cd /tmp/src | ||
#cp -r /root/rpmbuild/BUILD/* . | ||
#cd * | ||
#KSV=$(ls) | ||
#cp -r $KSV $KSV.new | ||
#KERNEL_TMP="$KSV.new" | ||
#cd $KERNEL_TMP | ||
# | ||
#echo "=====PATCHING SOURCE TREE=====" | ||
#git clone https://github.com/kekrby/apple-bce drivers/staging/apple-bce | ||
#cd drivers/staging/apple-bce && git checkout 9b59e0a8cd0aff218dacc88e64e113b51ced2818 | ||
#cd $KERNEL_TMP | ||
#git clone https://github.com/Redecorating/apple-ib-drv drivers/staging/apple-ibridge | ||
#cd drivers/staging/apple-ibridge && git checkout 467df9b11cb55456f0365f40dd11c9e666623bf3 | ||
#cd $KERNEL_TMP | ||
#cp /tmp/download/*/*.patch . | ||
#for i in *.patch; do | ||
# echo $i | ||
# patch -f -l -p1 -N < $i; | ||
#done; | ||
#find . '(' \ | ||
# -name \*-baseline -o \ | ||
# -name \*-merge -o \ | ||
# -name \*-original -o \ | ||
# -name \*.orig -o \ | ||
# -name \*.rej \ | ||
#')' -delete | ||
#rm -rf drivers/staging/*/.git | ||
#rm -rf *.patch | ||
#cd .. | ||
# | ||
#echo "=====APPLYING PATCHES=====" | ||
#diff -uNrp $KSV $KERNEL_TMP > /root/rpmbuild/SOURCES/linux-kernel-test.patch | ||
#sed -i "s@$KSV@@" /root/rpmbuild/SOURCES/linux-kernel-test.patch | ||
#sed -i "s@$KERNEL_TMP@@" /root/rpmbuild/SOURCES/linux-kernel-test.patch | ||
# | ||
#echo "=====BUILDING=====" | ||
#cd "/root/rpmbuild"/SPECS | ||
#cp /repo/*.spec . | ||
#rpmbuild -bb t2linux-config.spec | ||
#rpmbuild -bb --with baseonly --without debug --without debuginfo --target=x86_64 kernel.spec | ||
# | ||
# | ||
## Copy artifacts to shared volume | ||
#cd "/repo" | ||
#mkdir -p ./output | ||
#mkdir -p ./output/RPMS | ||
#cp -rfv /root/rpmbuild/RPMS/* ./output/RPMS/ | ||
echo "=====INSTALLING DEPENDENCIES=====" | ||
dnf install -y fedpkg koji fedora-packager git curl pesign ncurses-devel libbpf fedpkg rpmdevtools ccache openssl-devel libkcapi libkcapi-devel libkcapi-static libkcapi-tools | ||
|
||
rpmdev-setuptree | ||
cd "/root/rpmbuild"/SPECS | ||
|
||
echo "=====DOWNLOADING SOURCES=====" | ||
cd /root/rpmbuild/SOURCES | ||
koji download-build --arch=src kernel-${FEDORA_KERNEL_VERSION} | ||
rpm -Uvh kernel-${FEDORA_KERNEL_VERSION}.src.rpm | ||
cd /root/rpmbuild/SPECS | ||
# Fedora devs are against merging kernel-local for all architectures, so we have to patch it in. | ||
sed -i "s@for i in %{all_arch_configs}@for i in *.config@g" kernel.spec | ||
dnf -y builddep kernel.spec | ||
|
||
echo "======DOWNLOADING PATCHES=====" | ||
rm -rf /tmp/download /tmp/src | ||
mkdir /tmp/download && cd /tmp/download | ||
git clone --single-branch --branch main ${PATCHES_GIT} | ||
cd * | ||
git checkout ${PATCHES_COMMIT} | ||
rm -rf 0001-arch-additions.patch 2013-aaudio-set-the-card-driver-name-to-AppleT2x-channel-.patch | ||
|
||
echo "=====PREPARING SOURCES=====" | ||
cd ~/rpmbuild/SPECS | ||
sed -i 's/# define buildid .local/%define buildid .t2/g' kernel.spec | ||
echo "CONFIG_STAGING=y" >> "/root/rpmbuild/SOURCES/kernel-local" | ||
echo "CONFIG_APPLE_IBRIDGE=y" >> "/root/rpmbuild/SOURCES/kernel-local" | ||
echo "CONFIG_APPLE_BCE=y" >> "/root/rpmbuild/SOURCES/kernel-local" | ||
echo "CONFIG_BT_HCIBCM4377=m" >> "/root/rpmbuild/SOURCES/kernel-local" | ||
rpmbuild -bp kernel.spec | ||
|
||
echo "=====COPYING SOURCE TREE=====" | ||
mkdir /tmp/src && cd /tmp/src | ||
cp -r /root/rpmbuild/BUILD/* . | ||
cd * | ||
KSV=$(ls) | ||
cp -r $KSV $KSV.new | ||
KERNEL_TMP="$KSV.new" | ||
cd $KERNEL_TMP | ||
|
||
echo "=====PATCHING SOURCE TREE=====" | ||
git clone https://github.com/kekrby/apple-bce drivers/staging/apple-bce | ||
cd drivers/staging/apple-bce && git checkout 9b59e0a8cd0aff218dacc88e64e113b51ced2818 | ||
cd $KERNEL_TMP | ||
git clone https://github.com/Redecorating/apple-ib-drv drivers/staging/apple-ibridge | ||
cd drivers/staging/apple-ibridge && git checkout 467df9b11cb55456f0365f40dd11c9e666623bf3 | ||
cd $KERNEL_TMP | ||
cp /tmp/download/*/*.patch . | ||
for i in *.patch; do | ||
echo $i | ||
patch -f -l -p1 -N < $i; | ||
done; | ||
find . '(' \ | ||
-name \*-baseline -o \ | ||
-name \*-merge -o \ | ||
-name \*-original -o \ | ||
-name \*.orig -o \ | ||
-name \*.rej \ | ||
')' -delete | ||
rm -rf drivers/staging/*/.git | ||
rm -rf *.patch | ||
cd .. | ||
|
||
echo "=====APPLYING PATCHES=====" | ||
diff -uNrp $KSV $KERNEL_TMP > /root/rpmbuild/SOURCES/linux-kernel-test.patch | ||
sed -i "s@$KSV@@" /root/rpmbuild/SOURCES/linux-kernel-test.patch | ||
sed -i "s@$KERNEL_TMP@@" /root/rpmbuild/SOURCES/linux-kernel-test.patch | ||
|
||
echo "=====BUILDING=====" | ||
cd "/root/rpmbuild"/SPECS | ||
cp /repo/*.spec . | ||
rpmbuild -bb t2linux-config.spec | ||
rpmbuild -bb --with baseonly --without debug --without debuginfo --target=x86_64 kernel.spec | ||
|
||
|
||
# Copy artifacts to shared volume | ||
cd "/repo" | ||
mkdir -p ./output | ||
mkdir -p ./output/RPMS | ||
cp -rfv /root/rpmbuild/RPMS/* ./output/RPMS/ |