mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-22 19:16:32 +01:00
Add mes and mescc-tools-extra
mescc-tools-extra contains two important tools: - cp - chmod mes first builds itself from a mes 0.21 seed as used by guix, and then builds a mes 0.22 and then mes 0.22 using that created mes 0.22. It does /not/ use bootstrap.sh as we don't have a proper shell at this point, it has been manually adapted for kaem.
This commit is contained in:
parent
2706e07556
commit
649d7b68dc
1029 changed files with 120985 additions and 18 deletions
30
sysa/mes-0.22/lib/x86_64-mes-mescc/exit-42.c
Normal file
30
sysa/mes-0.22/lib/x86_64-mes-mescc/exit-42.c
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
/* -*-comment-start: "//";comment-end:""-*-
|
||||
* GNU Mes --- Maxwell Equations of Software
|
||||
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||
*
|
||||
* This file is part of GNU Mes.
|
||||
*
|
||||
* GNU Mes is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or (at
|
||||
* your option) any later version.
|
||||
*
|
||||
* GNU Mes is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
int
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
#if 0
|
||||
asm ("mov $00,%rdi");
|
||||
asm ("mov $0x3c,%rax");
|
||||
asm ("syscall");
|
||||
#endif
|
||||
return 42;
|
||||
}
|
||||
72
sysa/mes-0.22/lib/x86_64-mes-mescc/setjmp.c
Normal file
72
sysa/mes-0.22/lib/x86_64-mes-mescc/setjmp.c
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
/* -*-comment-start: "//";comment-end:""-*-
|
||||
* GNU Mes --- Maxwell Equations of Software
|
||||
* Copyright © 2017,2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||
*
|
||||
* This file is part of GNU Mes.
|
||||
*
|
||||
* GNU Mes is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or (at
|
||||
* your option) any later version.
|
||||
*
|
||||
* GNU Mes is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <setjmp.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
void
|
||||
longjmp (jmp_buf env, int val)
|
||||
{
|
||||
#if 0 //MES_CCAMD64
|
||||
asm ("push___%rdi");
|
||||
#endif
|
||||
val = val == 0 ? 1 : val;
|
||||
#if 0 //MES_CCAMD64
|
||||
asm ("pop____%rdi");
|
||||
asm ("mov____0x8(%rdi),%rbp !0x00"); // env->__bp
|
||||
asm ("mov____0x8(%rdi),%rbx !0x08"); // env->__pc
|
||||
asm ("mov____0x8(%rdi),%rsp !0x10"); // env->__sp
|
||||
asm ("jmp____*%rbx"); // jmp *PC
|
||||
#else
|
||||
asm ("mov____0x8(%rbp),%rbp !0x10"); // env*
|
||||
|
||||
asm ("mov____0x8(%rbp),%rbx !0x08"); // env.__pc
|
||||
asm ("mov____0x8(%rbp),%rsp !0x10"); // env.__sp
|
||||
asm ("mov____0x8(%rbp),%rbp !0x00"); // env.__bp
|
||||
asm ("jmp____*%rbx");
|
||||
#endif
|
||||
// not reached
|
||||
exit (42);
|
||||
}
|
||||
|
||||
int
|
||||
setjmp (__jmp_buf * env)
|
||||
{
|
||||
#if 0 //MES_CCAMD64
|
||||
asm ("mov____%rbp,%rax");
|
||||
asm ("add____$i32,%rax %0x80");
|
||||
|
||||
asm ("mov____0x8(%rax),%rsi !0x00");
|
||||
asm ("mov____%rsi,0x8(%rdi) !0x00");
|
||||
|
||||
asm ("mov____0x8(%rax),%rsi !0x08");
|
||||
asm ("mov____%rsi,0x8(%rdi) !0x08");
|
||||
|
||||
asm ("mov____%rax,%rsi");
|
||||
asm ("add____$i32,%rsi %0x10");
|
||||
asm ("mov____%rsi,0x8(%rdi) !0x10");
|
||||
#else
|
||||
long *p = (long *) &env;
|
||||
env[0].__bp = p[-2];
|
||||
env[0].__pc = p[-1];
|
||||
env[0].__sp = (long) &env;
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue