From 85a8a71149f89b6d9ea296c7e16d9e866028834c Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 2 Sep 1991 14:11:40 +0000 Subject: [PATCH] New installation mechanism --- mach/arm/.distr | 1 + mach/arm/Action | 3 +++ mach/arm/libend/.distr | 2 ++ mach/arm/libend/LIST | 5 +++++ mach/arm/libend/edata.s | 7 +++++++ mach/arm/libend/em_end.s | 14 ++++++++++++++ mach/arm/libend/end.s | 7 +++++++ mach/arm/libend/etext.s | 7 +++++++ mach/em22/.distr | 5 ----- mach/em22/Action | 15 --------------- 10 files changed, 46 insertions(+), 20 deletions(-) create mode 100644 mach/arm/libend/.distr create mode 100644 mach/arm/libend/LIST create mode 100644 mach/arm/libend/edata.s create mode 100644 mach/arm/libend/em_end.s create mode 100644 mach/arm/libend/end.s create mode 100644 mach/arm/libend/etext.s diff --git a/mach/arm/.distr b/mach/arm/.distr index e581b117b..ea3b4ee55 100644 --- a/mach/arm/.distr +++ b/mach/arm/.distr @@ -8,3 +8,4 @@ libem libfp libend libmon +mach_params diff --git a/mach/arm/Action b/mach/arm/Action index 787c595d4..f3f2ab8d7 100644 --- a/mach/arm/Action +++ b/mach/arm/Action @@ -13,6 +13,9 @@ end name "ARM EM library" dir libem end +name "ARM etext,edata,end library" +dir libend +end name "ARM RiscOs library" dir libmon end diff --git a/mach/arm/libend/.distr b/mach/arm/libend/.distr new file mode 100644 index 000000000..b48ec8483 --- /dev/null +++ b/mach/arm/libend/.distr @@ -0,0 +1,2 @@ +LIST +end_s.a diff --git a/mach/arm/libend/LIST b/mach/arm/libend/LIST new file mode 100644 index 000000000..2efbd3eb2 --- /dev/null +++ b/mach/arm/libend/LIST @@ -0,0 +1,5 @@ +end_s.a +edata.s +em_end.s +end.s +etext.s diff --git a/mach/arm/libend/edata.s b/mach/arm/libend/edata.s new file mode 100644 index 000000000..a742b6f11 --- /dev/null +++ b/mach/arm/libend/edata.s @@ -0,0 +1,7 @@ +.sect .text +.sect .rom +.sect .data +.sect .bss +.define _edata +.sect .data +_edata: diff --git a/mach/arm/libend/em_end.s b/mach/arm/libend/em_end.s new file mode 100644 index 000000000..6848f6642 --- /dev/null +++ b/mach/arm/libend/em_end.s @@ -0,0 +1,14 @@ +.sect .text +.sect .rom +.sect .data +.sect .bss +.sect .end ! only for declaration of _end, __end and endbss. +.define endtext,enddata,endbss,__end + + .sect .text +endtext: + .sect .data +enddata: + .sect .end +__end: +endbss: diff --git a/mach/arm/libend/end.s b/mach/arm/libend/end.s new file mode 100644 index 000000000..93a1e6e00 --- /dev/null +++ b/mach/arm/libend/end.s @@ -0,0 +1,7 @@ +.sect .text +.sect .rom +.sect .data +.sect .bss +.define _end +.sect .end ! only for declaration of _end, __end and endbss. +_end: diff --git a/mach/arm/libend/etext.s b/mach/arm/libend/etext.s new file mode 100644 index 000000000..6651ca96e --- /dev/null +++ b/mach/arm/libend/etext.s @@ -0,0 +1,7 @@ +.sect .text +.sect .rom +.sect .data +.sect .bss +.define _etext +.sect .text +_etext: diff --git a/mach/em22/.distr b/mach/em22/.distr index ed1c8309e..0a13fc8a6 100644 --- a/mach/em22/.distr +++ b/mach/em22/.distr @@ -1,6 +1 @@ Action -libbc -libcc -libpc -liboc -libm2 diff --git a/mach/em22/Action b/mach/em22/Action index 095a5d4ec..e69de29bb 100644 --- a/mach/em22/Action +++ b/mach/em22/Action @@ -1,15 +0,0 @@ -name "2-2 Interpreter C libraries" -dir libcc -end -name "2-2 Interpreter Pascal library" -dir libpc -end -name "2-2 Interpreter Basic library" -dir libbc -end -name "2-2 Interpreter Occam library" -dir liboc -end -name "2-2 Interpreter Modula-2 library" -dir libm2 -end -- 2.34.1