#ifdef out re_execed on MMU machines
authorDenis Vlasenko <vda.linux@googlemail.com>
Sat, 24 Mar 2007 16:13:33 +0000 (16:13 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Sat, 24 Mar 2007 16:13:33 +0000 (16:13 -0000)
applets/busybox.c
include/libbb.h

index 5334827ca7617b297f43a90639f12985c28aff90..47a8b40970397da43bbaeff1cfd3aab45c483600 100644 (file)
@@ -7,7 +7,9 @@
 #include "busybox.h"
 
 const char *applet_name ATTRIBUTE_EXTERNALLY_VISIBLE;
+#ifdef BB_NOMMU
 smallint re_execed;
+#endif
 
 #ifdef CONFIG_FEATURE_INSTALLER
 /*
@@ -60,11 +62,13 @@ int main(int argc, char **argv)
 {
        const char *s;
 
+#ifdef BB_NOMMU
        /* NOMMU re-exec trick sets high-order bit in first byte of name */
        if (argv[0][0] & 0x80) {
                re_execed = 1;
                argv[0][0] &= 0x7f;
        }
+#endif
 
        applet_name = argv[0];
        if (*applet_name == '-')
index 0cfc220188e2ad0e965d3cdfa1e3a465d778eda5..152b87099049cacde88c448941b0d58a778fd6af 100644 (file)
@@ -617,6 +617,7 @@ extern void print_login_issue(const char *issue_file, const char *tty);
 extern void print_login_prompt(void);
 #ifdef BB_NOMMU
 extern void vfork_daemon_rexec(int nochdir, int noclose, char **argv);
+extern smallint re_execed;
 #endif
 extern int get_terminal_width_height(const int fd, int *width, int *height);
 
@@ -761,7 +762,6 @@ enum {      /* DO NOT CHANGE THESE VALUES!  cp.c, mv.c, install.c depend on them. */
 };
 
 #define FILEUTILS_CP_OPTSTR "pdRfils" USE_SELINUX("c")
-extern smallint re_execed;
 extern const char *applet_name;
 extern const char BB_BANNER[];