build: rename stage1 -> init

This commit is contained in:
Jonathan Boulle
2014-11-13 23:38:34 -08:00
parent 7f51ef32f1
commit 6dc57a7281
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -16,5 +16,5 @@ eval $(go env)
echo "Building rkt (stage0)..."
go build -o $GOBIN/rkt ${REPO_PATH}/stage0
echo "Building stage1..."
go build -o $GOBIN/stage1 ${REPO_PATH}/stage1
echo "Building init (stage1)..."
go build -o $GOBIN/init ${REPO_PATH}/stage1
+1 -1
View File
@@ -53,7 +53,7 @@ var (
func init() {
fs.StringVar(&flagDir, "dir", "", "directory in which to create container filesystem")
fs.StringVar(&flagStage1, "stage1", "./bin/stage1", "path to stage1 binary")
fs.StringVar(&flagStage1, "stage1-init", "./bin/init", "path to stage1 binary")
fs.Var(&flagVolumes, "volume", "volumes to mount into the shared container environment")
flagVolumes = volumeMap{}
}