diff options
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/common.sh | 29 | ||||
-rwxr-xr-x | Master/utils.sh | 1 |
2 files changed, 17 insertions, 13 deletions
diff --git a/Master/common.sh b/Master/common.sh index 89cfb8c60b7..bd872b78992 100755 --- a/Master/common.sh +++ b/Master/common.sh @@ -33,6 +33,7 @@ setvars() # changed to _. p_alpha_linux_n='DEC Alpha with GNU/Linux' p_alphaev5_osf_n='DEC Alphaev5 OSF' + p_hppa_hpux_n='HP-UX' p_i386_cygwin_n='Intel x86 with Cygwin' p_i386_darwin_n='Intel x86 with MacOSX/Darwin' p_i386_freebsd_n='Intel x86 with FreeBSD' @@ -566,7 +567,7 @@ menu_this_platform() while true; do cls textvar_show screen_5; echo - case `getopt NABCDEFGHIJKLMRQ 'Select the platform you are currently on'` in + case `getopt NABCDEFGHIJKLMORQ 'Select the platform you are currently on'` in N) this_system=''; this_platform_set ;; A) this_system=i386_linux; this_platform_set ;; B) this_system=win32; this_platform_set ;; @@ -575,13 +576,14 @@ menu_this_platform() E) this_system=alpha_linux; this_platform_set ;; F) this_system=mips_irix; this_platform_set ;; G) this_system=powerpc_aix; this_platform_set ;; - H) this_system=sparc_solaris; this_platform_set ;; - I) this_system=i386_solaris; this_platform_set ;; - J) this_system=i386_freebsd; this_platform_set ;; - K) this_system=i386_cygwin; this_platform_set ;; - L) this_system=x86_64_linux; this_platform_set ;; - M) this_system=sparc_linux; this_platform_set ;; + H) this_system=hppa_hpux; this_platform_set ;; + I) this_system=sparc_solaris; this_platform_set ;; + J) this_system=i386_solaris; this_platform_set ;; + K) this_system=i386_freebsd; this_platform_set ;; + L) this_system=i386_cygwin; this_platform_set ;; + M) this_system=x86_64_linux; this_platform_set ;; # N above + O) this_system=sparc_linux; this_platform_set ;; R) total_stat; return ;; Q) exit_on_confirm ;; esac @@ -838,12 +840,13 @@ screen_5='Current platform: $this_platform_n <E> $p_alpha_linux_n <F> $p_mips_irix_n <G> $p_powerpc_aix_n - <H> $p_sparc_solaris_n - <I> $p_i386_solaris_n - <J> $p_i386_freebsd_n - <K> $p_i386_cygwin_n - <L> $p_x86_64_linux_n - <M> $p_sparc_linux_n + <H> $p_hppa_hpux_n + <I> $p_sparc_solaris_n + <J> $p_i386_solaris_n + <K> $p_i386_freebsd_n + <L> $p_i386_cygwin_n + <M> $p_x86_64_linux_n + <O> $p_sparc_linux_n <R> return to main menu <Q> quit diff --git a/Master/utils.sh b/Master/utils.sh index 465ed4a060c..ec7c5eab8d0 100755 --- a/Master/utils.sh +++ b/Master/utils.sh @@ -427,6 +427,7 @@ platform_guess() *86-solaris*) Sys=i386_solaris;; *86_64*-linux*) Sys=x86_64_linux;; alpha*-linux*) Sys=alpha_linux;; + hppa*-hpux*) Sys=hppa_hpux;; mips-irix*) Sys=mips_irix;; powerpc-aix*) Sys=powerpc_aix;; powerpc-*darwin*) Sys=powerpc_darwin;; |