aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/package/shfs/patches/102-gcc4_fix.patch
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2006-06-17 09:43:57 +0000
committerNicolas Thill <nico@openwrt.org>2006-06-17 09:43:57 +0000
commitfaed1635d8b83ba8ffc9c7929e9bd14704ef7c9e (patch)
treef1f60fd5a3950c9e4d31ac52eba5b42707ca0930 /target/linux/package/shfs/patches/102-gcc4_fix.patch
parent94e6eb2645c4b62f0158f4e67a65933d837fcb5c (diff)
downloadupstream-faed1635d8b83ba8ffc9c7929e9bd14704ef7c9e.tar.gz
upstream-faed1635d8b83ba8ffc9c7929e9bd14704ef7c9e.tar.bz2
upstream-faed1635d8b83ba8ffc9c7929e9bd14704ef7c9e.zip
move shfs from target/linux/package/ to package/.
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3970 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/package/shfs/patches/102-gcc4_fix.patch')
-rw-r--r--target/linux/package/shfs/patches/102-gcc4_fix.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/target/linux/package/shfs/patches/102-gcc4_fix.patch b/target/linux/package/shfs/patches/102-gcc4_fix.patch
deleted file mode 100644
index c4fd36629b..0000000000
--- a/target/linux/package/shfs/patches/102-gcc4_fix.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -ur shfs-0.35/shfs/Linux-2.6/dir.c shfs-0.35-new/shfs/Linux-2.6/dir.c
---- shfs-0.35/shfs/Linux-2.6/dir.c 2004-06-01 09:16:19.000000000 -0400
-+++ shfs-0.35-new/shfs/Linux-2.6/dir.c 2005-02-11 18:12:00.000000000 -0500
-@@ -19,6 +19,8 @@
- #include "shfs_debug.h"
- #include "proc.h"
-
-+static struct dentry_operations shfs_dentry_operations;
-+
- static int
- shfs_dir_open(struct inode *inode, struct file *filp)
- {
-diff -ur shfs-0.35/shfs/Linux-2.6/shfs_fs.h shfs-0.35-new/shfs/Linux-2.6/shfs_fs.h
---- shfs-0.35/shfs/Linux-2.6/shfs_fs.h 2004-06-01 09:16:19.000000000 -0400
-+++ shfs-0.35-new/shfs/Linux-2.6/shfs_fs.h 2005-02-11 18:12:03.000000000 -0500
-@@ -50,7 +50,6 @@
- #define ROUND_TO_MINS(x) do { (x).tv_sec = ((x).tv_sec / 60) * 60; (x).tv_nsec = 0; } while (0)
-
- /* shfs/dir.c */
--extern struct dentry_operations shfs_dentry_operations;
- extern struct file_operations shfs_dir_operations;
- extern struct inode_operations shfs_dir_inode_operations;
- extern void shfs_new_dentry(struct dentry *dentry);