#!/bin/bash -e ### 基础部分 ### # 使用 O2 级别的优化 sed -i 's/Os/O2/g' include/target.mk # 内核版本设置 cp -rf ../OpenBox/kernel-6.6/kernel/0001-linux-module-video.patch ./package/0001-linux-module-video.patch git apply package/0001-linux-module-video.patch rm -rf package/0001-linux-module-video.patch # 移除 SNAPSHOT 标签 sed -i 's,-SNAPSHOT,,g' include/version.mk sed -i 's,-SNAPSHOT,,g' package/base-files/image-config.in sed -i '/CONFIG_BUILDBOT/d' include/feeds.mk sed -i 's/;)\s*\\/; \\/' include/feeds.mk ### FW4 ### cp -rf ../OpenBox/firewall4/Makefile ./package/network/config/firewall4/Makefile sed -i 's|$(PROJECT_GIT)/project|https://github.com/openwrt|g' package/network/config/firewall4/Makefile mkdir -p package/network/config/firewall4/patches patch -p1 < ../OpenBox/firewall4/100-openwrt-firewall4-add-custom-nft-command-support.patch cp -rf ../OpenBox/firewall4/firewall4_patches package/network/config/firewall4/patches/ # libnftnl mkdir -p package/libs/libnftnl/patches cp -f ../OpenBox/firewall4/libnftnl/*.patch ./package/libs/libnftnl/patches/ # nftables mkdir -p package/network/utils/nftables/patches cp -f ../OpenBox/firewall4/nftables/*.patch ./package/network/utils/nftables/patches/ # kernel patch cp -f ../OpenBox/kernel-6.6/btf/*.patch ./target/linux/generic/hack-6.6/ cp -f ../OpenBox/kernel-6.6/arm64/*.patch ./target/linux/generic/hack-6.6/ cp -f ../OpenBox/kernel-6.6/net/*.patch ./target/linux/generic/hack-6.6/ # IPv6 NAT git clone https://github.com/sbwml/packages_new_nat6 package/new/nat6 # Natflow git clone https://github.com/sbwml/package_new_natflow package/new/natflow # Shortcut Forwarding Engine git clone https://git.cooluc.com/sbwml/shortcut-fe package/new/shortcut-fe # BBRv3 cp -rf ../OpenBox/kernel-6.6/bbr3/* ./target/linux/generic/backport-6.6/ # LRNG cp -rf ../OpenBox/kernel-6.6/lrng/* ./target/linux/generic/hack-6.6/ echo ' # CONFIG_RANDOM_DEFAULT_IMPL is not set CONFIG_LRNG=y CONFIG_LRNG_DEV_IF=y # CONFIG_LRNG_IRQ is not set CONFIG_LRNG_JENT=y CONFIG_LRNG_CPU=y # CONFIG_LRNG_SCHED is not set CONFIG_LRNG_SELFTEST=y # CONFIG_LRNG_SELFTEST_PANIC is not set ' >>./target/linux/generic/config-6.6 ### Other Kernel Hack 部分 ### # make olddefconfig patch -p1 < ../OpenBox/kernel-6.6/kernel/0003-include-kernel-defaults.mk.patch # igc-fix cp -rf ../OpenBox/kernel-6.6/igc-fix/* ./target/linux/x86/patches-6.6/ # btf cp -rf ../OpenBox/kernel-6.6/btf/* ./target/linux/generic/hack-6.6/ ### 个性化修改 ### sed -i "s/192.168.1.1/10.0.0.1/g" package/base-files/files/bin/config_generate if [ -n "$ROOT_PASSWORD" ]; then # sha256 encryption default_password=$(openssl passwd -5 password) sed -i "s|^root:[^:]*:|root:${default_password}:|" package/base-files/files/etc/shadow fi sed -i 's/OpenWrt/ZeroWrt/' package/base-files/files/bin/config_generate cp -rf ../OpenBox/doc/base-files/etc/banner > package/base-files/files/etc/banner # luci-mod extra pushd feeds/luci cat ../OpenBox/firewall4/luci-24.10/*.patch | patch -p1 popd # luci-mod extra pushd feeds/luci cat ../OpenBox/luci/*.patch | patch -p1 popd # opkg mkdir -p package/system/opkg/patches cp -rf ../OpenBox/opkg/* ./package/system/opkg/patches/ # TTYD sed -i 's/services/system/g' feeds/luci/applications/luci-app-ttyd/root/usr/share/luci/menu.d/luci-app-ttyd.json sed -i '3 a\\t\t"order": 50,' feeds/luci/applications/luci-app-ttyd/root/usr/share/luci/menu.d/luci-app-ttyd.json sed -i 's/procd_set_param stdout 1/procd_set_param stdout 0/g' feeds/packages/utils/ttyd/files/ttyd.init sed -i 's/procd_set_param stderr 1/procd_set_param stderr 0/g' feeds/packages/utils/ttyd/files/ttyd.init # profile sed -i 's#\\u@\\h:\\w\\\$#\\[\\e[32;1m\\][\\u@\\h\\[\\e[0m\\] \\[\\033[01;34m\\]\\W\\[\\033[00m\\]\\[\\e[32;1m\\]]\\[\\e[0m\\]\\\$#g' package/base-files/files/etc/profile sed -ri 's/(export PATH=")[^"]*/\1%PATH%:\/opt\/bin:\/opt\/sbin:\/opt\/usr\/bin:\/opt\/usr\/sbin/' package/base-files/files/etc/profile sed -i '/ENV/i\export TERM=xterm-color' package/base-files/files/etc/profile # bash sed -i 's#ash#bash#g' package/base-files/files/etc/passwd sed -i '\#export ENV=/etc/shinit#a export HISTCONTROL=ignoredups' package/base-files/files/etc/profile mkdir -p files/root curl -so files/root/.bash_profile $mirror/openwrt/files/root/.bash_profile curl -so files/root/.bashrc $mirror/openwrt/files/root/.bashrc # rootfs files mkdir -p files/etc/sysctl.d mkdir -p files/etc/hotplug.d/iface mkdir -p files/etc/hotplug.d/net curl -so files/etc/sysctl.d/10-default.conf $mirror/openwrt/files/etc/sysctl.d/10-default.conf curl -so files/etc/sysctl.d/15-vm-swappiness.conf $mirror/openwrt/files/etc/sysctl.d/15-vm-swappiness.conf curl -so files/etc/sysctl.d/16-udp-buffer-size.conf $mirror/openwrt/files/etc/sysctl.d/16-udp-buffer-size.conf curl -so files/etc/hotplug.d/iface/99-zzz-odhcpd $mirror/openwrt/files/etc/hotplug.d/iface/99-zzz-odhcpd curl -so files/etc/hotplug.d/net/01-maximize_nic_rx_tx_buffers $mirror/openwrt/files/etc/hotplug.d/net/01-maximize_nic_rx_tx_buffers # ZeroWrt Options Menu mkdir -p files/bin curl -so files/root/version.txt $mirror/openwrt/files/root/version.txt curl -so files/bin/ZeroWrt $mirror/openwrt/files/bin/ZeroWrt chmod +x files/bin/ZeroWrt chmod +x files/root/version.txt # key-build.pub curl -so files/root/key-build.pub https://opkg.kejizero.online/key-build.pub chmod +x files/root/key-build.pub # NTP sed -i 's/0.openwrt.pool.ntp.org/ntp1.aliyun.com/g' package/base-files/files/bin/config_generate sed -i 's/1.openwrt.pool.ntp.org/ntp2.aliyun.com/g' package/base-files/files/bin/config_generate sed -i 's/2.openwrt.pool.ntp.org/time1.cloud.tencent.com/g' package/base-files/files/bin/config_generate sed -i 's/3.openwrt.pool.ntp.org/time2.cloud.tencent.com/g' package/base-files/files/bin/config_generate # luci-theme-bootstrap sed -i 's/font-size: 13px/font-size: 14px/g' feeds/luci/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css sed -i 's/9.75px/10.75px/g' feeds/luci/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css # 版本设置 cat << 'EOF' >> feeds/luci/modules/luci-mod-status/ucode/template/admin_status/index.ut EOF # 加入作者信息 sed -i "s/DISTRIB_DESCRIPTION='*.*'/DISTRIB_DESCRIPTION='ZeroWrt-$(date +%Y%m%d)'/g" package/base-files/files/etc/openwrt_release sed -i "s/DISTRIB_REVISION='*.*'/DISTRIB_REVISION=' By OPPEN321'/g" package/base-files/files/etc/openwrt_release sed -i "s|^OPENWRT_RELEASE=\".*\"|OPENWRT_RELEASE=\"ZeroWrt 标准版 @R$(date +%Y%m%d) BY OPPEN321\"|" package/base-files/files/usr/lib/os-release