# zshenv/80_go # # Set variables related to the Go programming language # # Copyright © 2010-2013 Tobias Klauser # Released under the terms of the Artistic Licence 2.0 # # Source repository: git://git.distanz.ch/dotfiles/zsh.git _GOROOT=/opt/local/go/ if [ -d $_GOROOT ] ; then export GOROOT=$_GOROOT export GOPATH=$HOME/src/gospace/ arch="$(uname -m)" case "$arch" in x86_64) export GOARCH="amd64";; i*86) export GOARCH="386";; *) export GOARCH="unsupported";; esac os="$(uname)" case "$os" in Linux) export GOOS="linux";; Darwin) export GOOS="darwin";; *) export GOOS="unsupported";; esac path_append $GOROOT/bin fi # vim:ft=zsh g src='/cgit.png' alt='cgit logo'/> index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/net/dsa/mv88e6xxx/chip.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/net/dsa/mv88e6xxx/chip.c b/drivers/net/dsa/mv88e6xxx/chip.c