diff options
Diffstat (limited to 'scripts/vyatta-show-version')
-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 94ab424..485e90e 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; } |