source: builder/uname @ f9ce31e

perl-5.22
Last change on this file since f9ce31e was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100644
File size: 388 bytes
Line 
1#!/bin/bash
2case "$@" in
3        (-a) echo "Linux syn-3 #KVER# #1 Thu Sep 15 13:33:41 CEST 2005 i586 Syn-3 CPU core Syn-3 GNU/Linux";;
4        (-s) echo "Linux";;
5        (-n) echo "syn-3";;
6        (-r) echo "#KVER#";;
7        (-v) echo "#1 Thu Sep 15 13:33:41 CEST 2005";;
8        (-m) echo "i586";;
9        (-p) echo "Syn-3 CPU core";;
10        (-i) echo "Syn-3";;
11        (-o) echo "GNU/Linux";;
12esac
13
14if [ "x$@" == "x" ]; then
15    echo "Linux"
16fi
Note: See TracBrowser for help on using the repository browser.