mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-07 11:20:35 +08:00
57623d42eb
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5153 42af7a65-404d-4744-a932-0658087f49c3
10 lines
236 B
Bash
Executable File
10 lines
236 B
Bash
Executable File
#!/bin/sh
|
|
# uname(1) simulator, inspired by Pavel Roskin.
|
|
|
|
[ $# -ne 1 ] && exec sh $0 -s
|
|
[ $1 = -m ] && echo 4400
|
|
[ $1 = -r ] && echo 4.0
|
|
[ $1 = -s ] && echo iainfo2
|
|
[ $1 = -v ] && echo 3.0
|
|
[ $1 = -p ] && echo "Pentium III(TM)-ISA/PCI"
|