253-ksmbd-config.patch 955 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. From dcd966fa7ca63f38cf7147e1184d13d66e2ca340 Mon Sep 17 00:00:00 2001
  2. From: OpenWrt community <[email protected]>
  3. Date: Wed, 13 Jul 2022 13:33:30 +0200
  4. Subject: [PATCH] Kconfig: add tristate for OID and ASNI string
  5. ---
  6. init/Kconfig | 2 +-
  7. lib/Kconfig | 2 +-
  8. 2 files changed, 2 insertions(+), 2 deletions(-)
  9. diff --git a/init/Kconfig b/init/Kconfig
  10. index 5a2514bbb11d..32ba9490a6e4 100644
  11. --- a/init/Kconfig
  12. +++ b/init/Kconfig
  13. @@ -2384,7 +2384,7 @@ config PADATA
  14. bool
  15. config ASN1
  16. - tristate
  17. + tristate "ASN1"
  18. help
  19. Build a simple ASN.1 grammar compiler that produces a bytecode output
  20. that can be interpreted by the ASN.1 stream decoder and used to
  21. diff --git a/lib/Kconfig b/lib/Kconfig
  22. index d6c6cfd1fac9..6595c53abd3c 100644
  23. --- a/lib/Kconfig
  24. +++ b/lib/Kconfig
  25. @@ -614,7 +614,7 @@ config LIBFDT
  26. bool
  27. config OID_REGISTRY
  28. - tristate
  29. + tristate "OID"
  30. help
  31. Enable fast lookup object identifier registry.
  32. --