Files
snapd/bootloader/androidboot.go

99 lines
2.4 KiB
Go
Raw Permalink Normal View History

// -*- Mode: Go; indent-tabs-mode: t -*-
/*
2017-05-17 14:56:55 +02:00
* Copyright (C) 2017 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package bootloader
import (
2017-04-27 11:08:54 +02:00
"os"
"path/filepath"
"github.com/snapcore/snapd/bootloader/androidbootenv"
"github.com/snapcore/snapd/osutil"
"github.com/snapcore/snapd/snap"
)
type androidboot struct {
rootdir string
}
// newAndroidboot creates a new Androidboot bootloader object
func newAndroidBoot(rootdir string, _ *Options) Bootloader {
a := &androidboot{rootdir: rootdir}
return a
}
func (a *androidboot) Name() string {
return "androidboot"
}
func (a *androidboot) dir() string {
if a.rootdir == "" {
panic("internal error: unset rootdir")
}
return filepath.Join(a.rootdir, "/boot/androidboot")
}
func (a *androidboot) InstallBootConfig(gadgetDir string, opts *Options) error {
gadgetFile := filepath.Join(gadgetDir, a.Name()+".conf")
systemFile := a.configFile()
return genericInstallBootConfig(gadgetFile, systemFile)
}
func (a *androidboot) Present() (bool, error) {
return osutil.FileExists(a.configFile()), nil
}
func (a *androidboot) configFile() string {
return filepath.Join(a.dir(), "androidboot.env")
}
func (a *androidboot) GetBootVars(names ...string) (map[string]string, error) {
env := androidbootenv.NewEnv(a.configFile())
2017-04-27 11:08:54 +02:00
if err := env.Load(); err != nil {
return nil, err
}
2017-05-17 14:56:55 +02:00
out := make(map[string]string, len(names))
2017-04-27 11:08:54 +02:00
for _, name := range names {
out[name] = env.Get(name)
}
return out, nil
}
func (a *androidboot) SetBootVars(values map[string]string) error {
env := androidbootenv.NewEnv(a.configFile())
2017-04-27 11:08:54 +02:00
if err := env.Load(); err != nil && !os.IsNotExist(err) {
return err
}
2017-04-27 11:08:54 +02:00
for k, v := range values {
env.Set(k, v)
}
return env.Save()
}
func (a *androidboot) ExtractKernelAssets(s snap.PlaceInfo, snapf snap.Container) error {
return nil
}
func (a *androidboot) RemoveKernelAssets(s snap.PlaceInfo) error {
return nil
}