Readme and license
This commit is contained in:
+7
-3
@@ -1,3 +1,7 @@
|
||||
/* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
* Copyright (c) 2026 0xKSor
|
||||
*/
|
||||
|
||||
ENTRY(_start)
|
||||
|
||||
KERNEL_PA = 0x40100000;
|
||||
@@ -23,12 +27,12 @@ SECTIONS
|
||||
.rodata : AT(ADDR(.rodata) - KERNEL_VA + KERNEL_PA) {
|
||||
*(.rodata*)
|
||||
} :text
|
||||
|
||||
|
||||
. = ALIGN(4096);
|
||||
.data : AT(ADDR(.data) - KERNEL_VA + KERNEL_PA) {
|
||||
*(.data*)
|
||||
} :data
|
||||
|
||||
|
||||
. = ALIGN(8);
|
||||
.bss : AT(ADDR(.bss) - KERNEL_VA + KERNEL_PA) {
|
||||
__bss_start = .;
|
||||
@@ -39,4 +43,4 @@ SECTIONS
|
||||
|
||||
. = ALIGN(4096);
|
||||
_kernelEnd = .;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user