root / trunk / util / uname.sh

Revision 199, 370 bytes (checked in by saurik, 8 months ago)

Drastic, sweeping modifications to support iPhone 1.2.0/2.0.

  • Property svn:executable set to *
Line 
1#!/bin/bash
2OPTIND=1
3while getopts mnprsv OPTKEY; do
4    case $OPTKEY in
5        (m) echo 'iPhone1,1';;
6        (n) echo 'transponder';;
7        (p) echo 'unknown';;
8        (r) echo '9.0.0d1';;
9        (s) echo 'Darwin';;
10        (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';;
11    esac
12done
Note: See TracBrowser for help on using the browser.