X-OpenWrt/Scripts/diy-script.sh

88 lines
3.3 KiB
Bash
Raw Normal View History

2020-09-16 15:21:52 +00:00
#!/bin/bash
2020-09-16 15:45:32 +00:00
# https://github.com/Hyy2001X/AutoBuild-Actions
# AutoBuild Module by Hyy2001
2020-09-16 15:21:52 +00:00
# AutoBuild Actions
Diy_Core() {
Author=Hyy2001
2020-09-16 15:45:32 +00:00
2020-09-19 07:37:55 +00:00
Default_File=./package/lean/default-settings/files/zzz-default-settings
FIRMWARE_SUFFIX=squashfs-sysupgrade.bin
Lede_Version=`egrep -o "R[0-9]+\.[0-9]+\.[0-9]+" $Default_File`
2020-09-16 15:45:32 +00:00
Compile_Date=`date +'%Y/%m/%d'`
Compile_Time=`date +'%Y-%m-%d %H:%M:%S'`
2020-09-19 08:03:03 +00:00
TARGET_PROFILE=`grep '^CONFIG_TARGET.*DEVICE.*=y' .config | sed -r 's/.*DEVICE_(.*)=y/\1/'`
2020-09-16 15:21:52 +00:00
}
2020-09-19 07:37:55 +00:00
GET_TARGET_INFO() {
TARGET_BOARD=`awk -F'[="]+' '/TARGET_BOARD/{print $2}' .config`
TARGET_SUBTARGET=`awk -F'[="]+' '/TARGET_SUBTARGET/{print $2}' .config`
}
2020-09-16 15:21:52 +00:00
ExtraPackages() {
[ -d ./package/lean/$2 ] && rm -rf ./package/lean/$2
[ -d ./$2 ] && rm -rf ./$2
while [ ! -f $2/Makefile ]
do
echo "[$(date "+%H:%M:%S")] Checking out $2 from $3 ..."
if [ $1 == git ];then
git clone -b $4 $3/$2 $2 > /dev/null 2>&1
else
svn checkout $3/$2 $2 > /dev/null 2>&1
fi
if [ -f $2/Makefile ] || [ -f $2/README* ];then
echo "[$(date "+%H:%M:%S")] Package $2 detected!"
if [ $2 == OpenClash ];then
mv $2/luci-app-openclash ./package/lean
else
mv $2 ./package/lean
fi
rm -rf ./$2 > /dev/null 2>&1
break
else
echo "[$(date "+%H:%M:%S")] Checkout failed,retry in 3s."
rm -rf ./$2 > /dev/null 2>&1
sleep 3
fi
done
}
Diy-Part1() {
sed -i "s/#src-git helloworld/src-git helloworld/g" feeds.conf.default
2020-09-16 15:45:32 +00:00
[ ! -d ./package/lean ] && mkdir ./package/lean
2020-09-16 15:21:52 +00:00
ExtraPackages git luci-theme-argon https://github.com/jerrykuku 18.06
ExtraPackages svn luci-app-adguardhome https://github.com/Lienol/openwrt/trunk/package/diy
ExtraPackages svn luci-app-smartdns https://github.com/project-openwrt/openwrt/trunk/package/ntlf9t
ExtraPackages svn smartdns https://github.com/project-openwrt/openwrt/trunk/package/ntlf9t
ExtraPackages git OpenClash https://github.com/vernesong master
}
Diy-Part2() {
2020-09-19 07:37:55 +00:00
echo "[$(date "+%H:%M:%S")] Current Openwrt version: $Lede_Version-`date +%Y%m%d`"
2020-09-19 08:12:10 +00:00
echo "[$(date "+%H:%M:%S")] Current Device: $TARGET_PROFILE"
2020-09-19 09:16:12 +00:00
if [ ! $(grep -o "Compiled by $Author" $Default_File | wc -l) == 1 ];then
2020-09-19 07:37:55 +00:00
sed -i "s?$Lede_Version?$Lede_Version Compiled by $Author [$Compile_Date]?g" $Default_File
2020-09-16 15:21:52 +00:00
fi
2020-09-19 07:37:55 +00:00
echo "$Lede_Version-`date +%Y%m%d`" > ./package/base-files/files/etc/openwrt_date
echo "[$(date "+%H:%M:%S")] Writing $Lede_Version-`date +%Y%m%d` to ./package/base-files/files/etc/openwrt_date ..."
echo "[$(date "+%H:%M:%S")] Writing $TARGET_PROFILE to ./package/base-files/files/etc/openwrt_device ..."
2020-09-16 15:21:52 +00:00
}
Diy-Part3() {
2020-09-19 07:37:55 +00:00
GET_TARGET_INFO
Default_Firmware=openwrt-$TARGET_BOARD-$TARGET_SUBTARGET-$TARGET_PROFILE-$FIRMWARE_SUFFIX
AutoBuild_Firmware=AutoBuild-$TARGET_PROFILE-Lede-$Lede_Version`(date +-%Y%m%d.bin)`
AutoBuild_Detail=AutoBuild-$TARGET_PROFILE-Lede-$Lede_Version`(date +-%Y%m%d.detail)`
2020-09-16 15:21:52 +00:00
mkdir -p ./bin/Firmware
mv ./bin/targets/$TARGET_BOARD/$TARGET_SUBTARGET/$Default_Firmware ./bin/Firmware/$AutoBuild_Firmware
cd ./bin/Firmware
Firmware_Size=`ls -l $AutoBuild_Firmware | awk '{print $5}'`
Firmware_Size_MB=`awk 'BEGIN{printf "固件大小:%.2fMB\n",'$((Firmware_Size))'/1000000}'`
Firmware_MD5=`md5sum $AutoBuild_Firmware | cut -d ' ' -f1`
Firmware_SHA256=`sha256sum $AutoBuild_Firmware | cut -d ' ' -f1`
echo "$Firmware_Size_MB" > ./$AutoBuild_Detail
echo -e "编译日期:$Compile_Time\n" >> ./$AutoBuild_Detail
echo -e "MD5:$Firmware_MD5\nSHA256:$Firmware_SHA256" >> ./$AutoBuild_Detail
cd ../..
}