Implement basic variables (to hide pointers from logs)

This commit is contained in:
2022-05-31 17:43:41 +04:00
parent 20b2013007
commit 5314ef2cae
9 changed files with 505 additions and 280 deletions
+12 -2
View File
@@ -17,7 +17,17 @@ INSERT BEFORE .interp;
SECTIONS
{
.data.aligned BLOCK(65536) :
.data.boot BLOCK(0x1000) :
{
*(.data.boot)
}
}
INSERT BEFORE .data;
SECTIONS
{
.data.aligned BLOCK(0x10000) :
{
*(SORT_BY_NAME(.data.align*))
}
@@ -27,7 +37,7 @@ INSERT AFTER .data;
SECTIONS
{
.bss.aligned BLOCK(65536) :
.bss.aligned BLOCK(0x10000) :
{
*(SORT_BY_NAME(.bss.align*))
}