diff options
Diffstat (limited to 'Master/common.sh')
-rwxr-xr-x | Master/common.sh | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/Master/common.sh b/Master/common.sh index d428457eb55..6e5fa8b3f19 100755 --- a/Master/common.sh +++ b/Master/common.sh @@ -37,6 +37,7 @@ setvars() 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' + p_i386_openbsd_n='Intel x86 with OpenBSD' p_i386_linux_n='Intel x86 with GNU/Linux' p_i386_solaris_n='Intel x86 with Sun Solaris' p_mips_irix_n='SGI IRIX' @@ -573,7 +574,7 @@ menu_this_platform() while true; do cls textvar_show screen_5; echo - case `getopt NABCDEFGHIJKLMORQ 'Select the platform you are currently on'` in + case `getopt NABCDEFGHIJKLMOPRQ '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 ;; @@ -586,12 +587,13 @@ menu_this_platform() 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 ;; + L) this_system=i386_openbsd; this_platform_set ;; + M) this_system=i386_cygwin; this_platform_set ;; # N above - O) this_system=sparc_linux; this_platform_set ;; - R) total_stat; return ;; + O) this_system=x86_64_linux; this_platform_set ;; + P) this_system=sparc_linux; this_platform_set ;; Q) exit_on_confirm ;; + R) total_stat; return ;; esac done } @@ -854,9 +856,10 @@ screen_5='Current platform: $this_platform_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 + <L> $p_i386_openbsd_n + <M> $p_i386_cygwin_n + <O> $p_x86_64_linux_n + <P> $p_sparc_linux_n <R> return to main menu <Q> quit |