summaryrefslogtreecommitdiff
path: root/.zsh/zshenv/80_go
blob: fc4371511f2d55225497c564fe9548d0d60d1d5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# zshenv/80_go
#
# Set variables related to the Go programming language
#
# Copyright © 2010-2013 Tobias Klauser <tklauser@distanz.ch>
# 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
  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
table>
arc: axs10x - add support of ARC PGU
Synopsys DesignWare ARC SDP boards sport ARC SDP display controller attached to ADV7511 HDMI encoder. That change adds desctiption of both ARC PGU and ADV7511 in ARC SDP'd base-board Device Tree. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Rob Herring <robh+dt@kernel.org> Cc: Pawel Moll <pawel.moll@arm.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Ian Campbell <ijc+devicetree@hellion.org.uk> Cc: Kumar Gala <galak@codeaurora.org> Cc: Vineet Gupta <vgupta@synopsys.com> Cc: devicetree@vger.kernel.org Cc: linux-snps-arc@lists.infradead.org
Diffstat