12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*++
- Copyright (c) 2014 Minoca Corp. All Rights Reserved
- Module Name:
- PandaBoard UEFI Runtime
- Abstract:
- This module implements the PandaBoard runtime firmware, which continues
- to be loaded and provide services to the OS kernel even after the boot
- environment has been destroyed. It is never unloaded.
- Author:
- Evan Green 19-Mar-2014
- Environment:
- Firmware
- --*/
- function build() {
- sources = [
- "i2c.c",
- "pmic.c",
- "reboot.c",
- "rtc.c",
- "runtime.c"
- ];
- libs = [
- "//uefi/core/rtlib:rtlib",
- "//uefi/archlib:uefiarch"
- ];
- includes = [
- "$//uefi/include"
- ];
- sources_config = {
- "CFLAGS": ["-fshort-wchar"],
- };
- link_ldflags = [
- "-pie",
- "-nostdlib",
- "-Wl,--no-wchar-size-warning",
- "-static"
- ];
- link_config = {
- "LDFLAGS": link_ldflags
- };
- elf = {
- "label": "pandart.elf",
- "inputs": sources + libs,
- "sources_config": sources_config,
- "includes": includes,
- "entry": "EfiRuntimeCoreEntry",
- "linker_script": "$//uefi/include/link_arm.x",
- "config": link_config
- };
- entries = executable(elf);
- entries += uefi_runtime_ffs("pandart");
- return entries;
- }
- return build();
|