diff options
author | Daniil Baturin <daniil@baturin.org> | 2014-03-05 17:36:30 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2014-04-27 00:27:46 +0200 |
commit | ea806a41aa9a67c7089053ac2d02ea99340db994 (patch) | |
tree | 27ecb64139ecddc543557ec76db201613bf6f70b /scripts | |
parent | 50ad9805fcadf21e80ff0a27ba013a4abdf62336 (diff) | |
download | vyatta-op-ea806a41aa9a67c7089053ac2d02ea99340db994.tar.gz vyatta-op-ea806a41aa9a67c7089053ac2d02ea99340db994.zip |
Bug #157: Replace 'Intel 32/64bit' with 'x86 32/64-bit' in 'show version'.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-show-version | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/vyatta-show-version b/scripts/vyatta-show-version index f7a3ee9..7ca2124 100755 --- a/scripts/vyatta-show-version +++ b/scripts/vyatta-show-version @@ -66,10 +66,11 @@ sub get_image_type { return; } + # XXX: Maybe just check 'uname -m' ? if ($1 eq '586') { - $version = "Intel 32bit"; + $version = "x86 32-bit"; } elsif ($1 eq "amd64") { - $version = "Intel 64bit"; + $version = "x86 64-bit"; } else { $version = $1; } |