1
0
mirror of https://github.com/rancher/os.git synced 2025-08-31 22:32:14 +00:00

Multi-arch build

Currently, for amd64 (the default) and arm.
Run `dapper make ARCH=arm rootfs` to build rootfs.tar.gz for arm.
This commit is contained in:
Ivan Mikushin
2016-01-15 18:18:30 +05:00
parent 3a0aebe738
commit 2f27271a2c
18 changed files with 531 additions and 73 deletions

View File

@@ -27,7 +27,7 @@ func findImages(cfg *config.CloudConfig) ([]string, error) {
dir, err := os.Open(config.IMAGES_PATH)
if os.IsNotExist(err) {
log.Debugf("Not loading images, %s does not exist")
log.Debugf("Not loading images, %s does not exist", config.IMAGES_PATH)
return result, nil
}
if err != nil {