github.com/jlowellwofford/u-root@v1.0.0/pkg/kexec/kexec_linux_other.go (about)

     1  // Copyright 2015-2017 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  // +build linux,!amd64
     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  }