]> git.proxmox.com Git - mirror_frr.git/commitdiff
pimd: Remove unneeded shell scripts
authorDonald Sharp <sharpd@cumulusnetworks.com>
Fri, 17 Jun 2016 22:47:48 +0000 (18:47 -0400)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Fri, 17 Jun 2016 22:47:48 +0000 (18:47 -0400)
Remove some unneeded shell scripts.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
pimd/git-clone-github.sh [deleted file]
pimd/git-clone-savannah.sh [deleted file]
pimd/quagga-bootstrap.sh [deleted file]
pimd/quagga-build-no-vtysh.sh [deleted file]
pimd/quagga-build.sh [deleted file]
pimd/quagga-configure-no-vtysh.sh [deleted file]
pimd/quagga-configure.sh [deleted file]
pimd/quagga-git-add.sh [deleted file]
pimd/quagga-memtypes.sh [deleted file]

diff --git a/pimd/git-clone-github.sh b/pimd/git-clone-github.sh
deleted file mode 100755 (executable)
index ae2362a..0000000
+++ /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 (executable)
index 1aad51b..0000000
+++ /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 (executable)
index 4ec443d..0000000
+++ /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 (executable)
index 7136f67..0000000
+++ /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 (executable)
index 2ad476d..0000000
+++ /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 (executable)
index b3052dc..0000000
+++ /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 (executable)
index 72329eb..0000000
+++ /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 (executable)
index 3824e98..0000000
+++ /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 (executable)
index e86f414..0000000
+++ /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