package/procps-ng: fix typos in config option and help text

The option has been renamed, so add an entry in the
Config.in.legacy file for the old option name.

Signed-off-by: Scott Fan <fancp2007@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Scott Fan 2024-10-29 22:11:24 +08:00 committed by Thomas Petazzoni
commit a3152a20f6
3 changed files with 11 additions and 3 deletions

View file

@ -146,6 +146,14 @@ endif
comment "Legacy options removed in 2024.11"
config BR2_PACKAGE_PROCPS_NS_ORIGINAL_TOP
bool "BR2_PACKAGE_PROCPS_NS_ORIGINAL_TOP has been renamed"
select BR2_LEGACY
select BR2_PACKAGE_PROCPS_NG_ORIGINAL_TOP
help
The option has been renamed to
BR2_PACKAGE_PROCPS_NG_ORIGINAL_TOP.
config BR2_PACKAGE_QEMU_TARGET_NIOS2
bool "qemu nios2 support has been removed"
select BR2_LEGACY

View file

@ -11,10 +11,10 @@ config BR2_PACKAGE_PROCPS_NG
if BR2_PACKAGE_PROCPS_NG
config BR2_PACKAGE_PROCPS_NS_ORIGINAL_TOP
config BR2_PACKAGE_PROCPS_NG_ORIGINAL_TOP
bool "Use original top layout"
help
Disable modern top layout, return to original top with
detail cpu usage.
detailed cpu usage.
endif

View file

@ -56,7 +56,7 @@ else
PROCPS_NG_CONF_OPTS += --enable-w
endif
ifeq ($(BR2_PACKAGE_PROCPS_NS_ORIGINAL_TOP),y)
ifeq ($(BR2_PACKAGE_PROCPS_NG_ORIGINAL_TOP),y)
PROCPS_NG_CONF_OPTS += --disable-modern-top
endif