summaryrefslogtreecommitdiffstats
path: root/bsps/x86_64/amd64/start/linkcmds (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps/amd64: add a new EFI-based variant of AMD64 BSPKarel Gardas2023-04-291-1/+5
| | | | | | | | | | The new amd64efi BSP supports: - multiboot2 boot format. Runs well with GRUB. - console based on either EFI simple text output or GOP-based framebuffer - clock based on EFI event/timer API - early console using either hard-wired PC-AT serial or just memory buffer - with EFI support disabled the BSP is more or less equivalent to amd64 BSP with multiboot2 support
* bsps: Sort .noinit* sectionsSebastian Huber2022-07-151-1/+1
| | | | | | | | Sort the .noinit* input sections by name first, then by alignment if two sections have the same name. This allows the placement of begin/end symbols to initialize some areas with a special value. Update #4678.
* bsps: Support RTEMS_NOINIT in linkcmdsSebastian Huber2021-05-021-0/+5
| | | | Update #3866.
* bsps: Add RamEnd to linker command filesSebastian Huber2020-02-041-0/+1
| | | | Update #3838.
* Changed slightly awkward sentence structurezehata2018-11-221-5/+4
|
* bsps/x86_64: Use interrupt stack for init stackSebastian Huber2018-11-191-0/+1
| | | | Update #3459.
* bsps/x86_64: Reduce default RamSize to 1GiBAmaan Cheval2018-08-131-3/+3
| | | | | | | Simulators may not always be able to allocate 4GiB easily, and using an artificially lower RAM may cause a broken heap. Updates #2898.
* bsp/x86_64: Minimal bootable BSPAmaan Cheval2018-07-111-0/+281
Current state: - Basic context initialization and switching code. - Stubbed console (empty functions). - Mostly functional linker script (may need tweaks if we ever want to move away from the large code model (see: CPU_CFLAGS). - Fully functional boot, by using FreeBSD's bootloader to load RTEMS's ELF for UEFI-awareness. In short, the current state with this commit lets us boot, go through the system initialization functions, and then call user application's Init task too. Updates #2898.