1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-03-09 15:40:20 +00:00

Use rust from package feed when kernel !=5.4

This commit is contained in:
Ycarus (Yannick Chabanois) 2024-02-11 07:32:13 +01:00
parent a7f9914024
commit 34638e448b

View file

@ -202,6 +202,10 @@ else
# rm -rf "$OMR_TARGET/${OMR_KERNEL}/source/target/linux/ipq40xx" # rm -rf "$OMR_TARGET/${OMR_KERNEL}/source/target/linux/ipq40xx"
# mv -f "$OMR_TARGET/${OMR_KERNEL}/source/target/linux/ipq40xx.old" "$OMR_TARGET/${OMR_KERNEL}/source/target/linux/ipq40xx" # mv -f "$OMR_TARGET/${OMR_KERNEL}/source/target/linux/ipq40xx.old" "$OMR_TARGET/${OMR_KERNEL}/source/target/linux/ipq40xx"
fi fi
if [ -n "$CUSTOM_FEED" ] && [ -d ${CUSTOM_FEED}/source/${OMR_TARGET}/${OMR_KERNEL} ]; then
echo "Copy ${CUSTOM_FEED}/source/${OMR_TARGET}/${OMR_KERNEL}/* to $OMR_TARGET/${OMR_KERNEL}/source"
cp -rf ${CUSTOM_FEED}/source/${OMR_TARGET}/${OMR_KERNEL}/* "$OMR_TARGET/${OMR_KERNEL}/source"
fi
cat >> "$OMR_TARGET/${OMR_KERNEL}/source/package/base-files/files/etc/banner" <<EOF cat >> "$OMR_TARGET/${OMR_KERNEL}/source/package/base-files/files/etc/banner" <<EOF
----------------------------------------------------- -----------------------------------------------------
@ -882,6 +886,9 @@ if [ "$OMR_KERNEL" = "5.4" ]; then
scripts/feeds uninstall netifd scripts/feeds uninstall netifd
scripts/feeds install iproute2 scripts/feeds install iproute2
scripts/feeds install netifd scripts/feeds install netifd
else
scripts/feeds uninstall rust
scripts/feeds install rust
fi fi
cp .config.keep .config cp .config.keep .config
scripts/feeds install kmod-macremapper scripts/feeds install kmod-macremapper