aboutsummaryrefslogtreecommitdiff
path: root/docs/embedded-scripts.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/embedded-scripts.txt')
-rw-r--r--docs/embedded-scripts.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/embedded-scripts.txt b/docs/embedded-scripts.txt
index 7a273d698..f6f107d4e 100644
--- a/docs/embedded-scripts.txt
+++ b/docs/embedded-scripts.txt
@@ -55,19 +55,19 @@ Next we need the configuration data. This is very similar to the example
55code for the native applet: 55code for the native applet:
56 56
57//config:config MU 57//config:config MU
58//config: bool "MU" 58//config: bool "MU"
59//config: default y 59//config: default y
60//config: help 60//config: help
61//config: Returns an indeterminate value. 61//config: Returns an indeterminate value.
62 62
63//applet:IF_MU(APPLET_SCRIPTED(mu, scripted, BB_DIR_USR_BIN, BB_SUID_DROP, mu)) 63//applet:IF_MU(APPLET_SCRIPTED(mu, scripted, BB_DIR_USR_BIN, BB_SUID_DROP, mu))
64 64
65//usage:#define mu_trivial_usage 65//usage:#define mu_trivial_usage
66//usage: "[-abcde] FILE..." 66//usage: "[-abcde] FILE..."
67//usage:#define mu_full_usage 67//usage:#define mu_full_usage
68//usage: "Returns an indeterminate value\n" 68//usage: "Returns an indeterminate value\n"
69//usage: "\n -a First function" 69//usage: "\n -a First function"
70//usage: "\n -b Second function" 70//usage: "\n -b Second function"
71 71
72The only difference is that the applet is specified as being of type 72The only difference is that the applet is specified as being of type
73APPLET_SCRIPTED. It would also be useful to include details of any 73APPLET_SCRIPTED. It would also be useful to include details of any