ipq40xx: fix invalid GPIO numbers since kernel 6.6
[openwrt/staging/xback.git] / package / system / opkg / files / 20_migrate-feeds
1 #!/bin/sh
2
3 [ -f /etc/opkg.conf ] && grep -q "src/" /etc/opkg.conf || exit 0
4
5 echo -e "# Old feeds from previous image\n# Uncomment to reenable\n" >> /etc/opkg/customfeeds.conf
6 sed -n "s/.*\(src\/.*\)/# \1/p" /etc/opkg.conf >> /etc/opkg/customfeeds.conf
7 sed -i "/.*src\/.*/d" /etc/opkg.conf
8
9 exit 0