diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /tools/squashfs/patches/.svn | |
download | trunk-36060-master.tar.gz trunk-36060-master.tar.bz2 trunk-36060-master.zip |
Diffstat (limited to 'tools/squashfs/patches/.svn')
-rw-r--r-- | tools/squashfs/patches/.svn/entries | 62 | ||||
-rw-r--r-- | tools/squashfs/patches/.svn/prop-base/100-lzma.patch.svn-base | 5 | ||||
-rw-r--r-- | tools/squashfs/patches/.svn/text-base/100-lzma.patch.svn-base | 22 |
3 files changed, 89 insertions, 0 deletions
diff --git a/tools/squashfs/patches/.svn/entries b/tools/squashfs/patches/.svn/entries new file mode 100644 index 0000000..c543dd2 --- /dev/null +++ b/tools/squashfs/patches/.svn/entries @@ -0,0 +1,62 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/tools/squashfs/patches +svn://svn.openwrt.org/openwrt + + + +2009-05-04T17:04:03.671374Z +15595 +nbd + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +100-lzma.patch +file + + + + +2013-03-17T12:13:22.000000Z +70a4a7e75d3be8641c3833c12c48b897 +2009-05-04T17:04:03.671374Z +15595 +nbd +has-props + + + + + + + + + + + + + + + + + + + + +719 + diff --git a/tools/squashfs/patches/.svn/prop-base/100-lzma.patch.svn-base b/tools/squashfs/patches/.svn/prop-base/100-lzma.patch.svn-base new file mode 100644 index 0000000..bdbd305 --- /dev/null +++ b/tools/squashfs/patches/.svn/prop-base/100-lzma.patch.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:eol-style +V 6 +native +END diff --git a/tools/squashfs/patches/.svn/text-base/100-lzma.patch.svn-base b/tools/squashfs/patches/.svn/text-base/100-lzma.patch.svn-base new file mode 100644 index 0000000..e3b2a3a --- /dev/null +++ b/tools/squashfs/patches/.svn/text-base/100-lzma.patch.svn-base @@ -0,0 +1,22 @@ +--- a/squashfs-tools/Makefile ++++ b/squashfs-tools/Makefile +@@ -7,6 +8,9 @@ all: mksquashfs unsquashfs + mksquashfs: mksquashfs.o read_fs.o sort.o + $(CC) mksquashfs.o read_fs.o sort.o -lz -o $@ + ++mksquashfs-lzma: mksquashfs.o read_fs.o sort.o ++ $(CXX) mksquashfs.o read_fs.o sort.o -L$(LZMAPATH) -llzma-old -o $@ ++ + mksquashfs.o: mksquashfs.c squashfs_fs.h mksquashfs.h global.h sort.h + + read_fs.o: read_fs.c squashfs_fs.h read_fs.h global.h +@@ -16,4 +20,9 @@ sort.o: sort.c squashfs_fs.h global.h so + unsquashfs: unsquashfs.o + $(CC) unsquashfs.o -lz -o $@ + ++unsquashfs-lzma: unsquashfs.o ++ $(CXX) unsquashfs.o -L$(LZMAPATH) -llzma-old -o $@ ++ + unsquashfs.o: unsquashfs.c squashfs_fs.h read_fs.h global.h ++ ++clean: |