Author: alexander
Date: 2006-12-04 09:20:55 -0700 (Mon, 04 Dec 2006)
New Revision: 1757
Added:
branches/6.2/packages/dosfstools/
branches/6.2/packages/dosfstools/Makefile
branches/6.2/packages/fuse/
branches/6.2/packages/fuse/Makefile
branches/6.2/packages/ntfsprogs/
branches/6.2/packages/ntfsprogs/Makefile
Modified:
branches/6.2/Makefile
branches/6.2/doc/README
branches/6.2/packages/linux/config.ppc
branches/6.2/packages/linux/config.ppc.ata
branches/6.2/packages/linux/config.sparc
branches/6.2/packages/linux/config.sparc.ata
branches/6.2/packages/linux/config.x86
branches/6.2/packages/linux/config.x86.ata
branches/6.2/packages/linux64/config.x86_64
branches/6.2/packages/linux64/config.x86_64.ata
Log:
Added dosfstools and ntfsprogs
Modified: branches/6.2/Makefile
===================================================================
--- branches/6.2/Makefile 2006-12-04 12:37:46 UTC (rev 1756)
+++ branches/6.2/Makefile 2006-12-04 16:20:55 UTC (rev 1757)
@@ -273,7 +273,8 @@
ch-man-fr ch-man-pages-es ch-man-pages-it ch-manpages-de ch-manpages-ru
\
ch-anthy ch-scim ch-scim-tables ch-scim-anthy ch-scim-hangul \
ch-libchewing ch-scim-chewing ch-scim-pinyin ch-scim-input-pad \
- ch-hibernate-script ch-parted ch-slang ch-mc
+ ch-hibernate-script ch-parted ch-slang ch-mc \
+ ch-fuse ch-dosfstools ch-ntfsprogs
ifeq ($(LFS-ARCH),x86)
make ch-vbetool ch-bin86 ch-grub ch-lilo ch-syslinux
# Proprietary drivers disabled - NVIDIA crashes, ATI is too fat
Modified: branches/6.2/doc/README
===================================================================
--- branches/6.2/doc/README 2006-12-04 12:37:46 UTC (rev 1756)
+++ branches/6.2/doc/README 2006-12-04 16:20:55 UTC (rev 1757)
@@ -45,6 +45,8 @@
* reiserfsprogs
* reiser4progs
* xfsprogs
+* dosfstools
+* ntfsprogs
Debugging Programs
* strace
Added: branches/6.2/packages/dosfstools/Makefile
===================================================================
--- branches/6.2/packages/dosfstools/Makefile (rev 0)
+++ branches/6.2/packages/dosfstools/Makefile 2006-12-04 16:20:55 UTC (rev
1757)
@@ -0,0 +1,29 @@
+# dosfstools Makefile
+
+NM= dosfstools
+VRS= 2.11
+DIR= $(NM)-$(VRS)
+
+FILE= $(DIR).src.tar.gz
+URL-$(FILE)= http://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/$(FILE)
+SHA-$(FILE)= b0d8714475ca7c7a96a46adf7c4839d69ce2f412
+
+# Targets
+
+include $(ROOT)/scripts/functions
+
+chroot:
+ chroot "$(MP)" $(chenv-blfs) \
+ 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)'
+
+stage2: Makefile $(FILE)
+ $(std_build)
+
+compile-stage2:
+ make
+ make install
+
+clean:
+ -rm -rf $(DIR)
+
+.PHONY: clean chroot compile-stage2
Added: branches/6.2/packages/fuse/Makefile
===================================================================
--- branches/6.2/packages/fuse/Makefile (rev 0)
+++ branches/6.2/packages/fuse/Makefile 2006-12-04 16:20:55 UTC (rev 1757)
@@ -0,0 +1,30 @@
+# fuse Makefile
+
+NM= fuse
+VRS= 2.6.1
+DIR= $(NM)-$(VRS)
+
+FILE= $(DIR).tar.gz
+URL-$(FILE)= http://switch.dl.sourceforge.net/sourceforge/fuse/$(FILE)
+SHA-$(FILE)= 85ec4458d0ab2647b6b43605f0200006d89981ed
+
+# Targets
+
+include $(ROOT)/scripts/functions
+
+chroot:
+ chroot "$(MP)" $(chenv-blfs) \
+ 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)'
+
+stage2: Makefile $(FILE)
+ $(std_build)
+
+compile-stage2:
+ ./configure --prefix=/usr --disable-kernel-module
+ make
+ make INIT_D_PATH=. install
+
+clean:
+ -rm -rf $(DIR)
+
+.PHONY: clean chroot compile-stage2
Modified: branches/6.2/packages/linux/config.ppc
===================================================================
--- branches/6.2/packages/linux/config.ppc 2006-12-04 12:37:46 UTC (rev
1756)
+++ branches/6.2/packages/linux/config.ppc 2006-12-04 16:20:55 UTC (rev
1757)
@@ -1500,7 +1500,7 @@
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
-# CONFIG_FUSE_FS is not set
+CONFIG_FUSE_FS=m
#
# CD-ROM/DVD Filesystems
Modified: branches/6.2/packages/linux/config.ppc.ata
===================================================================
--- branches/6.2/packages/linux/config.ppc.ata 2006-12-04 12:37:46 UTC (rev
1756)
+++ branches/6.2/packages/linux/config.ppc.ata 2006-12-04 16:20:55 UTC (rev
1757)
@@ -1434,7 +1434,7 @@
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
-# CONFIG_FUSE_FS is not set
+CONFIG_FUSE_FS=m
#
# CD-ROM/DVD Filesystems
Modified: branches/6.2/packages/linux/config.sparc
===================================================================
--- branches/6.2/packages/linux/config.sparc 2006-12-04 12:37:46 UTC (rev
1756)
+++ branches/6.2/packages/linux/config.sparc 2006-12-04 16:20:55 UTC (rev
1757)
@@ -1324,7 +1324,7 @@
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
-# CONFIG_FUSE_FS is not set
+CONFIG_FUSE_FS=m
#
# CD-ROM/DVD Filesystems
Modified: branches/6.2/packages/linux/config.sparc.ata
===================================================================
--- branches/6.2/packages/linux/config.sparc.ata 2006-12-04 12:37:46 UTC
(rev 1756)
+++ branches/6.2/packages/linux/config.sparc.ata 2006-12-04 16:20:55 UTC
(rev 1757)
@@ -1266,7 +1266,7 @@
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
-# CONFIG_FUSE_FS is not set
+CONFIG_FUSE_FS=m
#
# CD-ROM/DVD Filesystems
Modified: branches/6.2/packages/linux/config.x86
===================================================================
--- branches/6.2/packages/linux/config.x86 2006-12-04 12:37:46 UTC (rev
1756)
+++ branches/6.2/packages/linux/config.x86 2006-12-04 16:20:55 UTC (rev
1757)
@@ -1597,7 +1597,7 @@
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
-# CONFIG_FUSE_FS is not set
+CONFIG_FUSE_FS=m
#
# CD-ROM/DVD Filesystems
Modified: branches/6.2/packages/linux/config.x86.ata
===================================================================
--- branches/6.2/packages/linux/config.x86.ata 2006-12-04 12:37:46 UTC (rev
1756)
+++ branches/6.2/packages/linux/config.x86.ata 2006-12-04 16:20:55 UTC (rev
1757)
@@ -1529,7 +1529,7 @@
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
-# CONFIG_FUSE_FS is not set
+CONFIG_FUSE_FS=m
#
# CD-ROM/DVD Filesystems
Modified: branches/6.2/packages/linux64/config.x86_64
===================================================================
--- branches/6.2/packages/linux64/config.x86_64 2006-12-04 12:37:46 UTC (rev
1756)
+++ branches/6.2/packages/linux64/config.x86_64 2006-12-04 16:20:55 UTC (rev
1757)
@@ -1456,7 +1456,7 @@
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
-# CONFIG_FUSE_FS is not set
+CONFIG_FUSE_FS=m
#
# CD-ROM/DVD Filesystems
Modified: branches/6.2/packages/linux64/config.x86_64.ata
===================================================================
--- branches/6.2/packages/linux64/config.x86_64.ata 2006-12-04 12:37:46 UTC
(rev 1756)
+++ branches/6.2/packages/linux64/config.x86_64.ata 2006-12-04 16:20:55 UTC
(rev 1757)
@@ -1390,7 +1390,7 @@
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
-# CONFIG_FUSE_FS is not set
+CONFIG_FUSE_FS=m
#
# CD-ROM/DVD Filesystems
Added: branches/6.2/packages/ntfsprogs/Makefile
===================================================================
--- branches/6.2/packages/ntfsprogs/Makefile (rev 0)
+++ branches/6.2/packages/ntfsprogs/Makefile 2006-12-04 16:20:55 UTC (rev
1757)
@@ -0,0 +1,30 @@
+# ntfsprogs Makefile
+
+NM= ntfsprogs
+VRS= 1.13.1
+DIR= $(NM)-$(VRS)
+
+FILE= $(DIR).tar.gz
+URL-$(FILE)= http://switch.dl.sourceforge.net/sourceforge/linux-ntfs/$(FILE)
+SHA-$(FILE)= a4e50f6fc10fcc1e1f562ad64bcbf9a0d46ca72a
+
+# Targets
+
+include $(ROOT)/scripts/functions
+
+chroot:
+ chroot "$(MP)" $(chenv-blfs) \
+ 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)'
+
+stage2: Makefile $(FILE)
+ $(std_build)
+
+compile-stage2:
+ ./configure --prefix=/usr
+ make
+ make install
+
+clean:
+ -rm -rf $(DIR)
+
+.PHONY: clean chroot compile-stage2
--
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page