github.com/u-root/u-root@v7.0.1-0.20200915234505-ad7babab0a8e+incompatible/pkg/boot/stboot/stboot.go (about)

     1  // Copyright 2018 the u-root Authors. All rights reserved
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package stboot
     6  
     7  const (
     8  	// BallName is the file name of the archive, which is expected to contain
     9  	// the stboot configuration file along with the corresponding files
    10  	BallName string = "stboot.ball"
    11  	// ConfigName is the name of the stboot configuration file
    12  	ConfigName string = "stconfig.json"
    13  	//HostVarsName is the name of file containing host-specific data
    14  	HostVarsName string = "hostvars.json"
    15  )