* [Buildroot] [PATCH 1/1] package/openvmtools: remove procps option
@ 2019-09-29 18:04 Fabrice Fontaine
2019-11-10 20:13 ` Yann E. MORIN
0 siblings, 1 reply; 3+ messages in thread
From: Fabrice Fontaine @ 2019-09-29 18:04 UTC (permalink / raw)
To: buildroot
procps support has been removed since version 10.2.5 and
https://github.com/vmware/open-vm-tools/commit/ed2e2348dd6af823f9458c5959c89acf2f13a952
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/openvmtools/Config.in | 10 ----------
package/openvmtools/openvmtools.mk | 7 -------
2 files changed, 17 deletions(-)
diff --git a/package/openvmtools/Config.in b/package/openvmtools/Config.in
index 2bd5c272a9..1a077a2a47 100644
--- a/package/openvmtools/Config.in
+++ b/package/openvmtools/Config.in
@@ -22,16 +22,6 @@ config BR2_PACKAGE_OPENVMTOOLS
if BR2_PACKAGE_OPENVMTOOLS
-config BR2_PACKAGE_OPENVMTOOLS_PROCPS
- bool "procps support"
- depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
- select BR2_PACKAGE_PROCPS_NG
- help
- Enable support for procps / meminfo
-
-comment "procps support needs BR2_PACKAGE_BUSYBOX_SHOW_OTHERS"
- depends on !BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
-
config BR2_PACKAGE_OPENVMTOOLS_PAM
bool "PAM support"
# linux-pam needs locale and wchar, but we already have this
diff --git a/package/openvmtools/openvmtools.mk b/package/openvmtools/openvmtools.mk
index e97eaf224e..fc56bb5ee0 100644
--- a/package/openvmtools/openvmtools.mk
+++ b/package/openvmtools/openvmtools.mk
@@ -37,13 +37,6 @@ else
OPENVMTOOLS_CONF_OPTS += --without-ssl
endif
-ifeq ($(BR2_PACKAGE_OPENVMTOOLS_PROCPS),y)
-OPENVMTOOLS_CONF_OPTS += --with-procps
-OPENVMTOOLS_DEPENDENCIES += procps-ng
-else
-OPENVMTOOLS_CONF_OPTS += --without-procps
-endif
-
ifeq ($(BR2_PACKAGE_OPENVMTOOLS_PAM),y)
OPENVMTOOLS_CONF_OPTS += --with-pam
OPENVMTOOLS_DEPENDENCIES += linux-pam
--
2.23.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] package/openvmtools: remove procps option
2019-09-29 18:04 [Buildroot] [PATCH 1/1] package/openvmtools: remove procps option Fabrice Fontaine
@ 2019-11-10 20:13 ` Yann E. MORIN
2019-11-10 20:20 ` Yann E. MORIN
0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2019-11-10 20:13 UTC (permalink / raw)
To: buildroot
Fabrice, All,
On 2019-09-29 20:04 +0200, Fabrice Fontaine spake thusly:
> procps support has been removed since version 10.2.5 and
> https://github.com/vmware/open-vm-tools/commit/ed2e2348dd6af823f9458c5959c89acf2f13a952
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Applied to master, thanks, with a small nit...
> ---
> package/openvmtools/Config.in | 10 ----------
> package/openvmtools/openvmtools.mk | 7 -------
> 2 files changed, 17 deletions(-)
>
> diff --git a/package/openvmtools/Config.in b/package/openvmtools/Config.in
> index 2bd5c272a9..1a077a2a47 100644
> --- a/package/openvmtools/Config.in
> +++ b/package/openvmtools/Config.in
> @@ -22,16 +22,6 @@ config BR2_PACKAGE_OPENVMTOOLS
>
> if BR2_PACKAGE_OPENVMTOOLS
>
> -config BR2_PACKAGE_OPENVMTOOLS_PROCPS
> - bool "procps support"
> - depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
> - select BR2_PACKAGE_PROCPS_NG
> - help
> - Enable support for procps / meminfo
This needs a Config.in.legacy entry, so I added it.
Regards,
Yann E. MORIN.
> -comment "procps support needs BR2_PACKAGE_BUSYBOX_SHOW_OTHERS"
> - depends on !BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
> -
> config BR2_PACKAGE_OPENVMTOOLS_PAM
> bool "PAM support"
> # linux-pam needs locale and wchar, but we already have this
> diff --git a/package/openvmtools/openvmtools.mk b/package/openvmtools/openvmtools.mk
> index e97eaf224e..fc56bb5ee0 100644
> --- a/package/openvmtools/openvmtools.mk
> +++ b/package/openvmtools/openvmtools.mk
> @@ -37,13 +37,6 @@ else
> OPENVMTOOLS_CONF_OPTS += --without-ssl
> endif
>
> -ifeq ($(BR2_PACKAGE_OPENVMTOOLS_PROCPS),y)
> -OPENVMTOOLS_CONF_OPTS += --with-procps
> -OPENVMTOOLS_DEPENDENCIES += procps-ng
> -else
> -OPENVMTOOLS_CONF_OPTS += --without-procps
> -endif
> -
> ifeq ($(BR2_PACKAGE_OPENVMTOOLS_PAM),y)
> OPENVMTOOLS_CONF_OPTS += --with-pam
> OPENVMTOOLS_DEPENDENCIES += linux-pam
> --
> 2.23.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 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] package/openvmtools: remove procps option
2019-11-10 20:13 ` Yann E. MORIN
@ 2019-11-10 20:20 ` Yann E. MORIN
0 siblings, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2019-11-10 20:20 UTC (permalink / raw)
To: buildroot
Rabrice, All,
On 2019-11-10 21:13 +0100, Yann E. MORIN spake thusly:
> On 2019-09-29 20:04 +0200, Fabrice Fontaine spake thusly:
> > procps support has been removed since version 10.2.5 and
> > https://github.com/vmware/open-vm-tools/commit/ed2e2348dd6af823f9458c5959c89acf2f13a952
> >
> > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
>
> Applied to master, thanks, with a small nit...
>
> > ---
> > package/openvmtools/Config.in | 10 ----------
> > package/openvmtools/openvmtools.mk | 7 -------
> > 2 files changed, 17 deletions(-)
> >
> > diff --git a/package/openvmtools/Config.in b/package/openvmtools/Config.in
> > index 2bd5c272a9..1a077a2a47 100644
> > --- a/package/openvmtools/Config.in
> > +++ b/package/openvmtools/Config.in
> > @@ -22,16 +22,6 @@ config BR2_PACKAGE_OPENVMTOOLS
> >
> > if BR2_PACKAGE_OPENVMTOOLS
> >
> > -config BR2_PACKAGE_OPENVMTOOLS_PROCPS
> > - bool "procps support"
> > - depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
> > - select BR2_PACKAGE_PROCPS_NG
> > - help
> > - Enable support for procps / meminfo
>
> This needs a Config.in.legacy entry, so I added it.
... which I obviously forgot to git commit --amend before I pushed, so I
pushed it in a separate commit.
Sorry for the mess...
> Regards,
> Yann E. MORIN.
>
> > -comment "procps support needs BR2_PACKAGE_BUSYBOX_SHOW_OTHERS"
> > - depends on !BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
> > -
> > config BR2_PACKAGE_OPENVMTOOLS_PAM
> > bool "PAM support"
> > # linux-pam needs locale and wchar, but we already have this
> > diff --git a/package/openvmtools/openvmtools.mk b/package/openvmtools/openvmtools.mk
> > index e97eaf224e..fc56bb5ee0 100644
> > --- a/package/openvmtools/openvmtools.mk
> > +++ b/package/openvmtools/openvmtools.mk
> > @@ -37,13 +37,6 @@ else
> > OPENVMTOOLS_CONF_OPTS += --without-ssl
> > endif
> >
> > -ifeq ($(BR2_PACKAGE_OPENVMTOOLS_PROCPS),y)
> > -OPENVMTOOLS_CONF_OPTS += --with-procps
> > -OPENVMTOOLS_DEPENDENCIES += procps-ng
> > -else
> > -OPENVMTOOLS_CONF_OPTS += --without-procps
> > -endif
> > -
> > ifeq ($(BR2_PACKAGE_OPENVMTOOLS_PAM),y)
> > OPENVMTOOLS_CONF_OPTS += --with-pam
> > OPENVMTOOLS_DEPENDENCIES += linux-pam
> > --
> > 2.23.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 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
> | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
> '------------------------------^-------^------------------^--------------------'
> _______________________________________________
> 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 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-11-10 20:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-29 18:04 [Buildroot] [PATCH 1/1] package/openvmtools: remove procps option Fabrice Fontaine
2019-11-10 20:13 ` Yann E. MORIN
2019-11-10 20:20 ` 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