linux-loader 0.13.2

A Linux kernel image loading crate.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright © 2020, Oracle and/or its affiliates.
//
// Copyright (c) 2019 Intel Corporation. All rights reserved.
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Copyright 2017 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE-BSD-3-Clause file.
//
// SPDX-License-Identifier: Apache-2.0 AND BSD-3-Clause

//! Traits and structs for configuring and loading boot parameters on `x86_64`.

#![cfg(any(target_arch = "x86", target_arch = "x86_64"))]

pub mod linux;
pub mod pvh;