[ptxdist] [PATCH 2/2] [host-acl][v3] Added host compile for libacl.so and headers

2010-01-08 Thread Carsten Schlote
From: Carsten Schlote c.schl...@konzeptpark.de

This local build is required for other local build tools,
e.g. the e2fsprogs or other stuff needed ACL support
for filesystems on the host side.

The host-libacl.in file has no .make file to delete.

Signed-off-by: Carsten Schlote c.schl...@konzeptpark.de
---
 rules/host-acl.in|7 +
 rules/host-acl.make  |   60 ++
 rules/host-libacl.in |5 
 3 files changed, 67 insertions(+), 5 deletions(-)
 create mode 100644 rules/host-acl.in
 create mode 100644 rules/host-acl.make
 delete mode 100644 rules/host-libacl.in

diff --git a/rules/host-acl.in b/rules/host-acl.in
new file mode 100644
index 000..7023b7e
--- /dev/null
+++ b/rules/host-acl.in
@@ -0,0 +1,7 @@
+## SECTION=hosttools_noprompt
+
+config HOST_ACL
+   tristate
+   select HOST_ATTR
+   help
+ FIXME
diff --git a/rules/host-acl.make b/rules/host-acl.make
new file mode 100644
index 000..ba2be8d
--- /dev/null
+++ b/rules/host-acl.make
@@ -0,0 +1,60 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2009 by Carsten Schlote c.schl...@konzeptpark.de
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+HOST_PACKAGES-$(PTXCONF_HOST_ACL) += host-acl
+
+#
+# Paths and names
+#
+HOST_ACL_DIR   = $(HOST_BUILDDIR)/$(ACL)
+
+# 
+# Get
+# 
+
+$(STATEDIR)/host-acl.get: $(STATEDIR)/acl.get
+   @$(call targetinfo)
+   @$(call touch)
+
+# 
+# Extract
+# 
+
+$(STATEDIR)/host-acl.extract:
+   @$(call targetinfo)
+   @$(call clean, $(HOST_ACL_DIR))
+   @$(call extract, ACL, $(HOST_BUILDDIR))
+   @$(call patchin, ACL, $(HOST_ACL_DIR))
+   @$(call touch)
+
+# 
+# Prepare
+# 
+
+HOST_ACL_PATH  := PATH=$(HOST_PATH)
+HOST_ACL_ENV   := $(HOST_ENV)
+
+#
+# autoconf
+#
+HOST_ACL_AUTOCONF  := $(HOST_AUTOCONF)
+
+# 
+# Clean
+# 
+
+host-acl_clean:
+   rm -rf $(STATEDIR)/host-acl.*
+   rm -rf $(HOST_ACL_DIR)
+
+# vim: syntax=make
diff --git a/rules/host-libacl.in b/rules/host-libacl.in
deleted file mode 100644
index 8c5fea1..000
--- a/rules/host-libacl.in
+++ /dev/null
@@ -1,5 +0,0 @@
-## SECTION=hosttools_noprompt
-
-config HOST_LIBACL
-   tristate
-   select HOST_ATTR
-- 
1.6.5.6.gb3118


--
ptxdist mailing list
ptxdist@pengutronix.de


Re: [ptxdist] [PATCH 2/2] [host-acl][v3] Added host compile for libacl.so and headers

2010-01-08 Thread Marc Kleine-Budde
Carsten Schlote wrote:
 From: Carsten Schlote c.schl...@konzeptpark.de
 
 This local build is required for other local build tools,
 e.g. the e2fsprogs or other stuff needed ACL support
 for filesystems on the host side.
 
 The host-libacl.in file has no .make file to delete.

tnx,
applied with minor changes

Marc
 
 Signed-off-by: Carsten Schlote c.schl...@konzeptpark.de
 ---
  rules/host-acl.in|7 +
  rules/host-acl.make  |   60 
 ++
  rules/host-libacl.in |5 
  3 files changed, 67 insertions(+), 5 deletions(-)
  create mode 100644 rules/host-acl.in
  create mode 100644 rules/host-acl.make
  delete mode 100644 rules/host-libacl.in
 
 diff --git a/rules/host-acl.in b/rules/host-acl.in
 new file mode 100644
 index 000..7023b7e
 --- /dev/null
 +++ b/rules/host-acl.in
 @@ -0,0 +1,7 @@
 +## SECTION=hosttools_noprompt
 +
 +config HOST_ACL
 + tristate
 + select HOST_ATTR
 + help
 +   FIXME
 diff --git a/rules/host-acl.make b/rules/host-acl.make
 new file mode 100644
 index 000..ba2be8d
 --- /dev/null
 +++ b/rules/host-acl.make
 @@ -0,0 +1,60 @@
 +# -*-makefile-*-
 +#
 +# Copyright (C) 2009 by Carsten Schlote c.schl...@konzeptpark.de
 +#
 +# See CREDITS for details about who has contributed to this project.
 +#
 +# For further information about the PTXdist project and license conditions
 +# see the README file.
 +#
 +
 +#
 +# We provide this package
 +#
 +HOST_PACKAGES-$(PTXCONF_HOST_ACL) += host-acl
 +
 +#
 +# Paths and names
 +#
 +HOST_ACL_DIR = $(HOST_BUILDDIR)/$(ACL)
 +
 +# 
 
 +# Get
 +# 
 
 +
 +$(STATEDIR)/host-acl.get: $(STATEDIR)/acl.get
 + @$(call targetinfo)
 + @$(call touch)
 +
 +# 
 
 +# Extract
 +# 
 
 +
 +$(STATEDIR)/host-acl.extract:
 + @$(call targetinfo)
 + @$(call clean, $(HOST_ACL_DIR))
 + @$(call extract, ACL, $(HOST_BUILDDIR))
 + @$(call patchin, ACL, $(HOST_ACL_DIR))
 + @$(call touch)
 +
 +# 
 
 +# Prepare
 +# 
 
 +
 +HOST_ACL_PATH:= PATH=$(HOST_PATH)
 +HOST_ACL_ENV := $(HOST_ENV)
 +
 +#
 +# autoconf
 +#
 +HOST_ACL_AUTOCONF:= $(HOST_AUTOCONF)
 +
 +# 
 
 +# Clean
 +# 
 
 +
 +host-acl_clean:
 + rm -rf $(STATEDIR)/host-acl.*
 + rm -rf $(HOST_ACL_DIR)
 +
 +# vim: syntax=make
 diff --git a/rules/host-libacl.in b/rules/host-libacl.in
 deleted file mode 100644
 index 8c5fea1..000
 --- a/rules/host-libacl.in
 +++ /dev/null
 @@ -1,5 +0,0 @@
 -## SECTION=hosttools_noprompt
 -
 -config HOST_LIBACL
 - tristate
 - select HOST_ATTR


-- 
Pengutronix e.K.  | Marc Kleine-Budde   |
Industrial Linux Solutions| Phone: +49-231-2826-924 |
Vertretung West/Dortmund  | Fax:   +49-5121-206917- |
Amtsgericht Hildesheim, HRA 2686  | http://www.pengutronix.de   |



signature.asc
Description: OpenPGP digital signature
--
ptxdist mailing list
ptxdist@pengutronix.de