install script
parent
7718dc3b1b
commit
cc18825fe0
@ -0,0 +1,23 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
OPENWRT_DIR="$1"
|
||||||
|
if test -z "$OPENWRT_DIR"; then
|
||||||
|
>&2 echo 'usage: ./install.sh openwrt-dir'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd "$OPENWRT_DIR"
|
||||||
|
if test ! -x scripts/feeds; then
|
||||||
|
>&2 echo "no scripts/feeds, is $OPENWRT_DIR correct?"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -e feeds.conf && cat feeds.conf | awk '{print $2}' | grep -qE '^pantonshire$'; then
|
||||||
|
>&2 echo 'feed already installed'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo 'src-git pantonshire https://git.pantonshire.com/tom/openwrt_feed.git' >> feeds.conf
|
||||||
|
./scripts/feeds update pantonshire
|
||||||
|
./scripts/feeds install -a -p pantonshire
|
||||||
|
|
||||||
Loading…
Reference in New Issue