From: hamish at uclibc.org <hamish@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/target/ubifs
Date: Mon, 7 Apr 2008 21:28:19 -0700 (PDT) [thread overview]
Message-ID: <20080408042819.210953C362@busybox.net> (raw)
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
next reply other threads:[~2008-04-08 4:28 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-04-08 4:28 hamish at uclibc.org [this message]
-- strict thread matches above, loose matches on Subject: below --
2008-08-27 20:19 [Buildroot] svn commit: trunk/buildroot/target/ubifs jacmet at uclibc.org
2008-04-07 1:44 hamish at uclibc.org
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080408042819.210953C362@busybox.net \
--to=hamish@uclibc.org \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox