diff options
Diffstat (limited to 'printutils/lpr.c')
-rw-r--r-- | printutils/lpr.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/printutils/lpr.c b/printutils/lpr.c index 70cda7717..ed6a84a93 100644 --- a/printutils/lpr.c +++ b/printutils/lpr.c | |||
@@ -11,6 +11,23 @@ | |||
11 | * | 11 | * |
12 | * See RFC 1179 for protocol description. | 12 | * See RFC 1179 for protocol description. |
13 | */ | 13 | */ |
14 | //config:config LPR | ||
15 | //config: bool "lpr" | ||
16 | //config: default y | ||
17 | //config: help | ||
18 | //config: lpr sends files (or standard input) to a print spooling daemon. | ||
19 | //config: | ||
20 | //config:config LPQ | ||
21 | //config: bool "lpq" | ||
22 | //config: default y | ||
23 | //config: help | ||
24 | //config: lpq is a print spool queue examination and manipulation program. | ||
25 | |||
26 | //applet:IF_LPQ(APPLET_ODDNAME(lpq, lpqr, BB_DIR_USR_BIN, BB_SUID_DROP, lpq)) | ||
27 | //applet:IF_LPR(APPLET_ODDNAME(lpr, lpqr, BB_DIR_USR_BIN, BB_SUID_DROP, lpr)) | ||
28 | |||
29 | //kbuild:lib-$(CONFIG_LPR) += lpr.o | ||
30 | //kbuild:lib-$(CONFIG_LPQ) += lpr.o | ||
14 | 31 | ||
15 | //usage:#define lpr_trivial_usage | 32 | //usage:#define lpr_trivial_usage |
16 | //usage: "-P queue[@host[:port]] -U USERNAME -J TITLE -Vmh [FILE]..." | 33 | //usage: "-P queue[@host[:port]] -U USERNAME -J TITLE -Vmh [FILE]..." |