From: Donald Sharp Date: Fri, 17 Jun 2016 22:47:48 +0000 (-0400) Subject: pimd: Remove unneeded shell scripts X-Git-Tag: frr-2.0-rc1~522 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=515b39d7042d129238a313ea0aba37ee4b0742c7;p=mirror%2Ffrr.git pimd: Remove unneeded shell scripts Remove some unneeded shell scripts. Signed-off-by: Donald Sharp --- diff --git a/pimd/git-clone-github.sh b/pimd/git-clone-github.sh deleted file mode 100755 index ae2362a739..0000000000 --- a/pimd/git-clone-github.sh +++ /dev/null @@ -1,27 +0,0 @@ -#! /bin/bash -# -# Github Developer Git Checkout -# -# Delete remote branch qpimd: git push origin :qpimd -# (git push origin :refs/heads/branch_to_delete) -# Delete remote tag v0.139: git push origin :v0.139 -# (git push origin :refs/tags/tag_to_delete) -# Create remote-tracking branch: git checkout -b pim0.142 origin/pim0.142 -# Rename branch qpimd to pim: git branch -m qpimd pim -# Commit changes: git commit -a -# Send changes: git push --all -# -# Recipe to re-sync with Quagga repository: -# git clone https://github.com/udhos/qpimd quagga -# cd quagga -# git checkout master -# git pull http://git.sv.gnu.org/r/quagga.git master -# git checkout -b pim origin/pim -# git rebase master pim -# # Test, then push back into Github repository: -# git push origin :pim ;# delete remote branch pim -# git push --all -# -# $QuaggaId: $Format:%an, %ai, %h$ $ - -git clone https://github.com/udhos/qpimd diff --git a/pimd/git-clone-savannah.sh b/pimd/git-clone-savannah.sh deleted file mode 100755 index 1aad51bb2d..0000000000 --- a/pimd/git-clone-savannah.sh +++ /dev/null @@ -1,27 +0,0 @@ -#! /bin/bash -# -# Savannah Developer Git Checkout -# -# Delete remote branch qpimd: git push origin :qpimd -# (git push origin :refs/heads/branch_to_delete) -# Delete remote tag v0.139: git push origin :v0.139 -# (git push origin :refs/tags/tag_to_delete) -# Create remote-tracking branch: git checkout -b pim0.142 origin/pim0.142 -# Rename branch qpimd to pim: git branch -m qpimd pim -# Commit changes: git commit -a -# Send changes: git push --all -# -# Recipe to re-sync with Quagga repository: -# git clone ssh://evertonm@git.sv.gnu.org/srv/git/qpimd.git quagga -# cd quagga -# git checkout master -# git pull git://code.quagga.net/quagga.git master -# git checkout -b pim origin/pim -# git rebase master pim -# # Test, then push back into Savannah repository: -# git push origin :pim ;# delete remote branch pim -# git push --all -# -# $QuaggaId: $Format:%an, %ai, %h$ $ - -git clone ssh://evertonm@git.sv.gnu.org/srv/git/qpimd.git quagga diff --git a/pimd/quagga-bootstrap.sh b/pimd/quagga-bootstrap.sh deleted file mode 100755 index 4ec443d930..0000000000 --- a/pimd/quagga-bootstrap.sh +++ /dev/null @@ -1,23 +0,0 @@ -#! /bin/bash -# -# Bootstrap Quagga autotools for pimd. -# -# Run from quagga's top dir as: -# ./pimd/quagga-bootstrap.sh -# -# $QuaggaId: $Format:%an, %ai, %h$ $ - -me=`basename $0` -msg () { - echo >&2 $me: $* -} - -if [ -f ./bootstrap.sh ]; then - msg found ./bootstrap.sh from quagga - ./bootstrap.sh -else - msg missing ./bootstrap.sh from quagga - #autoreconf -i --force - #bootstrap from tarball prefers autoreconf -i - autoreconf -i -fi diff --git a/pimd/quagga-build-no-vtysh.sh b/pimd/quagga-build-no-vtysh.sh deleted file mode 100755 index 7136f67050..0000000000 --- a/pimd/quagga-build-no-vtysh.sh +++ /dev/null @@ -1,10 +0,0 @@ -#! /bin/bash -# -# Build minimum Quagga needed for pimd. -# -# Run from quagga's top dir as: -# ./pimd/quagga-build-no-vtysh.sh -# -# $QuaggaId: $Format:%an, %ai, %h$ $ - -./pimd/quagga-memtypes.sh && ./pimd/quagga-bootstrap.sh && ./pimd/quagga-configure-no-vtysh.sh && make diff --git a/pimd/quagga-build.sh b/pimd/quagga-build.sh deleted file mode 100755 index 2ad476d00c..0000000000 --- a/pimd/quagga-build.sh +++ /dev/null @@ -1,10 +0,0 @@ -#! /bin/bash -# -# Build minimum Quagga needed for pimd. -# -# Run from quagga's top dir as: -# ./pimd/quagga-build.sh -# -# $QuaggaId: $Format:%an, %ai, %h$ $ - -./pimd/quagga-memtypes.sh && ./pimd/quagga-bootstrap.sh && ./pimd/quagga-configure.sh && make diff --git a/pimd/quagga-configure-no-vtysh.sh b/pimd/quagga-configure-no-vtysh.sh deleted file mode 100755 index b3052dceb6..0000000000 --- a/pimd/quagga-configure-no-vtysh.sh +++ /dev/null @@ -1,10 +0,0 @@ -#! /bin/bash -# -# Configure for minimum Quagga build needed for pimd. -# -# Run from quagga's top dir as: -# ./pimd/quagga-configure-no-vtysh.sh -# -# $QuaggaId: $Format:%an, %ai, %h$ $ - -./configure --disable-babeld --disable-bgpd --disable-ripd --disable-ripngd --disable-ospfd --disable-ospf6d --disable-watchquagga --disable-bgp-announce --disable-ospfapi --disable-ospfclient --disable-rtadv --disable-irdp --enable-pimd --enable-tcp-zebra --enable-ipv6 diff --git a/pimd/quagga-configure.sh b/pimd/quagga-configure.sh deleted file mode 100755 index 72329eb90c..0000000000 --- a/pimd/quagga-configure.sh +++ /dev/null @@ -1,10 +0,0 @@ -#! /bin/bash -# -# Configure for minimum Quagga build needed for pimd. -# -# Run from quagga's top dir as: -# . pimd/quagga-configure.sh -# -# $QuaggaId: $Format:%an, %ai, %h$ $ - -tail -1 ./pimd/quagga-configure-no-vtysh.sh --enable-vtysh diff --git a/pimd/quagga-git-add.sh b/pimd/quagga-git-add.sh deleted file mode 100755 index 3824e984e4..0000000000 --- a/pimd/quagga-git-add.sh +++ /dev/null @@ -1,12 +0,0 @@ -#! /bin/bash -# -# Add to git new files created by qpimd patch -# -# Run from quagga's top dir as: -# ./pimd/quagga-git-add.sh -# -# $QuaggaId: $Format:%an, %ai, %h$ $ - -chmod a+rx pimd/*.sh -git add doc/pimd.8 -git add pimd diff --git a/pimd/quagga-memtypes.sh b/pimd/quagga-memtypes.sh deleted file mode 100755 index e86f414b8d..0000000000 --- a/pimd/quagga-memtypes.sh +++ /dev/null @@ -1,22 +0,0 @@ -#! /bin/bash -# -# Check lib/memtypes.h from Quagga -# -# Run from quagga's top dir as: -# ./pimd/quagga-memtypes.sh -# -# $QuaggaId: $Format:%an, %ai, %h$ $ - -me=`basename $0` -msg () { - echo >&2 $me: $* -} - -memtypes_h=lib/memtypes.h -if [ -e $memtypes_h ]; then - memtypes_h_size=`ls -s $memtypes_h | cut -d' ' -f1` - if [ "$memtypes_h_size" -lt 1 ]; then - msg WARNING: removing empty file: $memtypes_h -- awk failed? - rm $memtypes_h - fi -fi