Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] linux-pam: uses fork() needs MMU
@ 2016-08-18  6:23 Waldemar Brodkorb
  2016-08-18  6:49 ` Baruch Siach
  2016-08-19 10:22 ` Thomas Petazzoni
  0 siblings, 2 replies; 5+ messages in thread
From: Waldemar Brodkorb @ 2016-08-18  6:23 UTC (permalink / raw)
  To: buildroot

Fixes:
  http://autobuild.buildroot.net/results/8c9/8c9a5fe52f762b4ff4444cf41efdf0d3cf203986/

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
---
 package/linux-pam/Config.in  | 1 +
 package/nodm/Config.in       | 1 +
 package/python-pam/Config.in | 1 +
 package/rsh-redone/Config.in | 2 ++
 package/util-linux/Config.in | 2 ++
 5 files changed, 7 insertions(+)

diff --git a/package/linux-pam/Config.in b/package/linux-pam/Config.in
index f6cf530..7044073 100644
--- a/package/linux-pam/Config.in
+++ b/package/linux-pam/Config.in
@@ -11,6 +11,7 @@ config BR2_PACKAGE_LINUX_PAM
 	# for details.
 	depends on !BR2_STATIC_LIBS
 	depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
+	depends on BR2_USE_MMU # fork()
 	help
 	  A Security Framework that Provides Authentication for Applications
 
diff --git a/package/nodm/Config.in b/package/nodm/Config.in
index b8629a2..97ce8c3 100644
--- a/package/nodm/Config.in
+++ b/package/nodm/Config.in
@@ -5,6 +5,7 @@ config BR2_PACKAGE_NODM
 	depends on !BR2_STATIC_LIBS # linux-pam
 	depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
 	depends on !BR2_TOOLCHAIN_USES_UCLIBC # needs wordexp.h
+	depends on BR2_USE_MMU # linux-pam
 	select BR2_PACKAGE_XLIB_LIBX11
 	select BR2_PACKAGE_LINUX_PAM
 	help
diff --git a/package/python-pam/Config.in b/package/python-pam/Config.in
index 497bcd3..02865d0 100644
--- a/package/python-pam/Config.in
+++ b/package/python-pam/Config.in
@@ -8,6 +8,7 @@ config BR2_PACKAGE_PYTHON_PAM
 	depends on BR2_PACKAGE_PYTHON # C extension not compatible with python3
 	depends on BR2_ENABLE_LOCALE # linux-pam
 	depends on BR2_USE_WCHAR # linux-pam
+	depends on BR2_USE_MMU # linux-pam
 	depends on !BR2_STATIC_LIBS # linux-pam
 	depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
 	select BR2_PACKAGE_LINUX_PAM
diff --git a/package/rsh-redone/Config.in b/package/rsh-redone/Config.in
index 6258369..6a8aec0 100644
--- a/package/rsh-redone/Config.in
+++ b/package/rsh-redone/Config.in
@@ -17,6 +17,7 @@ config BR2_PACKAGE_RSH_REDONE_RLOGIND
 	depends on !BR2_STATIC_LIBS
 	depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
 	depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
+	depends on BR2_USE_MMU # linux-pam
 	select BR2_PACKAGE_LINUX_PAM
 
 comment "rlogind needs a uClibc or glibc toolchain w/ wchar, locale, dynamic library"
@@ -31,6 +32,7 @@ config BR2_PACKAGE_RSH_REDONE_RSHD
 	depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
 	depends on !BR2_STATIC_LIBS
 	depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
+	depends on BR2_USE_MMU # linux-pam
 	select BR2_PACKAGE_LINUX_PAM
 
 comment "rshd needs a uClibc or glibc toolchain w/ wchar, locale, dynamic library"
diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in
index 429dfa7..657bcdd 100644
--- a/package/util-linux/Config.in
+++ b/package/util-linux/Config.in
@@ -63,6 +63,7 @@ config BR2_PACKAGE_UTIL_LINUX_CHFN_CHSH
 	depends on (BR2_ENABLE_LOCALE && BR2_USE_WCHAR) # linux-pam
 	depends on !BR2_STATIC_LIBS
 	depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
+	depends on BR2_USE_MMU # linux-pam
 	select BR2_PACKAGE_LINUX_PAM
 	help
 	  Change login shell, real user name and information
@@ -127,6 +128,7 @@ config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
 	depends on (BR2_ENABLE_LOCALE && BR2_USE_WCHAR) # linux-pam
 	depends on !BR2_STATIC_LIBS
 	depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
+	depends on BR2_USE_MMU # linux-pam
 	select BR2_PACKAGE_LINUX_PAM
 	help
 	  Build login utilities (last, login, su, sulogin)
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] linux-pam: uses fork() needs MMU
  2016-08-18  6:23 [Buildroot] [PATCH] linux-pam: uses fork() needs MMU Waldemar Brodkorb
@ 2016-08-18  6:49 ` Baruch Siach
  2016-08-18  8:21   ` Peter Korsgaard
  2016-08-19 10:22 ` Thomas Petazzoni
  1 sibling, 1 reply; 5+ messages in thread
From: Baruch Siach @ 2016-08-18  6:49 UTC (permalink / raw)
  To: buildroot

Hi Waldemar,

On Thu, Aug 18, 2016 at 08:23:45AM +0200, Waldemar Brodkorb wrote:
> Fixes:
>   http://autobuild.buildroot.net/results/8c9/8c9a5fe52f762b4ff4444cf41efdf0d3cf203986/
> 
> Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>

[...]

> diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in
> index 429dfa7..657bcdd 100644
> --- a/package/util-linux/Config.in
> +++ b/package/util-linux/Config.in
> @@ -63,6 +63,7 @@ config BR2_PACKAGE_UTIL_LINUX_CHFN_CHSH
>  	depends on (BR2_ENABLE_LOCALE && BR2_USE_WCHAR) # linux-pam
>  	depends on !BR2_STATIC_LIBS
>  	depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
> +	depends on BR2_USE_MMU # linux-pam
>  	select BR2_PACKAGE_LINUX_PAM
>  	help
>  	  Change login shell, real user name and information

Lots of packages select BR2_PACKAGE_UTIL_LINUX. All of them (and all packages 
that select them) now need to depend on BR2_USE_MMU.

baruch

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] linux-pam: uses fork() needs MMU
  2016-08-18  6:49 ` Baruch Siach
@ 2016-08-18  8:21   ` Peter Korsgaard
  2016-08-18  8:59     ` Baruch Siach
  0 siblings, 1 reply; 5+ messages in thread
From: Peter Korsgaard @ 2016-08-18  8:21 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > Hi Waldemar,
 > On Thu, Aug 18, 2016 at 08:23:45AM +0200, Waldemar Brodkorb wrote:
 >> Fixes:
 >> http://autobuild.buildroot.net/results/8c9/8c9a5fe52f762b4ff4444cf41efdf0d3cf203986/
 >> 
 >> Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>

 > [...]

 >> diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in
 >> index 429dfa7..657bcdd 100644
 >> --- a/package/util-linux/Config.in
 >> +++ b/package/util-linux/Config.in
 >> @@ -63,6 +63,7 @@ config BR2_PACKAGE_UTIL_LINUX_CHFN_CHSH
 >> depends on (BR2_ENABLE_LOCALE && BR2_USE_WCHAR) # linux-pam
 >> depends on !BR2_STATIC_LIBS
 >> depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
 >> +	depends on BR2_USE_MMU # linux-pam
 >> select BR2_PACKAGE_LINUX_PAM
 >> help
 >> Change login shell, real user name and information

 > Lots of packages select BR2_PACKAGE_UTIL_LINUX. All of them (and all packages 
 > that select them) now need to depend on BR2_USE_MMU.

Notice that this is only for BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS /
BR2_PACKAGE_UTIL_LINUX_CHFN_CHSH (which nothing selects), not the
toplevel util-linux option.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] linux-pam: uses fork() needs MMU
  2016-08-18  8:21   ` Peter Korsgaard
@ 2016-08-18  8:59     ` Baruch Siach
  0 siblings, 0 replies; 5+ messages in thread
From: Baruch Siach @ 2016-08-18  8:59 UTC (permalink / raw)
  To: buildroot

Hi Peter,

On Thu, Aug 18, 2016 at 10:21:06AM +0200, Peter Korsgaard wrote:
> >>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:
>  > On Thu, Aug 18, 2016 at 08:23:45AM +0200, Waldemar Brodkorb wrote:
>  >> Fixes:
>  >> http://autobuild.buildroot.net/results/8c9/8c9a5fe52f762b4ff4444cf41efdf0d3cf203986/
>  >> 
>  >> Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
> 
>  > [...]
> 
>  >> diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in
>  >> index 429dfa7..657bcdd 100644
>  >> --- a/package/util-linux/Config.in
>  >> +++ b/package/util-linux/Config.in
>  >> @@ -63,6 +63,7 @@ config BR2_PACKAGE_UTIL_LINUX_CHFN_CHSH
>  >> depends on (BR2_ENABLE_LOCALE && BR2_USE_WCHAR) # linux-pam
>  >> depends on !BR2_STATIC_LIBS
>  >> depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
>  >> +	depends on BR2_USE_MMU # linux-pam
>  >> select BR2_PACKAGE_LINUX_PAM
>  >> help
>  >> Change login shell, real user name and information
> 
>  > Lots of packages select BR2_PACKAGE_UTIL_LINUX. All of them (and all packages 
>  > that select them) now need to depend on BR2_USE_MMU.
> 
> Notice that this is only for BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS /
> BR2_PACKAGE_UTIL_LINUX_CHFN_CHSH (which nothing selects), not the
> toplevel util-linux option.

Right. Sorry for the noise.

baruch

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] linux-pam: uses fork() needs MMU
  2016-08-18  6:23 [Buildroot] [PATCH] linux-pam: uses fork() needs MMU Waldemar Brodkorb
  2016-08-18  6:49 ` Baruch Siach
@ 2016-08-19 10:22 ` Thomas Petazzoni
  1 sibling, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2016-08-19 10:22 UTC (permalink / raw)
  To: buildroot

Hello,

On Thu, 18 Aug 2016 08:23:45 +0200, Waldemar Brodkorb wrote:
> Fixes:
>   http://autobuild.buildroot.net/results/8c9/8c9a5fe52f762b4ff4444cf41efdf0d3cf203986/
> 
> Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
> ---
>  package/linux-pam/Config.in  | 1 +
>  package/nodm/Config.in       | 1 +
>  package/python-pam/Config.in | 1 +
>  package/rsh-redone/Config.in | 2 ++
>  package/util-linux/Config.in | 2 ++
>  5 files changed, 7 insertions(+)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-08-19 10:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-18  6:23 [Buildroot] [PATCH] linux-pam: uses fork() needs MMU Waldemar Brodkorb
2016-08-18  6:49 ` Baruch Siach
2016-08-18  8:21   ` Peter Korsgaard
2016-08-18  8:59     ` Baruch Siach
2016-08-19 10:22 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox