* [Buildroot] [PATCH v2 1/3] aufs: new package
@ 2016-04-29 13:31 Atul Singh
2016-05-01 3:35 ` Christian Stewart
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Atul Singh @ 2016-04-29 13:31 UTC (permalink / raw)
To: buildroot
From: Christian Stewart <christian@paral.in>
aufs is a dummy package that downloads the correct
aufs-standalone sources for patching the kernel with the aufs
filesystem. The package is not selectable because it does nothing but
download the sources on default. It is a dependency of the Aufs kernel
extension.
Signed-off-by: Christian Stewart <christian@paral.in>
[Atul:
- Removed the duplicate conditional block.
- Updated the license to GPLv2.
- Removed the visibilty of package from menuconfig.
- Removed dependencies.
- Removed the comment.
- Changed the name of variable from BR2_PACKAGE_AUFS_STANDALONE_VERSION to BR2_LINUX_KERNEL_EXT_AUFS_VERSION.
- Removed the AUFS_INSTALL_STAGING and AUFS_INSTALL_TARGET variables.
- Removed the BR2_PACKAGE_AUFS_3X and BR2_PACKAGE_AUFS_4X variables.
]
Signed-off-by: Atul Singh <atul.singh.mandla@rockwellcollins.com>
---
package/Config.in | 1 +
package/aufs/Config.in | 2 ++
package/aufs/aufs.mk | 24 ++++++++++++++++++++++++
3 files changed, 27 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 27db639..54166b1 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -160,6 +160,7 @@ endif
endmenu
menu "Filesystem and flash utilities"
+ source "package/aufs/Config.in"
source "package/autofs/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..3ff4691
--- /dev/null
+++ b/package/aufs/Config.in
@@ -0,0 +1,2 @@
+config BR2_PACKAGE_AUFS
+ bool
diff --git a/package/aufs/aufs.mk b/package/aufs/aufs.mk
new file mode 100644
index 0000000..a139547
--- /dev/null
+++ b/package/aufs/aufs.mk
@@ -0,0 +1,24 @@
+################################################################################
+#
+# aufs
+#
+# patches for the linux kernel, used by the extension.
+#
+################################################################################
+
+AUFS_VERSION = aufs$(call qstrip,$(BR2_LINUX_KERNEL_EXT_AUFS_VERSION))
+AUFS_VERSION_MAJOR = $(firstword $(subst .,$(space),$(call qstrip,$(BR2_LINUX_KERNEL_EXT_AUFS_VERSION))))
+AUFS_SITE = $(call github,sfjro,aufs4-standalone,$(AUFS_VERSION))
+AUFS_LICENSE = GPLv2
+AUFS_LICENSE_FILES = COPYING
+
+ifeq ($(AUFS_VERSION_MAJOR),3)
+AUFS_SITE = http://git.code.sf.net/p/aufs/aufs3-standalone
+AUFS_SITE_METHOD = git
+else ifeq ($(AUFS_VERSION_MAJOR),4)
+AUFS_SITE = $(call github,sfjro,aufs4-standalone,$(AUFS_VERSION))
+else
+$(error Unknown aufs major version)
+endif
+
+$(eval $(generic-package))
--
2.5.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH v2 1/3] aufs: new package
2016-04-29 13:31 [Buildroot] [PATCH v2 1/3] aufs: new package Atul Singh
@ 2016-05-01 3:35 ` Christian Stewart
2016-07-14 20:08 ` Yann E. MORIN
2016-07-17 12:52 ` Yann E. MORIN
2 siblings, 0 replies; 4+ messages in thread
From: Christian Stewart @ 2016-05-01 3:35 UTC (permalink / raw)
To: buildroot
Atul,
On Fri, Apr 29, 2016 at 9:31 AM Atul Singh
<atul.singh.mandla@rockwellcollins.com> wrote:
> - Changed the name of variable from BR2_PACKAGE_AUFS_STANDALONE_VERSION to
BR2_LINUX_KERNEL_EXT_AUFS_VERSION.
Trying to compile Buildroot without Aufs selected whatsoever gives me:
Unknown aufs major version. Stop.
This is because you're checking BR2_LINUX_KERNEL_EXT_AUFS_VERSION for the major
version, but it's not set. However, I don't think this should have any effect if
the package isn't selected in the first place.
You might consider instead setting something like AUFS_VERSION_MAJOR_INVALID=yes
and erroring out at aufs configuration time, not makefile variable interpret
time.
Thanks!
Christian
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20160501/106bee22/attachment.html>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH v2 1/3] aufs: new package
2016-04-29 13:31 [Buildroot] [PATCH v2 1/3] aufs: new package Atul Singh
2016-05-01 3:35 ` Christian Stewart
@ 2016-07-14 20:08 ` Yann E. MORIN
2016-07-17 12:52 ` Yann E. MORIN
2 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2016-07-14 20:08 UTC (permalink / raw)
To: buildroot
Aul, Christian, All,
On 2016-04-29 19:01 +0530, Atul Singh spake thusly:
> From: Christian Stewart <christian@paral.in>
>
> aufs is a dummy package that downloads the correct
> aufs-standalone sources for patching the kernel with the aufs
> filesystem. The package is not selectable because it does nothing but
> download the sources on default. It is a dependency of the Aufs kernel
> extension.
>
> Signed-off-by: Christian Stewart <christian@paral.in>
> [Atul:
> - Removed the duplicate conditional block.
> - Updated the license to GPLv2.
> - Removed the visibilty of package from menuconfig.
> - Removed dependencies.
> - Removed the comment.
> - Changed the name of variable from BR2_PACKAGE_AUFS_STANDALONE_VERSION to BR2_LINUX_KERNEL_EXT_AUFS_VERSION.
> - Removed the AUFS_INSTALL_STAGING and AUFS_INSTALL_TARGET variables.
> - Removed the BR2_PACKAGE_AUFS_3X and BR2_PACKAGE_AUFS_4X variables.
> ]
> Signed-off-by: Atul Singh <atul.singh.mandla@rockwellcollins.com>
> ---
[--SNIP--]
Please add a .hash file too:
http://nightly.buildroot.org/#adding-packages-hash
Although it is "downloaded from a version control system (git,
subversion, etc?)", it is provided by the github download helper, which
in fact will download a tarball and will not do a git-clone. Github now
generates reproducible archives in our experience, so we can/must add a
.hash file.
> diff --git a/package/aufs/aufs.mk b/package/aufs/aufs.mk
> new file mode 100644
> index 0000000..a139547
> --- /dev/null
> +++ b/package/aufs/aufs.mk
> @@ -0,0 +1,24 @@
> +################################################################################
> +#
> +# aufs
> +#
> +# patches for the linux kernel, used by the extension.
Just the package name in the header, please.
> +#
> +################################################################################
> +
> +AUFS_VERSION = aufs$(call qstrip,$(BR2_LINUX_KERNEL_EXT_AUFS_VERSION))
The BR2_LINUX_KERNEL_EXT_AUFS_VERSION does not exist in this patch, it
is only provided with the next patch.
So you can't use it here.
The only way is to squash the two patches into one: they are in fact a
single change, they can't be logically split.
> +AUFS_VERSION_MAJOR = $(firstword $(subst .,$(space),$(call qstrip,$(BR2_LINUX_KERNEL_EXT_AUFS_VERSION))))
> +AUFS_SITE = $(call github,sfjro,aufs4-standalone,$(AUFS_VERSION))
> +AUFS_LICENSE = GPLv2
> +AUFS_LICENSE_FILES = COPYING
> +
> +ifeq ($(AUFS_VERSION_MAJOR),3)
> +AUFS_SITE = http://git.code.sf.net/p/aufs/aufs3-standalone
> +AUFS_SITE_METHOD = git
> +else ifeq ($(AUFS_VERSION_MAJOR),4)
> +AUFS_SITE = $(call github,sfjro,aufs4-standalone,$(AUFS_VERSION))
> +else
> +$(error Unknown aufs major version)
> +endif
As noticed by Christian, this won't work when the aufs extension is not
enabled. You must enclose such checks inside a more stringent test:
ifeq ($(BR2_PACKAGE_AUFS),y)
# Do the checks here
endif # BR_BUILDING
However, I'm not too fan of this after-the-fact checking. But we can't
seriously have a 30+ choice to select the appropriate version, nor can
we even derive the version from that of the kernel... So I guess we'll
have to live with that check... :-/
Regards,
Yann E. MORIN.
> +$(eval $(generic-package))
> --
> 2.5.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH v2 1/3] aufs: new package
2016-04-29 13:31 [Buildroot] [PATCH v2 1/3] aufs: new package Atul Singh
2016-05-01 3:35 ` Christian Stewart
2016-07-14 20:08 ` Yann E. MORIN
@ 2016-07-17 12:52 ` Yann E. MORIN
2 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2016-07-17 12:52 UTC (permalink / raw)
To: buildroot
Atul, Christian, All,
On 2016-04-29 19:01 +0530, Atul Singh spake thusly:
> aufs is a dummy package that downloads the correct
> aufs-standalone sources for patching the kernel with the aufs
> filesystem. The package is not selectable because it does nothing but
> download the sources on default. It is a dependency of the Aufs kernel
> extension.
I've sent an updated series that adds support for aufs:
https://patchwork.ozlabs.org/patch/649251/
https://patchwork.ozlabs.org/patch/649252/
https://patchwork.ozlabs.org/patch/649253/
So, I've marked your these patches as superseded in ourPatchwork.
Thnaks for the initial work! :-)
Regards,
Yann E. MORIN.
> Signed-off-by: Christian Stewart <christian@paral.in>
> [Atul:
> - Removed the duplicate conditional block.
> - Updated the license to GPLv2.
> - Removed the visibilty of package from menuconfig.
> - Removed dependencies.
> - Removed the comment.
> - Changed the name of variable from BR2_PACKAGE_AUFS_STANDALONE_VERSION to BR2_LINUX_KERNEL_EXT_AUFS_VERSION.
> - Removed the AUFS_INSTALL_STAGING and AUFS_INSTALL_TARGET variables.
> - Removed the BR2_PACKAGE_AUFS_3X and BR2_PACKAGE_AUFS_4X variables.
> ]
> Signed-off-by: Atul Singh <atul.singh.mandla@rockwellcollins.com>
> ---
> package/Config.in | 1 +
> package/aufs/Config.in | 2 ++
> package/aufs/aufs.mk | 24 ++++++++++++++++++++++++
> 3 files changed, 27 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 27db639..54166b1 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -160,6 +160,7 @@ endif
> endmenu
>
> menu "Filesystem and flash utilities"
> + source "package/aufs/Config.in"
> source "package/autofs/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..3ff4691
> --- /dev/null
> +++ b/package/aufs/Config.in
> @@ -0,0 +1,2 @@
> +config BR2_PACKAGE_AUFS
> + bool
> diff --git a/package/aufs/aufs.mk b/package/aufs/aufs.mk
> new file mode 100644
> index 0000000..a139547
> --- /dev/null
> +++ b/package/aufs/aufs.mk
> @@ -0,0 +1,24 @@
> +################################################################################
> +#
> +# aufs
> +#
> +# patches for the linux kernel, used by the extension.
> +#
> +################################################################################
> +
> +AUFS_VERSION = aufs$(call qstrip,$(BR2_LINUX_KERNEL_EXT_AUFS_VERSION))
> +AUFS_VERSION_MAJOR = $(firstword $(subst .,$(space),$(call qstrip,$(BR2_LINUX_KERNEL_EXT_AUFS_VERSION))))
> +AUFS_SITE = $(call github,sfjro,aufs4-standalone,$(AUFS_VERSION))
> +AUFS_LICENSE = GPLv2
> +AUFS_LICENSE_FILES = COPYING
> +
> +ifeq ($(AUFS_VERSION_MAJOR),3)
> +AUFS_SITE = http://git.code.sf.net/p/aufs/aufs3-standalone
> +AUFS_SITE_METHOD = git
> +else ifeq ($(AUFS_VERSION_MAJOR),4)
> +AUFS_SITE = $(call github,sfjro,aufs4-standalone,$(AUFS_VERSION))
> +else
> +$(error Unknown aufs major version)
> +endif
> +
> +$(eval $(generic-package))
> --
> 2.5.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-07-17 12:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-29 13:31 [Buildroot] [PATCH v2 1/3] aufs: new package Atul Singh
2016-05-01 3:35 ` Christian Stewart
2016-07-14 20:08 ` Yann E. MORIN
2016-07-17 12:52 ` Yann E. MORIN
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox