blob: a4bd7257580a4ed86e1d41db1c22c0dc48eba164 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#!/bin/sh
2
3[ -f /etc/opkg.conf ] && grep -q "src/" /etc/opkg.conf || exit 0
4
5echo -e "# Old feeds from previous image\n# Uncomment to reenable\n" >> /etc/opkg/customfeeds.conf
6sed -n "s/.*\(src\/.*\)/# \1/p" /etc/opkg.conf >> /etc/opkg/customfeeds.conf
7sed -i "/.*src\/.*/d" /etc/opkg.conf
8
9exit 0