- Timestamp:
- 2021-08-22T19:08:44Z (4 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c21cc26
- Parents:
- 95b7d4df
- Location:
- boot/arch/arm64
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm64/include/arch/arch.h
r95b7d4df r06f10ac 41 41 42 42 #define BOOT_OFFSET 0x80000 43 43 44 #ifndef __ASSEMBLER__ 44 #define KA2PA(x) (((uintptr_t) (x)) - UINT64_C(0xffffffff 80000000))45 #define KA2PA(x) (((uintptr_t) (x)) - UINT64_C(0xffffffff00000000)) 45 46 #endif 46 47 -
boot/arch/arm64/meson.build
r95b7d4df r06f10ac 29 29 BUILD = true 30 30 31 POST_OUTPUT = 'image.iso' 32 POSTBUILD = 'grub' 33 GRUB_LOADER = 'chainloader' 31 if MACHINE == 'virt' 32 POST_OUTPUT = 'image.iso' 33 POSTBUILD = 'grub' 34 GRUB_LOADER = 'chainloader' 35 endif 36 37 if MACHINE == 'hikey960' 38 POSTBUILD = 'raw' 39 POST_OUTPUT = 'image.boot' 40 endif 34 41 35 42 # Request binary output. The ARM64 port manually prepares the .text
Note:
See TracChangeset
for help on using the changeset viewer.