mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
Both crates are based on Firecracker commit 9cdb5b2. They are ported to the new memory model and tests have been fixed accordingly. Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
8 lines
285 B
Rust
8 lines
285 B
Rust
// Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
/// Kernel command line start address.
|
|
pub const CMDLINE_START: usize = 0x0;
|
|
/// Kernel command line start address maximum size.
|
|
pub const CMDLINE_MAX_SIZE: usize = 0x0;
|