summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2008-01-22 14:31:27 +0000
committerJay Freeman <saurik@saurik.com>2008-01-22 14:31:27 +0000
commit553360b2ff0e9e48b7aff9eadeb0adbadf6c2bbc (patch)
tree5975f0d0798e19c3dad4be25df32281f52aee431 /util
parentc90399edf5edcc1f151c1c33d66f123e17172cb7 (diff)
Override uname in PATH for easier autoconf, update Origin fields to include saurik's full name, filter packages before passing to dpkg-scanpackages (to verify correct version is indexed), handle a few escaping mistakes in the make.sh directory logic, and re-enabled nls support during pkg:configure.
git-svn-id: http://svn.telesphoreo.org/trunk@31 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'util')
-rwxr-xr-xutil/uname11
1 files changed, 11 insertions, 0 deletions
diff --git a/util/uname b/util/uname
new file mode 100755
index 000000000..adc4d23ab
--- /dev/null
+++ b/util/uname
@@ -0,0 +1,11 @@
+#!/bin/bash
+OPTIND=1
+while getopts mnrsv OPTKEY; do
+ case $OPTKEY in
+ (m) echo 'iPhone1,1';;
+ (n) echo 'transponder';;
+ (r) echo '9.0.0d1';;
+ (s) echo 'Darwin';;
+ (v) echo 'Darwin Kernel Version 9.0.0d1: Wed Sep 19 00:08:43 PDT 2007; root:xnu-933.0.0.203.obj~21/RELEASE_ARM_S5L8900XRB';;
+ esac
+done