blob: 0fb93be37015e27f656dafa39639e9ccea19a48a [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// The Fuchsia Go Grand Unified Binary is a binary that contains several other
// binaries, so done in order to reduce the amount of disk space and shared
// memory required to run Fuchsia subsystems written in Go. This combination
// saves >=50% of storage and ram cost on a running system at boot/update time.
package main
import (
"log"
"os"
"path/filepath"
"strings"
"amber/amberctl"
"netstack"
"system_updater"
"fuchsia.googlesource.com/pmd/pkgsvr"
)
func main() {
if len(os.Args) < 1 {
log.Println("software delivery grand unified binary: cannot determine binary, no argv 0")
os.Exit(1)
}
name := filepath.Base(os.Args[0])
name = strings.SplitN(name, ".", 2)[0]
switch name {
case "pkgsvr":
pkgsvr.Main()
case "amberctl", "amber_ctl":
amberctl.Main()
case "system_updater":
system_updater.Main()
case "netstack":
netstack.Main()
default:
log.Printf("software delivery grand unified binary: unknown inner binary name: %s (%s)", name, os.Args[0])
os.Exit(1)
}
}