umka_os: Load very basic userspace KolibriOS app

This commit is contained in:
2022-05-26 16:45:36 +04:00
parent ce6ad3efa6
commit d479f8a121
10 changed files with 145 additions and 23 deletions
+19 -4
View File
@@ -1,7 +1,23 @@
/*
MEMORY
{
pew : ORIGIN = 0, LENGTH = 64K
}
SECTIONS
{
. = ALIGN(65536);
.data.aligned :
.aou 0:
{
*(.app)
} : NONE
}
INSERT BEFORE .interp;
*/
SECTIONS
{
.data.aligned BLOCK(65536) :
{
*(SORT_BY_NAME(.data.align*))
}
@@ -11,8 +27,7 @@ INSERT AFTER .data;
SECTIONS
{
. = ALIGN(65536);
.bss.aligned :
.bss.aligned BLOCK(65536) :
{
*(SORT_BY_NAME(.bss.align*))
}