# zshenv/80_go # # Set variables related to the Go programming language # # Copyright © 2010-2017 Tobias Klauser # Released under the terms of the Artistic Licence 2.0 # # Source repository: git://git.distanz.ch/dotfiles/zsh.git _GOROOT="/usr/local/go" if [ -d $_GOROOT ] ; then export GOPATH="$HOME/go" 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 if [ -d $GOPATH/bin ] ; then path_append $GOPATH/bin fi fi alias gotip=$HOME/src/go/bin/go export GO111MODULE=on export GOPROXY=direct export GOSUMDB=off # vim:ft=zsh ux/net-next.git/'>net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJuergen Gross <jgross@suse.com>2016-04-22 09:35:04 +0200
committerIngo Molnar <mingo@kernel.org>2016-04-22 10:03:24 +0200
commit78b0634d2851d30ec5d289aefbae23b141de67f0 (patch)
tree878e5240d567682aadd1e3fa817d2fc4b4982bc5 /Documentation
parent1e2ae9ec072f3b7887f456426bc2cf23b80f661a (diff)
x86/doc: Correct limits in Documentation/x86/x86_64/mm.txt
Correct the size of the module mapping space and the maximum available physical memory size of current processors. Signed-off-by: Juergen Gross <jgross@suse.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: corbet@lwn.net Cc: linux-doc@vger.kernel.org Link: http://lkml.kernel.org/r/1461310504-15977-1-git-send-email-jgross@suse.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'Documentation')