diff options
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/drivers/xterm.c | 2 | ||||
-rw-r--r-- | arch/um/include/shared/os.h | 6 | ||||
-rw-r--r-- | arch/um/os-Linux/main.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/arch/um/drivers/xterm.c b/arch/um/drivers/xterm.c index da2caa5a21ef..8ac7146c237f 100644 --- a/arch/um/drivers/xterm.c +++ b/arch/um/drivers/xterm.c | |||
@@ -90,7 +90,7 @@ static int xterm_open(int input, int output, int primary, void *d, | |||
90 | int pid, fd, new, err; | 90 | int pid, fd, new, err; |
91 | char title[256], file[] = "/tmp/xterm-pipeXXXXXX"; | 91 | char title[256], file[] = "/tmp/xterm-pipeXXXXXX"; |
92 | char *argv[] = { terminal_emulator, title_switch, title, exec_switch, | 92 | char *argv[] = { terminal_emulator, title_switch, title, exec_switch, |
93 | "/usr/lib/uml/port-helper", "-uml-socket", | 93 | OS_LIB_PATH "/uml/port-helper", "-uml-socket", |
94 | file, NULL }; | 94 | file, NULL }; |
95 | 95 | ||
96 | if (access(argv[4], X_OK) < 0) | 96 | if (access(argv[4], X_OK) < 0) |
diff --git a/arch/um/include/shared/os.h b/arch/um/include/shared/os.h index c4617baaa4f2..f06a5da71a8f 100644 --- a/arch/um/include/shared/os.h +++ b/arch/um/include/shared/os.h | |||
@@ -29,6 +29,12 @@ | |||
29 | #define OS_ACC_R_OK 4 /* Test for read permission. */ | 29 | #define OS_ACC_R_OK 4 /* Test for read permission. */ |
30 | #define OS_ACC_RW_OK (OS_ACC_W_OK | OS_ACC_R_OK) /* Test for RW permission */ | 30 | #define OS_ACC_RW_OK (OS_ACC_W_OK | OS_ACC_R_OK) /* Test for RW permission */ |
31 | 31 | ||
32 | #ifdef CONFIG_64BIT | ||
33 | #define OS_LIB_PATH "/usr/lib64/" | ||
34 | #else | ||
35 | #define OS_LIB_PATH "/usr/lib/" | ||
36 | #endif | ||
37 | |||
32 | /* | 38 | /* |
33 | * types taken from stat_file() in hostfs_user.c | 39 | * types taken from stat_file() in hostfs_user.c |
34 | * (if they are wrong here, they are wrong there...). | 40 | * (if they are wrong here, they are wrong there...). |
diff --git a/arch/um/os-Linux/main.c b/arch/um/os-Linux/main.c index eee69b9f52c9..39613ea42196 100644 --- a/arch/um/os-Linux/main.c +++ b/arch/um/os-Linux/main.c | |||
@@ -78,7 +78,7 @@ static void install_fatal_handler(int sig) | |||
78 | } | 78 | } |
79 | } | 79 | } |
80 | 80 | ||
81 | #define UML_LIB_PATH ":/usr/lib/uml" | 81 | #define UML_LIB_PATH ":" OS_LIB_PATH "/uml" |
82 | 82 | ||
83 | static void setup_env_path(void) | 83 | static void setup_env_path(void) |
84 | { | 84 | { |