From f431cd1a48a6a5186633bf5f16a2d21cb4399e8c Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 09 Feb 2012 10:56:43 -0500 Subject: Initial commit. TODO: Copyright information. Including source code and a patch to add files generated by GNU Autoconf is not very pretty... Running 'make dist' in the SVN trunk to generate a source archive might be better. --- (limited to 'src/intercept') diff --git a/src/intercept/.svn/all-wcprops b/src/intercept/.svn/all-wcprops new file mode 100644 index 0000000..0c6bb69 --- /dev/null +++ b/src/intercept/.svn/all-wcprops @@ -0,0 +1,23 @@ +K 25 +svn:wc:ra_dav:version-url +V 33 +/svn/!svn/ver/599/trunk/intercept +END +ldconfig +K 25 +svn:wc:ra_dav:version-url +V 40 +/svn/!svn/ver/8/trunk/intercept/ldconfig +END +update-modules +K 25 +svn:wc:ra_dav:version-url +V 46 +/svn/!svn/ver/8/trunk/intercept/update-modules +END +depmod +K 25 +svn:wc:ra_dav:version-url +V 40 +/svn/!svn/ver/599/trunk/intercept/depmod +END diff --git a/src/intercept/.svn/entries b/src/intercept/.svn/entries new file mode 100644 index 0000000..9a8d6c2 --- /dev/null +++ b/src/intercept/.svn/entries @@ -0,0 +1,130 @@ +10 + +dir +635 +http://opkg.googlecode.com/svn/trunk/intercept +http://opkg.googlecode.com/svn + + + +2011-02-02T00:53:46.722527Z +599 +graham.gower@gmail.com + + + + + + + + + + + + + + +e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 + +ldconfig +file + + + + +2012-02-03T08:11:57.139042Z +7c6a3e9a69d12051c8408d5219d0475f +2008-12-15T04:18:06.332473Z +8 +ticktock35 + + + + + + + + + + + + + + + + + + + + + +151 + +update-modules +file + + + + +2012-02-03T08:11:57.139042Z +ae529fb0a3053604d6a7ace02680fcaa +2008-12-15T04:18:06.332473Z +8 +ticktock35 + + + + + + + + + + + + + + + + + + + + + +175 + +depmod +file + + + + +2012-02-03T08:11:57.139042Z +79516947e97ecd71c163e4f751e5c736 +2011-02-02T00:53:46.722527Z +599 +graham.gower@gmail.com + + + + + + + + + + + + + + + + + + + + + +309 + diff --git a/src/intercept/.svn/text-base/depmod.svn-base b/src/intercept/.svn/text-base/depmod.svn-base new file mode 100644 index 0000000..f8a4f9a --- /dev/null +++ b/src/intercept/.svn/text-base/depmod.svn-base @@ -0,0 +1,12 @@ +#!/bin/sh + +if [ "x$1" = "x-a" ] || [ "x$1" = "x-A" ]; then + echo "depmod $@" >> $OPKG_INTERCEPT_DIR/depmod + sort -u $OPKG_INTERCEPT_DIR/depmod > $OPKG_INTERCEPT_DIR/depmod.tmp + mv $OPKG_INTERCEPT_DIR/depmod.tmp $OPKG_INTERCEPT_DIR/depmod + chmod +x $OPKG_INTERCEPT_DIR/depmod + exit 0 +fi + +/sbin/depmod $* + diff --git a/src/intercept/.svn/text-base/ldconfig.svn-base b/src/intercept/.svn/text-base/ldconfig.svn-base new file mode 100644 index 0000000..e07c81d --- /dev/null +++ b/src/intercept/.svn/text-base/ldconfig.svn-base @@ -0,0 +1,7 @@ +#!/bin/sh + +if [ ! -f $OPKG_INTERCEPT_DIR/ldconfig ]; then + echo "ldconfig" > $OPKG_INTERCEPT_DIR/ldconfig + chmod +x $OPKG_INTERCEPT_DIR/ldconfig +fi + diff --git a/src/intercept/.svn/text-base/update-modules.svn-base b/src/intercept/.svn/text-base/update-modules.svn-base new file mode 100644 index 0000000..ac5749c --- /dev/null +++ b/src/intercept/.svn/text-base/update-modules.svn-base @@ -0,0 +1,7 @@ +#!/bin/sh + +if [ ! -f $OPKG_INTERCEPT_DIR/update-modules ]; then + echo "update-modules" > $OPKG_INTERCEPT_DIR/update-modules + chmod +x $OPKG_INTERCEPT_DIR/update-modules +fi + diff --git a/src/intercept/depmod b/src/intercept/depmod new file mode 100644 index 0000000..f8a4f9a --- /dev/null +++ b/src/intercept/depmod @@ -0,0 +1,12 @@ +#!/bin/sh + +if [ "x$1" = "x-a" ] || [ "x$1" = "x-A" ]; then + echo "depmod $@" >> $OPKG_INTERCEPT_DIR/depmod + sort -u $OPKG_INTERCEPT_DIR/depmod > $OPKG_INTERCEPT_DIR/depmod.tmp + mv $OPKG_INTERCEPT_DIR/depmod.tmp $OPKG_INTERCEPT_DIR/depmod + chmod +x $OPKG_INTERCEPT_DIR/depmod + exit 0 +fi + +/sbin/depmod $* + diff --git a/src/intercept/ldconfig b/src/intercept/ldconfig new file mode 100644 index 0000000..e07c81d --- /dev/null +++ b/src/intercept/ldconfig @@ -0,0 +1,7 @@ +#!/bin/sh + +if [ ! -f $OPKG_INTERCEPT_DIR/ldconfig ]; then + echo "ldconfig" > $OPKG_INTERCEPT_DIR/ldconfig + chmod +x $OPKG_INTERCEPT_DIR/ldconfig +fi + diff --git a/src/intercept/update-modules b/src/intercept/update-modules new file mode 100644 index 0000000..ac5749c --- /dev/null +++ b/src/intercept/update-modules @@ -0,0 +1,7 @@ +#!/bin/sh + +if [ ! -f $OPKG_INTERCEPT_DIR/update-modules ]; then + echo "update-modules" > $OPKG_INTERCEPT_DIR/update-modules + chmod +x $OPKG_INTERCEPT_DIR/update-modules +fi + -- cgit v0.9.1