Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/target/ubifs
@ 2008-04-07  1:44 hamish at uclibc.org
  0 siblings, 0 replies; 3+ messages in thread
From: hamish at uclibc.org @ 2008-04-07  1:44 UTC (permalink / raw)
  To: buildroot

Author: hamish
Date: 2008-04-06 18:44:06 -0700 (Sun, 06 Apr 2008)
New Revision: 21659

Log:
Update to mkfs.ubifs v0.4 release. Note that you need the latest ubifs
kernel code because the on-flash format has changed.


Modified:
   trunk/buildroot/target/ubifs/ubifsroot.mk


Changeset:
Modified: trunk/buildroot/target/ubifs/ubifsroot.mk
===================================================================
--- trunk/buildroot/target/ubifs/ubifsroot.mk	2008-04-07 00:46:29 UTC (rev 21658)
+++ trunk/buildroot/target/ubifs/ubifsroot.mk	2008-04-07 01:44:06 UTC (rev 21659)
@@ -3,8 +3,10 @@
 # mkfs.ubifs to build to target ubifs filesystems
 #
 #############################################################
-MKFS_UBIFS_VERSION=2582f128dad78591bc3adcc87c343c690bb82e61
-MKFS_UBIFS_URL=http://git.infradead.org/users/dedekind/mkfs.ubifs.git?a=snapshot;h=$(MKFS_UBIFS_VERSION);sf=tgz
+#MKFS_UBIFS_VERSION=2582f128dad78591bc3adcc87c343c690bb82e61
+#MKFS_UBIFS_URL=http://git.infradead.org/users/dedekind/mkfs.ubifs.git?a=snapshot;h=$(MKFS_UBIFS_VERSION);sf=tgz
+MKFS_UBIFS_VERSION=v0.4
+MKFS_UBIFS_URL=http://git.infradead.org/users/dedekind/mkfs.ubifs.git?a=snapshot;h=refs/tags/mkfs.ubifs-$(MKFS_UBIFS_VERSION);sf=tgz
 MKFS_UBIFS_SOURCE:=mkfs.ubifs-$(MKFS_UBIFS_VERSION).tar.gz
 MKFS_UBIFS_DIR:= $(BUILD_DIR)/mkfs-ubifs-$(MKFS_UBIFS_VERSION)
 MKFS_UBIFS_CAT:=$(ZCAT)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/target/ubifs
@ 2008-04-08  4:28 hamish at uclibc.org
  0 siblings, 0 replies; 3+ messages in thread
From: hamish at uclibc.org @ 2008-04-08  4:28 UTC (permalink / raw)
  To: buildroot

Author: hamish
Date: 2008-04-07 21:28:18 -0700 (Mon, 07 Apr 2008)
New Revision: 21668

Log:
Fix UBI compression options


Modified:
   trunk/buildroot/target/ubifs/Config.in
   trunk/buildroot/target/ubifs/ubifsroot.mk


Changeset:
Modified: trunk/buildroot/target/ubifs/Config.in
===================================================================
--- trunk/buildroot/target/ubifs/Config.in	2008-04-08 04:18:11 UTC (rev 21667)
+++ trunk/buildroot/target/ubifs/Config.in	2008-04-08 04:28:18 UTC (rev 21668)
@@ -36,25 +36,25 @@
 
 choice
 	prompt "ubifs runtime compression"
-	default BR2_TARGET_ROOTFS_UBIFS_LZO
+	default BR2_TARGET_ROOTFS_UBIFS_RT_LZO
 	depends on BR2_TARGET_ROOTFS_UBIFS
 	help
-	  Select compressor for ubifs filesystem of the root filesystem
+	  Select which compression format to use at run-time within the ubifs file system.
 
-config BR2_TARGET_ROOTFS_UBIFS_NONE
+config BR2_TARGET_ROOTFS_UBIFS_RT_NONE
 	bool "no compression"
 	help
-	  Do not compress the ubifs filesystem.
+	  Don't use run-time compression.
 
-config BR2_TARGET_ROOTFS_UBIFS_ZLIB
+config BR2_TARGET_ROOTFS_UBIFS_RT_ZLIB
 	bool "gzip"
 	help
-	  Compress the ubifs filesystem with zlib.
+	  Use zlib compression at run-time.
 
-config BR2_TARGET_ROOTFS_UBIFS_LZO
+config BR2_TARGET_ROOTFS_UBIFS_RT_LZO
 	bool "lzo"
 	help
-	  Compress the ext2 filesystem with lzo.
+	  Use lzo compression at run-time.
 
 endchoice
 
@@ -63,7 +63,7 @@
 	default BR2_TARGET_ROOTFS_UBIFS_NONE
 	depends on BR2_TARGET_ROOTFS_UBIFS
 	help
-	  Select compressor for ubifs filesystem of the root filesystem
+	  Select which compression format to compress the final image into.
 
 config BR2_TARGET_ROOTFS_UBIFS_NONE
 	bool "no compression"

Modified: trunk/buildroot/target/ubifs/ubifsroot.mk
===================================================================
--- trunk/buildroot/target/ubifs/ubifsroot.mk	2008-04-08 04:18:11 UTC (rev 21667)
+++ trunk/buildroot/target/ubifs/ubifsroot.mk	2008-04-08 04:28:18 UTC (rev 21668)
@@ -41,13 +41,13 @@
 UBIFS_BASE := $(subst ",,$(BR2_TARGET_ROOTFS_UBIFS_OUTPUT))
 #")
 
-ifeq ($(BR2_TARGET_ROOTFS_UBIFS_ZLIB),y)
+ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_ZLIB),y)
 UBIFS_OPTS += -x zlib
 endif
-ifeq ($(BR2_TARGET_ROOTFS_UBIFS_LZI),y)
+ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_LZI),y)
 UBIFS_OPTS += -x lzo
 endif
-ifeq ($(BR2_TARGET_ROOTFS_UBIFS_NONE),y)
+ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_NONE),y)
 UBIFS_OPTS += -x none
 endif
 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/target/ubifs
@ 2008-08-27 20:19 jacmet at uclibc.org
  0 siblings, 0 replies; 3+ messages in thread
From: jacmet at uclibc.org @ 2008-08-27 20:19 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-08-27 13:19:53 -0700 (Wed, 27 Aug 2008)
New Revision: 23269

Log:
ubifs: fix long help text lines

Modified:
   trunk/buildroot/target/ubifs/Config.in


Changeset:
Modified: trunk/buildroot/target/ubifs/Config.in
===================================================================
--- trunk/buildroot/target/ubifs/Config.in	2008-08-27 20:19:50 UTC (rev 23268)
+++ trunk/buildroot/target/ubifs/Config.in	2008-08-27 20:19:53 UTC (rev 23269)
@@ -38,7 +38,8 @@
 	default BR2_TARGET_ROOTFS_UBIFS_RT_LZO
 	depends on BR2_TARGET_ROOTFS_UBIFS
 	help
-	  Select which compression format to use at run-time within the ubifs file system.
+	  Select which compression format to use at run-time within
+	  the ubifs file system.
 
 config BR2_TARGET_ROOTFS_UBIFS_RT_NONE
 	bool "no compression"
@@ -62,7 +63,8 @@
 	default BR2_TARGET_ROOTFS_UBIFS_NONE
 	depends on BR2_TARGET_ROOTFS_UBIFS
 	help
-	  Select which compression format to compress the final image into.
+	  Select which compression format to compress the final image
+	  into.
 
 config BR2_TARGET_ROOTFS_UBIFS_NONE
 	bool "no compression"
@@ -73,22 +75,25 @@
 	bool "gzip"
 	help
 	  Do compress the ubifs filesystem with gzip.
-	  Note that you either have to have gzip installed on your host
-	  or select to build a gzip for your host. See the packages submenu.
+	  Note that you either have to have gzip installed on your
+	  host or select to build a gzip for your host. See the
+	  packages submenu.
 
 config BR2_TARGET_ROOTFS_UBIFS_BZIP2
 	bool "bzip2"
 	help
 	  Do compress the ubifs filesystem with bzip2.
-	  Note that you either have to have bzip2 installed on your host
-	  or select to build a bzip2 for your host. See the packages submenu.
+	  Note that you either have to have bzip2 installed on your
+	  host or select to build a bzip2 for your host. See the
+	  packages submenu.
 
 config BR2_TARGET_ROOTFS_UBIFS_LZMA
 	bool "lzma"
 	help
 	  Do compress the ubifs filesystem with lzma.
-	  Note that you either have to have lzma installed on your host
-	  or select to build a lzma for your host. See the packages submenu.
+	  Note that you either have to have lzma installed on your
+	  host or select to build a lzma for your host. See the
+	  packages submenu.
 
 endchoice
 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-08-27 20:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-07  1:44 [Buildroot] svn commit: trunk/buildroot/target/ubifs hamish at uclibc.org
  -- strict thread matches above, loose matches on Subject: below --
2008-04-08  4:28 hamish at uclibc.org
2008-08-27 20:19 jacmet at uclibc.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox