remove nearly-duplicate PATHs in several places
[oweals/busybox.git] / libbb / messages.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
4  *
5  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
6  */
7
8 #include "libbb.h"
9
10 #ifndef BB_EXTRA_VERSION
11 #define BANNER "BusyBox v" BB_VER " (" BB_BT ")"
12 #else
13 #define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")"
14 #endif
15 const char BB_BANNER[] = BANNER;
16 const char bb_msg_full_version[] = BANNER " multi-call binary";
17
18 const char bb_msg_memory_exhausted[] = "memory exhausted";
19 const char bb_msg_invalid_date[] = "invalid date '%s'";
20 const char bb_msg_write_error[] = "write error";
21 const char bb_msg_read_error[] = "read error";
22 const char bb_msg_unknown[] = "(unknown)";
23 const char bb_msg_can_not_create_raw_socket[] = "can't create raw socket";
24 const char bb_msg_perm_denied_are_you_root[] = "permission denied. (are you root?)";
25 const char bb_msg_requires_arg[] = "%s requires an argument";
26 const char bb_msg_invalid_arg[] = "invalid argument '%s' to '%s'";
27 const char bb_msg_standard_input[] = "standard input";
28 const char bb_msg_standard_output[] = "standard output";
29
30 const char bb_str_default[] = "default";
31 const char bb_hexdigits_upcase[] = "0123456789ABCDEF";
32
33 const char bb_path_passwd_file[] = "/etc/passwd";
34 const char bb_path_shadow_file[] = "/etc/shadow";
35 const char bb_path_group_file[] = "/etc/group";
36 const char bb_path_gshadow_file[] = "/etc/gshadow";
37 const char bb_path_motd_file[] = "/etc/motd";
38 const char bb_dev_null[] = "/dev/null";
39 const char bb_busybox_exec_path[] = CONFIG_BUSYBOX_EXEC_PATH;
40 const char bb_default_login_shell[] = LIBBB_DEFAULT_LOGIN_SHELL;
41 /* util-linux manpage says /sbin:/bin:/usr/sbin:/usr/bin,
42  * but I want to save a few bytes here. Check libbb.h before changing! */
43 const char bb_PATH_root_path[] = "PATH=/sbin:/usr/sbin:/bin:/usr/bin";
44
45
46 const int const_int_0;
47 const int const_int_1 = 1;
48
49 #include <utmp.h>
50 /* This is usually something like "/var/adm/wtmp" or "/var/log/wtmp" */
51 const char bb_path_wtmp_file[] =
52 #if defined _PATH_WTMP
53 _PATH_WTMP;
54 #elif defined WTMP_FILE
55 WTMP_FILE;
56 #else
57 # error unknown path to wtmp file
58 #endif
59
60 char bb_common_bufsiz1[COMMON_BUFSIZE];
61
62 struct globals;
63 /* Make it reside in R/W memory: */
64 struct globals *const ptr_to_globals __attribute__ ((section (".data")));