summaryrefslogtreecommitdiff
path: root/farm
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2020-03-16 10:23:27 +0100
committerGeert Uytterhoeven <geert+renesas@glider.be>2020-03-16 10:23:27 +0100
commit1a43a66986f91df9f0d0a2377394deab74422fb5 (patch)
treed9643ba3629f0de5466833339abfde6b9e2920fb /farm
parent7457c4d2416d39b53ed7a55184fa39fed4ba2d8e (diff)
farm: magnus: Add basic tools
Add basic tools to use Magnus' board farm. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Diffstat (limited to 'farm')
-rwxr-xr-xfarm/magnus/screen-magnus10
-rw-r--r--farm/magnus/screenrc114
-rwxr-xr-xfarm/magnus/tftpd-magnus19
3 files changed, 143 insertions, 0 deletions
diff --git a/farm/magnus/screen-magnus b/farm/magnus/screen-magnus
new file mode 100755
index 0000000..a54c8f9
--- /dev/null
+++ b/farm/magnus/screen-magnus
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+if [ $# == 0 ]; then
+ TARGET=${0#*-}
+else
+ TARGET=$1
+fi
+
+scp $(dirname $0)/screenrc $TARGET-mgr:
+ssh $TARGET-mgr -t screen -x -R -S ttyS1 -c screenrc /dev/ttyS1
diff --git a/farm/magnus/screenrc b/farm/magnus/screenrc
new file mode 100644
index 0000000..998418c
--- /dev/null
+++ b/farm/magnus/screenrc
@@ -0,0 +1,114 @@
+# $Id: screenrc,v 1.15 2003/10/08 11:39:03 zal Exp $
+#
+# /etc/screenrc
+#
+# This is the system wide screenrc.
+#
+# You can use this file to change the default behavior of screen system wide
+# or copy it to ~/.screenrc and use it as a starting point for your own
+# settings.
+#
+# Commands in this file are used to set options, bind screen functions to
+# keys, redefine terminal capabilities, and to automatically establish one or
+# more windows at the beginning of your screen session.
+#
+# This is not a comprehensive list of options, look at the screen manual for
+# details on everything that you can put in this file.
+#
+
+# ------------------------------------------------------------------------------
+# SCREEN SETTINGS
+# ------------------------------------------------------------------------------
+
+#startup_message off
+#nethack on
+
+#defflow on # will force screen to process ^S/^Q
+deflogin on
+#autodetach off
+
+# turn visual bell on
+vbell on
+vbell_msg " Wuff ---- Wuff!! "
+
+# define a bigger scrollback, default is 100 lines
+defscrollback 1024
+
+# ------------------------------------------------------------------------------
+# SCREEN KEYBINDINGS
+# ------------------------------------------------------------------------------
+
+# Remove some stupid / dangerous key bindings
+bind ^k
+#bind L
+bind ^\
+# Make them better
+bind \\ quit
+bind K kill
+bind I login on
+bind O login off
+bind } history
+
+# An example of a "screen scraper" which will launch urlview on the current
+# screen window
+#
+#bind ^B eval "hardcopy_append off" "hardcopy -h $HOME/.screen-urlview" "screen urlview $HOME/.screen-urlview"
+
+# ------------------------------------------------------------------------------
+# TERMINAL SETTINGS
+# ------------------------------------------------------------------------------
+
+# The vt100 description does not mention "dl". *sigh*
+termcapinfo vt100 dl=5\E[M
+
+# turn sending of screen messages to hardstatus off
+hardstatus off
+# Set the hardstatus prop on gui terms to set the titlebar/icon title
+termcapinfo xterm*|rxvt*|kterm*|Eterm* hs:ts=\E]0;:fs=\007:ds=\E]0;\007
+# use this for the hard status string
+hardstatus string "%h%? users: %u%?"
+
+# An alternative hardstatus to display a bar at the bottom listing the
+# windownames and highlighting the current windowname in blue. (This is only
+# enabled if there is no hardstatus setting for your terminal)
+#
+#hardstatus lastline "%-Lw%{= BW}%50>%n%f* %t%{-}%+Lw%<"
+
+# set these terminals up to be 'optimal' instead of vt100
+termcapinfo xterm*|linux*|rxvt*|Eterm* OP
+
+# Change the xterm initialization string from is2=\E[!p\E[?3;4l\E[4l\E>
+# (This fixes the "Aborted because of window size change" konsole symptoms found
+# in bug #134198)
+termcapinfo xterm 'is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l'
+
+# To get screen to add lines to xterm's scrollback buffer, uncomment the
+# following termcapinfo line which tells xterm to use the normal screen buffer
+# (which has scrollback), not the alternate screen buffer.
+#
+#termcapinfo xterm|xterms|xs|rxvt ti@:te@
+
+# Enable non-blocking mode to better cope with flaky ssh connections.
+defnonblock 5
+
+# ------------------------------------------------------------------------------
+# STARTUP SCREENS
+# ------------------------------------------------------------------------------
+
+# Example of automatically running some programs in windows on screen startup.
+#
+# The following will open top in the first window, an ssh session to monkey
+# in the next window, and then open mutt and tail in windows 8 and 9
+# respectively.
+#
+# screen top
+# screen -t monkey ssh monkey
+# screen -t mail 8 mutt
+# screen -t daemon 9 tail -f /var/log/daemon.log
+
+# custom C-a x handling
+bind x detach
+bind ^x detach
+
+# fix scrollback
+termcapinfo xterm* ti@:te@
diff --git a/farm/magnus/tftpd-magnus b/farm/magnus/tftpd-magnus
new file mode 100755
index 0000000..4ec30e2
--- /dev/null
+++ b/farm/magnus/tftpd-magnus
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+TARGET=${0#*-}
+
+case "$1" in
+start)
+ ssh $TARGET-mgr qemu-system-i386 -machine none -net nic,vlan=0 \
+ -net tap,vlan=0,ifname=tap0,script=no,downscript=no \
+ -net user,vlan=0,tftp=/home/user/ &
+ ;;
+
+stop)
+ ssh $TARGET-mgr killall qemu-system-i386
+ ;;
+
+*)
+ echo "Usage: $0 (start|stop)"
+ exit 1
+esac