github.com/ratrocket/u-root@v0.0.0-20180201221235-1cf9f48ee2cf/pkg/kexec/kexex_linux_other.go (about) 1 // +build linux,!amd64 2 3 // Copyright 2015-2017 the u-root Authors. All rights reserved 4 // Use of this source code is governed by a BSD-style 5 // license that can be found in the LICENSE file. 6 7 package kexec 8 9 import ( 10 "os" 11 "syscall" 12 ) 13 14 func FileLoad(kernel, ramfs *os.File, cmdline string) error { 15 return syscall.ENOSYS 16 }