@@ -90,10 +90,14 @@ die "Pre inst Internal error. Aborting." unless $version;
exit 0 if $ARGV[0] =~ /abort-upgrade/;
exit 1 unless $ARGV[0] =~ /(install|upgrade)/;
-system ("grep -q ' pae ' /proc/cpuinfo");
-if ($?) {
- print "This kernel does not support a non-PAE CPU.\n";
- exit 1;
+$arch = `uname -m`;
+chomp($arch);
+if ($arch ne "armv7l") {
+ system ("grep -q ' pae ' /proc/cpuinfo");
+ if ($?) {
+ print "This kernel does not support a non-PAE CPU.\n";
+ exit 1;
+ }
}
# remove multiple leading slashes; make sure there is at least one.
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com> --- debian/control-scripts/preinst | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-)