about summary refs log tree commit diff
path: root/src/linker.ld
diff options
context:
space:
mode:
authorYour Name <you@example.com>2020-06-25 16:26:46 +0200
committerYour Name <you@example.com>2020-06-25 16:26:46 +0200
commit4f6bdc1eccf4ddf0881091db568a682002048496 (patch)
tree0e1177a75299c9a4a8b253045e37922c7f0830cc /src/linker.ld
parentShell: added date command (diff)
downloadpOS-4f6bdc1eccf4ddf0881091db568a682002048496.tar.gz
pOS-4f6bdc1eccf4ddf0881091db568a682002048496.tar.bz2
pOS-4f6bdc1eccf4ddf0881091db568a682002048496.zip
Base: added an end symbol to the linker to signify the end of mem used
by the kernel
Diffstat (limited to 'src/linker.ld')
-rw-r--r--src/linker.ld2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/linker.ld b/src/linker.ld
index 141428c..aa492e5 100644
--- a/src/linker.ld
+++ b/src/linker.ld
@@ -25,4 +25,6 @@ SECTIONS
 		*(COMMON)
 		*(.bss)
 	}
+
+        end = .;
 }