1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
| cd ${TGT_ROOT} && \ tar --exclude="./lib/firmware/*" --exclude="./lib/modules/*" -xzf "$OPWRT_ROOTFS_GZ" && \ mkdir -p boot rom overlay proc sys run ./etc/modprobe.d ./etc/modules.d.remove && \ sync
cd ${TGT_ROOT} rm -rf ./lib/firmware/* ./lib/modules/* rm -f ./etc/docker-init ./sbin/firstboot ./sbin/jffs2reset ./sbin/jffs2mark [ -f ./etc/ppp/options-opkg ] && mv ./etc/ppp/options-opkg ./etc/ppp/options chmod 755 ./etc/init.d/*
cd ${TGT_ROOT} && cp -a ${FMW_HOME}/* ./lib/firmware/ && sync
cd ${TGT_ROOT} && \ mkdir -p lib/modules && \ cd lib/modules && \ tar xzf ${MODULES_TGZ} && \ cd ${KERNEL_VERSION}/ && \ find . -name '*.ko' -exec ln -sf {} . \; && \ rm -f "build" "source" "ntfs.ko" && \ sync
cd $TGT_ROOT cp -v $WIRELESS_CONFIG ./etc/config/ patch -p1 < $NETWORK_SERVICE_PATCH rm -rf ./etc/board.d/* && cp -v $BOARD_HOME/* ./etc/board.d/
cd $TGT_ROOT cat > ./etc/inittab <<EOF ::sysinit:/etc/init.d/rcS S boot ::shutdown:/etc/init.d/rcS K shutdown tty1::askfirst:/usr/libexec/login.sh ttyS2::askfirst:/usr/libexec/login.sh ttyFIQ0::askfirst:/usr/libexec/login.sh EOF
cd $TGT_ROOT cat > ./etc/fstab <<EOF UUID=${ROOTFS_UUID} / ext4 noatime,errors=remount-ro 0 1 UUID=${BOOTFS_UUID} /boot ext4 noatime,errors=remount-ro 0 2 #tmpfs /tmp tmpfs defaults,nosuid 0 0 EOF
cp -v ${SYSCTL_CUSTOM_CONF} ./etc/sysctl.d/
[ -d ./etc/modules.d.remove ] || mkdir -p ./etc/modules.d.remove for mod in $(cat ${KMOD_BLACKLIST}) ;do mv -f ./etc/modules.d/${mod} ./etc/modules.d.remove/ 2>/dev/null done
echo "mt7915e wed_enable=Y" > ./etc/modules.d/mt7915e echo "bifrost_kbase" > ./etc/modules.d/rk_gpu echo "rknpu" > ./etc/modules.d/rk_npu
[ -f ./etc/modules.d/usb-net-rtl8152 ] || echo "r8152" > ./etc/modules.d/usb-net-rtl8152
echo "dw_wdt" > ./etc/modules.d/watchdog
|