diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:36:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:36:24 +0000 |
commit | 6c1c3157a2298129cfc0573a00c551b82c0250d8 (patch) | |
tree | 6f3b4b0a342b940c074d73e39ed671fd8e3001db /debian/vfp-support.preinst | |
parent | Adding upstream version 15.1. (diff) | |
download | isa-support-6c1c3157a2298129cfc0573a00c551b82c0250d8.tar.xz isa-support-6c1c3157a2298129cfc0573a00c551b82c0250d8.zip |
Adding debian version 15.1.debian/15.1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/vfp-support.preinst')
-rw-r--r-- | debian/vfp-support.preinst | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/debian/vfp-support.preinst b/debian/vfp-support.preinst new file mode 100644 index 0000000..028c30c --- /dev/null +++ b/debian/vfp-support.preinst @@ -0,0 +1,50 @@ +#!/bin/sh +set -e + +if [ "$1" = install ] || [ "$1" = upgrade ]; then + FILE="/usr/libexec/x86_64-linux-gnu/isa-support/test-VFP" + # "exec >;command" instead of "command >" looks strange but regular + # redirections don't fully work within qemu-user. + ret=0;(exec >/dev/null 2>&1; "$FILE") || ret=$? + if [ $ret -ne 0 ] && [ -n "$IGNORE_ISA" ]; then + cat >&2 <<END +This machine doesn't support VFP, but override (IGNORE_ISA) is enabled. +Continuing... +END + ret=0 + fi + + if [ $ret -eq 126 ]; then + cat >&2 <<END +Couldn't execute test binary for VFP, you either do foreign multi-arch +without qemu or do something strange. Assuming you know what you're doing. +Continuing... +END + ret=0 + fi + + if [ $ret -ne 0 ]; then + # Fail noisily, first via debconf (if installed). + if [ -e /usr/share/debconf/confmodule ]; then + + . /usr/share/debconf/confmodule + db_version 2.0 + + db_fset VFP-support/fail seen false ||: + db_reset VFP-support/fail ||: + db_input critical VFP-support/fail ||: + db_go ||: + db_stop ||: + fi + + cat >&2 <<END +This machine doesn't support VFP, sorry. +Aborting. +END + exit 2 + fi +fi + +#DEBHELPER# + +exit 0 |