mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-23 04:47:34 +08:00
add995c32e
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4200 7fd9a85b-ad96-42d3-883c-3090e2eb8679
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"
|