aboutsummaryrefslogtreecommitdiff
path: root/generated/help.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-08-31 11:37:31 -0700
committerElliott Hughes <enh@google.com>2015-08-31 11:37:31 -0700
commit134791c1403d47720ccfa46efe026c7e81159e79 (patch)
tree83fe785fb159c0ee531575426b31c41023246c43 /generated/help.h
parent226e167128144090a95197f5d30b7e6d607d52ec (diff)
downloadtoybox-134791c1403d47720ccfa46efe026c7e81159e79.tar.gz
Regenerate generated files.
Change-Id: I647814ca584713988ad8f104da0cb3bd5c0787ab
Diffstat (limited to 'generated/help.h')
-rw-r--r--generated/help.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/generated/help.h b/generated/help.h
index c07c86c0..401213e6 100644
--- a/generated/help.h
+++ b/generated/help.h
@@ -1,4 +1,6 @@
-#define help_toybox_uid_usr "When commands like useradd/groupadd allocate user IDs, start here.\n"
+#define help_toybox_musl_nommu_is_broken "When using musl-libc on a nommu system, you'll need to say \"y\" here.\n\nAlthough uclibc lets you detect support for things like fork() and\ndaemon() at compile time, musl intentionally includes broken versions\nthat always return -ENOSYS on nommu systems, and goes out of its way\nto prevent any cross-compile compatible compile-time probes for a\nnommu system.\n\nMusl does this despite the fact that a nommu system can't even run\nstandard ELF binaries, and requires specially packaged executables.\n(You can't even check a #define to see that you're building against\nmusl, due to its maintainer's policy that musl never has bugs that\nrequire workarounds.)\n\nSo our only choice is to manually provide a musl nommu bug workaround\nyou can manually select to enable (larger, slower) nommu support with\nmusl.\n\nYou don't need this for uClibc, we have a compile time probe that\nautodetects nommu support there.\n\n"
+
+#define help_toybox_uid_usr "When commands like useradd/groupadd allocate user IDs, start here.\n\n"
#define help_toybox_uid_sys "When commands like useradd/groupadd allocate system IDs, start here.\n\n"
@@ -40,7 +42,9 @@
#define help_getenforce "usage: getenforce\n\nShows whether SELinux is disabled, enforcing, or permissive.\n\n"
-#define help_skeleton_alias "usage: skeleton_alias [-dq] [-b NUMBER]\n\nExample of a second command with different arguments in the same source\nfile as the first. This allows shared infrastructure not added to lib/.\n\n\n"
+#define help_test_human_readable "usage: test_human_readable [-sbi] NUMBER\n\n\n"
+
+#define help_skeleton_alias "usage: skeleton_alias [-dq] [-b NUMBER]\n\nExample of a second command with different arguments in the same source\nfile as the first. This allows shared infrastructure not added to lib/.\n\n"
#define help_skeleton "usage: skeleton [-a] [-b STRING] [-c NUMBER] [-d LIST] [-e COUNT] [...]\n\nTemplate for new commands. You don't need this.\n\nWhen creating a new command, copy this file and delete the parts you\ndon't need. Be sure to replace all instances of \"skeleton\" (upper and lower\ncase) with your new command name.\n\nFor simple commands, \"hello.c\" is probably a better starting point.\n\n"