Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/samples/acrn/guest.ld
26285 views
/* SPDX-License-Identifier: GPL-2.0 */
OUTPUT_FORMAT(binary)
SECTIONS
{
        .start : { *(.start) }
        .text : { *(.text*) }
        .rodata : { *(.rodata) }
        .data : { *(.data) }
}