Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
google
GitHub Repository: google/crosvm
Path: blob/main/kernel_loader/src/test_elf.ld
5394 views
/* Copyright 2022 The ChromiumOS Authors All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* Load the kernel starting at paddr 0x200000 */
MEMORY {
    VMA : ORIGIN = 0x00200000, LENGTH = 0x200000
}

SECTIONS {
  .rodata : { *(.rodata) } > VMA
  .text : { *(.text) } > VMA
}