usage.src.h 993 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* vi: set sw=8 ts=8: */
  2. /*
  3. * This file suffers from chronically incorrect tabification
  4. * of messages. Before editing this file:
  5. * 1. Switch you editor to 8-space tab mode.
  6. * 2. Do not use \t in messages, use real tab character.
  7. * 3. Start each source line with message as follows:
  8. * |<7 spaces>"text with tabs"....
  9. * or
  10. * |<5 spaces>"\ntext with tabs"....
  11. */
  12. #ifndef BB_USAGE_H
  13. #define BB_USAGE_H 1
  14. #define NOUSAGE_STR "\b"
  15. #define scripted_trivial_usage NOUSAGE_STR
  16. #define scripted_full_usage ""
  17. #if !ENABLE_USE_BB_CRYPT || ENABLE_USE_BB_CRYPT_SHA
  18. # define CRYPT_METHODS_HELP_STR "des,md5,sha256/512" \
  19. " (default "CONFIG_FEATURE_DEFAULT_PASSWD_ALGO")"
  20. #else
  21. # define CRYPT_METHODS_HELP_STR "des,md5" \
  22. " (default "CONFIG_FEATURE_DEFAULT_PASSWD_ALGO")"
  23. #endif
  24. #if ENABLE_FEATURE_HWCLOCK_ADJTIME_FHS
  25. # define ADJTIME_PATH "/var/lib/hwclock/adjtime"
  26. #else
  27. # define ADJTIME_PATH "/etc/adjtime"
  28. #endif
  29. INSERT
  30. #define busybox_notes_usage \
  31. "Hello world!\n"
  32. #endif