From: Jared Hulbert <jaredeh@gmail.com>
To: Linux-kernel@vger.kernel.org, linux-embedded@vger.kernel.org,
linux-mtd <linux-mtd@lists.infradead.org>,
"Jörn Engel" <joern@logfs.org>,
tim.bird@AM.SONY.COM, cotte@d
Subject: [PATCH 02/10] AXFS: Kconfig and Makefiles
Date: Wed, 20 Aug 2008 22:45:03 -0700 [thread overview]
Message-ID: <48AD00DF.9080207@gmail.com> (raw)
The Kconfig edits and Makefiles required for AXFS.
Signed-off-by: Jared Hulbert <jaredeh@gmail.com>
---
diff --git a/fs/Kconfig b/fs/Kconfig
index d387358..02d5f48 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -1033,6 +1033,26 @@ config AFFS_FS
To compile this file system support as a module, choose M here: the
module will be called affs. If unsure, say N.
+config AXFS
+ tristate "Advanced XIP File System (AXFS) support (EXPERIMENTAL)"
+ select FS_XIP
+ select ZLIB_INFLATE
+ default n
+ help
+ The Advanced XIP File System or (AXFS) is a highly compressed
+ readonly filesystem like cramfs or squashfs. It also can be
+ configured to store individual pages of files compressed or
+ uncompressed as XIP pages. This allows for faster boot up and
+ application launch time with a smaller memory footprint.
+
+config AXFS_PROFILING
+ bool "Profiling extensions for AXFS (EXPERIMENTAL)"
+ depends on AXFS
+ default n
+ help
+ Profiling tooling used to identify what pages in the filesystem
+ image are actually accessed and how much.
+
config ECRYPT_FS
tristate "eCrypt filesystem layer support (EXPERIMENTAL)"
depends on EXPERIMENTAL && KEYS && CRYPTO && NET
diff --git a/fs/Makefile b/fs/Makefile
index a1482a5..8636019 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -74,6 +74,7 @@ obj-$(CONFIG_JBD) += jbd/
obj-$(CONFIG_JBD2) += jbd2/
obj-$(CONFIG_EXT2_FS) += ext2/
obj-$(CONFIG_CRAMFS) += cramfs/
+obj-$(CONFIG_AXFS) += axfs/
obj-y += ramfs/
obj-$(CONFIG_HUGETLBFS) += hugetlbfs/
obj-$(CONFIG_CODA_FS) += coda/
diff --git a/fs/axfs/Makefile b/fs/axfs/Makefile
new file mode 100644
index 0000000..4c40e13
--- /dev/null
+++ b/fs/axfs/Makefile
@@ -0,0 +1,7 @@
+#
+# Makefile for the linux axfs routines
+#
+
+obj-$(CONFIG_AXFS) += axfs.o
+
+axfs-objs := axfs_inode.o axfs_super.o axfs_uncompress.o axfs_profiling.o axfs_uml.o axfs_mtd.o axfs_bdev.o
WARNING: multiple messages have this Message-ID (diff)
From: Jared Hulbert <jaredeh@gmail.com>
To: Linux-kernel@vger.kernel.org, linux-embedded@vger.kernel.org,
linux-mtd <linux-mtd@lists.infradead.org>,
"Jörn Engel" <joern@logfs.org>,
tim.bird@AM.SONY.COM, cotte@de.ibm.com, nickpiggin@yahoo.com.au
Subject: [PATCH 02/10] AXFS: Kconfig and Makefiles
Date: Wed, 20 Aug 2008 22:45:03 -0700 [thread overview]
Message-ID: <48AD00DF.9080207@gmail.com> (raw)
The Kconfig edits and Makefiles required for AXFS.
Signed-off-by: Jared Hulbert <jaredeh@gmail.com>
---
diff --git a/fs/Kconfig b/fs/Kconfig
index d387358..02d5f48 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -1033,6 +1033,26 @@ config AFFS_FS
To compile this file system support as a module, choose M here: the
module will be called affs. If unsure, say N.
+config AXFS
+ tristate "Advanced XIP File System (AXFS) support (EXPERIMENTAL)"
+ select FS_XIP
+ select ZLIB_INFLATE
+ default n
+ help
+ The Advanced XIP File System or (AXFS) is a highly compressed
+ readonly filesystem like cramfs or squashfs. It also can be
+ configured to store individual pages of files compressed or
+ uncompressed as XIP pages. This allows for faster boot up and
+ application launch time with a smaller memory footprint.
+
+config AXFS_PROFILING
+ bool "Profiling extensions for AXFS (EXPERIMENTAL)"
+ depends on AXFS
+ default n
+ help
+ Profiling tooling used to identify what pages in the filesystem
+ image are actually accessed and how much.
+
config ECRYPT_FS
tristate "eCrypt filesystem layer support (EXPERIMENTAL)"
depends on EXPERIMENTAL && KEYS && CRYPTO && NET
diff --git a/fs/Makefile b/fs/Makefile
index a1482a5..8636019 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -74,6 +74,7 @@ obj-$(CONFIG_JBD) += jbd/
obj-$(CONFIG_JBD2) += jbd2/
obj-$(CONFIG_EXT2_FS) += ext2/
obj-$(CONFIG_CRAMFS) += cramfs/
+obj-$(CONFIG_AXFS) += axfs/
obj-y += ramfs/
obj-$(CONFIG_HUGETLBFS) += hugetlbfs/
obj-$(CONFIG_CODA_FS) += coda/
diff --git a/fs/axfs/Makefile b/fs/axfs/Makefile
new file mode 100644
index 0000000..4c40e13
--- /dev/null
+++ b/fs/axfs/Makefile
@@ -0,0 +1,7 @@
+#
+# Makefile for the linux axfs routines
+#
+
+obj-$(CONFIG_AXFS) += axfs.o
+
+axfs-objs := axfs_inode.o axfs_super.o axfs_uncompress.o axfs_profiling.o axfs_uml.o axfs_mtd.o axfs_bdev.o
next reply other threads:[~2008-08-21 5:45 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-21 5:45 Jared Hulbert [this message]
2008-08-21 5:45 ` [PATCH 02/10] AXFS: Kconfig and Makefiles Jared Hulbert
2008-08-21 11:24 ` Arnd Bergmann
2008-08-21 11:24 ` Arnd Bergmann
2008-08-21 14:11 ` Sam Ravnborg
2008-08-21 14:11 ` Sam Ravnborg
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=48AD00DF.9080207@gmail.com \
--to=jaredeh@gmail.com \
--cc=Linux-kernel@vger.kernel.org \
--cc=cotte@d \
--cc=joern@logfs.org \
--cc=linux-embedded@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=tim.bird@AM.SONY.COM \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.