Move to /usr prefix.

- This is much more standard and replaces /image in sysa and is the
  standard in sysc (avoids many issues).
- GCC needs to have a file created for some unknown reason.
- Checksums updated.
This commit is contained in:
fosslinux 2021-07-26 15:25:15 +10:00
parent ddd4f1bc81
commit b93a931a53
104 changed files with 659 additions and 722 deletions

View file

@ -1 +1 @@
ec17b6489aeb96cbc6cb554c232e65867da5544bd62fc0fd81d91148c3f85de6 /image/bin/perl
c3e271bcefe1389a8e96a9a6b1cdec7d5aaa421f0dbea9b37c542bba5ab85eba /usr/bin/perl

View file

@ -1,9 +1,10 @@
// SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
// SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
// SPDX-License-Identifier: GPL-3.0-or-later
#define MEM_ALIGNBYTES 8
#define BIN "/image/bin"
#define BIN "/usr/bin"
#define BYTEORDER 0x4321
#define CPPSTDIN "tcc -E"
#define CPPMINUS "-"
@ -54,11 +55,11 @@
#define INTSIZE 4
#define Off_t off_t
#define PRIVLIB "/image/lib/perl5"
#define PRIVLIB "/usr/lib/perl5"
#define _(args) args
#define SCRIPTDIR "/image/bin"
#define SCRIPTDIR "/usr/bin"
#define SIG_NAME "ZERO","HUP","INT","QUIT","ILL","TRAP","IOT","BUS","FPE","KILL","USR1","SEGV","USR2","PIPE","ALRM","TERM","STKFLT","CHLD","CONT","STOP","TSTP","TTIN","TTOU","URG","XCPU","XFSZ","VTALRM","PROF","WINCH", "IO", "POLL", "PWR", "SYS", "UNUSED", 0
#define SIG_NUM 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0
@ -68,8 +69,8 @@
#define STDCHAR char
#define Uid_t uid_t
#define LOC_SED "/image/bin/sed"
#define ARCHLIB "/image/lib/perl5/"
#define LOC_SED "/usr/bin/sed"
#define ARCHLIB "/usr/lib/perl5/"
#define CAT2(a,b) a##b
#define STRINGIFY(a) "a"
@ -95,7 +96,7 @@
#define SH_PATH "/bin/sh"
#define ARCHNAME "i386-linux"
#define BIN_EXP "/image/bin"
#define BIN_EXP "/usr/bin"
#define NVSIZE 8 /* sizeof(double) */
#define UVSIZE 4 /* sizeof(long) on i386 */