From: steffenhoenig <s.hoenig@openthinclient.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 2/2] aufs: initial release (selects aufs-utils)
Date: Mon, 28 Jul 2014 21:34:25 +0200 [thread overview]
Message-ID: <1406576065-20263-2-git-send-email-mail@steffenhoenig.com> (raw)
In-Reply-To: <1406576065-20263-1-git-send-email-mail@steffenhoenig.com>
Signed-off-by: steffenhoenig <mail@steffenhoenig.com>
---
package/Config.in | 1 +
package/aufs/Config.in | 36 ++++++++++++++++++++++++++++++++++++
package/aufs/aufs.mk | 36 ++++++++++++++++++++++++++++++++++++
3 files changed, 73 insertions(+)
create mode 100644 package/aufs/Config.in
create mode 100644 package/aufs/aufs.mk
diff --git a/package/Config.in b/package/Config.in
index b49908c..0225e9f 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -136,6 +136,7 @@ endif
endmenu
menu "Filesystem and flash utilities"
+ source "package/aufs/Config.in"
source "package/aufs-utils/Config.in"
source "package/btrfs-progs/Config.in"
source "package/cifs-utils/Config.in"
diff --git a/package/aufs/Config.in b/package/aufs/Config.in
new file mode 100644
index 0000000..e7842bd
--- /dev/null
+++ b/package/aufs/Config.in
@@ -0,0 +1,36 @@
+config BR2_PACKAGE_AUFS
+ bool "aufs"
+ select BR2_PACKAGE_AUFS_UTILS
+ help
+ Aufs3 -- advanced multi layered unification filesystem version 3.x
+
+comment "aufs needs a Linux kernel to be built"
+ depends on !BR2_LINUX_KERNEL
+
+if BR2_PACKAGE_AUFS
+
+choice
+ prompt "version"
+
+config BR2_PACKAGE_AUFS_LATEST_VERSION
+ bool "aufs3.15"
+
+config BR2_PACKAGE_AUFS_CUSTOM_VERSION
+ bool "custom version"
+ help
+ This option allows to use a specific aufs kernel patch set
+
+ Note: you need to insert the version string like aufs3.12, aufs3.9, ...
+
+endchoice
+
+config BR2_PACKAGE_AUFS_CUSTOM_VERSION_VALUE
+ string ""
+ depends on BR2_PACKAGE_AUFS_CUSTOM_VERSION
+
+config BR2_PACKAGE_AUFS_VERSION
+ string
+ default "aufs3.15" if BR2_PACKAGE_AUFS_LATEST_VERSION
+ default BR2_PACKAGE_AUFS_CUSTOM_VERSION_VALUE \
+ if BR2_PACKAGE_AUFS_CUSTOM_VERSION
+endif
diff --git a/package/aufs/aufs.mk b/package/aufs/aufs.mk
new file mode 100644
index 0000000..c1b21c4
--- /dev/null
+++ b/package/aufs/aufs.mk
@@ -0,0 +1,36 @@
+################################################################################
+#
+# aufs
+#
+################################################################################
+
+AUFS_VERSION = $(call qstrip,$(BR2_PACKAGE_AUFS_VERSION))
+AUFS_LICENCSE = GPLv2
+AUFS_LICENSE_FILES = COPYING
+
+AUFS_SITE = http://git.code.sf.net/p/aufs/aufs3-standalone
+AUFS_SITE_METHOD = git
+
+AUFS_DEPENDENCIES = linux
+AUFS_INSTALL_STAGING = YES
+
+AUFS_PATCHES = kbuild base mmap standalone
+
+define AUFS_BUILD_CMDS
+ $(foreach p,$(AUFS_PATCHES),./support/scripts/apply-patches.sh $(LINUX_DIR) $(@D) *$(p).patch;)
+ $(MAKE) -C $(@D) $(LINUX_MAKE_FLAGS) KDIR=$(LINUX_DIR) aufs.ko
+endef
+
+define AUFS_INSTALL_STAGING_CMDS
+ $(MAKE) -C $(LINUX_DIR) $(LINUX_MAKE_FLAGS) -f scripts/Makefile.host \
+ scripts/unifdef
+ $(MAKE) -C $(@D) $(LINUX_MAKE_FLAGS) KDIR=$(LINUX_DIR) usr/include/linux/aufs_type.h
+ $(INSTALL) -p -m 0644 $(@D)/usr/include/linux/aufs_type.h \
+ $(STAGING_DIR)/usr/include/linux
+endef
+
+define AUFS_INSTALL_TARGET_CMDS
+ $(MAKE) -C $(@D) $(LINUX_MAKE_FLAGS) KDIR=$(LINUX_DIR) install
+endef
+
+$(eval $(generic-package))
--
1.9.1
next prev parent reply other threads:[~2014-07-28 19:34 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-28 19:34 [Buildroot] [PATCH 1/2] aufs-utils: initial release steffenhoenig
2014-07-28 19:34 ` steffenhoenig [this message]
2014-11-23 20:54 ` [Buildroot] [PATCH 2/2] aufs: initial release (selects aufs-utils) Thomas Petazzoni
2014-11-23 21:00 ` [Buildroot] [PATCH 1/2] aufs-utils: initial release Thomas Petazzoni
2015-01-02 16:24 ` Thomas Petazzoni
[not found] <1406575604-19545-1-git-send-email-mail@steffenhoenig.com>
2014-07-28 19:26 ` [Buildroot] [PATCH 2/2] aufs: initial release (selects aufs-utils) steffenhoenig
2014-07-28 19:49 ` Thomas De Schampheleire
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=1406576065-20263-2-git-send-email-mail@steffenhoenig.com \
--to=s.hoenig@openthinclient.com \
--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