summaryrefslogtreecommitdiffstats
path: root/src/intercept/.svn
diff options
context:
space:
mode:
Diffstat (limited to 'src/intercept/.svn')
-rw-r--r--src/intercept/.svn/all-wcprops23
-rw-r--r--src/intercept/.svn/entries130
-rw-r--r--src/intercept/.svn/text-base/depmod.svn-base12
-rw-r--r--src/intercept/.svn/text-base/ldconfig.svn-base7
-rw-r--r--src/intercept/.svn/text-base/update-modules.svn-base7
5 files changed, 179 insertions, 0 deletions
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
+