From 0476248f648ccddea9bdf9bae9095c3231e6643d Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 26 Jan 2024 15:37:37 +0100 Subject: Kernel: Retarget AMD64 according to spec. Kernel/Toolchain: Now move hKernel to /System/ when building the system. MPT: Fix API. newBoot: This is the priority, get a standard file layout to load the kernel at BK_START_KERNEL (0x00080000) Signed-off-by: Amlal El Mahrouss --- Linker/PowerPC.ld | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Linker/PowerPC.ld (limited to 'Linker/PowerPC.ld') diff --git a/Linker/PowerPC.ld b/Linker/PowerPC.ld deleted file mode 100644 index 722a86b8..00000000 --- a/Linker/PowerPC.ld +++ /dev/null @@ -1,21 +0,0 @@ -ENTRY(_start) - -SECTIONS -{ - . = 0x02000000; - .text BLOCK(4K) : ALIGN(4K) - { - *(.text) - } - . = 0x02100000; - .data BLOCK(4K) : ALIGN(4K) - { - - *(.rodata) - *(.data) - } - .bss BLOCK(4K) (NOLOAD) : ALIGN(4K) - { - *(.bss) - } -} \ No newline at end of file -- cgit v1.2.3