aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lzma
Commit message (Expand)AuthorAgeFilesLines
* convert remaining tools to $(HOST_STATIC_LINKING) (#12012)Jo-Philipp Wich2012-08-121-2/+2
* lzma: link staticallyJo-Philipp Wich2012-08-101-2/+2
* tools/squashfs4: update to version 4.2 (adds support for xz compression)Felix Fietkau2011-04-031-3/+1
* make the lzma version kernel version dependent, and only build the one we do ...Imre Kaloz2009-11-151-0/+1
* port lzmp that is packaged by debian, build it, but do not install it yetFlorian Fainelli2009-06-014-0/+1100
* revert r16017 there are no users of it yetFlorian Fainelli2009-05-241-1/+0
* install the new lzma version (4.65) in staging_dir/host as lzma-newFlorian Fainelli2009-05-231-1/+2
* add the new lzma library (version 4.65), to be used for squashfs4Felix Fietkau2009-05-172-0/+105
* rename tools/lzma to tools/lzma-old (preparation for adding a new lzma version)Felix Fietkau2009-05-043-453/+0
* build system refactoring in preparation for allowing packages to do host-buil...Felix Fietkau2009-02-221-6/+6
* lzma: use a repacked tarball instead of the original one to get rid of CRLF c...Felix Fietkau2009-02-211-6/+5
* tools: refresh patches for tools lua, mtd-utils, ipkg-utils, squashfs, lzma, ...Hauke Mehrtens2009-02-212-19/+13
* Directly use the kent sourceforge mirrors, previous are in timeoutFlorian Fainelli2008-11-171-1/+1
* fix another build issue on some osx machines - run ranlib on the lzma lib arc...Felix Fietkau2007-12-021-0/+12
* build system cleanup/restructuring as described in http://lists.openwrt.org/p...Felix Fietkau2007-08-071-11/+7
* fix lzma compileFelix Fietkau2006-10-141-1/+1
* finally move buildroot-ng to trunkFelix Fietkau2016-03-202-0/+452
v class="highlight">
--- a/fs/yaffs2/yaffs_vfs.c
+++ b/fs/yaffs2/yaffs_vfs.c
@@ -3025,6 +3025,7 @@ static DECLARE_FSTYPE(yaffs2_fs_type, "y
 #endif
 
 
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 9, 0))
 static struct proc_dir_entry *my_proc_entry;
 
 static char *yaffs_dump_dev_part0(char *buf, struct yaffs_dev *dev)
@@ -3398,6 +3399,7 @@ static int yaffs_proc_write(struct file
 		return yaffs_proc_debug_write(file, buf, count, data);
 	return yaffs_proc_write_trace_options(file, buf, count, data);
 }
+#endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(3, 9, 0)) */
 
 /* Stuff to handle installation of file systems */
 struct file_system_to_install {
@@ -3421,6 +3423,7 @@ static int __init init_yaffs_fs(void)
 
 	mutex_init(&yaffs_context_lock);
 
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 9, 0))
 	/* Install the proc_fs entries */
 	my_proc_entry = create_proc_entry("yaffs",
 					  S_IRUGO | S_IFREG, YPROC_ROOT);
@@ -3432,6 +3435,7 @@ static int __init init_yaffs_fs(void)
 	} else {
 		return -ENOMEM;
         }
+#endif
 
 	/* Now add the file system entries */
 
@@ -3468,7 +3472,9 @@ static void __exit exit_yaffs_fs(void)
 	yaffs_trace(YAFFS_TRACE_ALWAYS,
 		"yaffs built " __DATE__ " " __TIME__ " removing.");
 
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 9, 0))
 	remove_proc_entry("yaffs", YPROC_ROOT);
+#endif
 
 	fsinst = fs_to_install;