Browse Source

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>
Scott Fan 9 months ago
parent
commit
a3152a20f6
3 changed files with 11 additions and 3 deletions
  1. 8 0
      Config.in.legacy
  2. 2 2
      package/procps-ng/Config.in
  3. 1 1
      package/procps-ng/procps-ng.mk

+ 8 - 0
Config.in.legacy

@@ -146,6 +146,14 @@ endif
 
 
 comment "Legacy options removed in 2024.11"
 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
 config BR2_PACKAGE_QEMU_TARGET_NIOS2
 	bool "qemu nios2 support has been removed"
 	bool "qemu nios2 support has been removed"
 	select BR2_LEGACY
 	select BR2_LEGACY

+ 2 - 2
package/procps-ng/Config.in

@@ -11,10 +11,10 @@ config BR2_PACKAGE_PROCPS_NG
 
 
 if 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"
 	bool "Use original top layout"
 	help
 	help
 	  Disable modern top layout, return to original top with
 	  Disable modern top layout, return to original top with
-	  detail cpu usage.
+	  detailed cpu usage.
 
 
 endif
 endif

+ 1 - 1
package/procps-ng/procps-ng.mk

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