summaryrefslogtreecommitdiff
path: root/math/reduce-psl/files/runpsl.sh
diff options
context:
space:
mode:
Diffstat (limited to 'math/reduce-psl/files/runpsl.sh')
-rw-r--r--math/reduce-psl/files/runpsl.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/math/reduce-psl/files/runpsl.sh b/math/reduce-psl/files/runpsl.sh
new file mode 100644
index 000000000000..67de252482a8
--- /dev/null
+++ b/math/reduce-psl/files/runpsl.sh
@@ -0,0 +1,16 @@
+#! /bin/sh
+
+case `uname -m` in
+amd64)
+ STORE=2000
+ ;;
+i386)
+ STORE=16000000
+ ;;
+esac
+
+bin="/usr/local/share/reduce/psl/bpsl"
+img="/usr/local/share/reduce/red/reduce.img"
+
+exec $bin -td $STORE -f $img $*
+