mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 18:35:24 +01:00
- This idea originates from very early in the project and was, at the
time, a very easy way to categorise things.
- Now, it doesn't really make much sense - it is fairly arbitary, often
occuring when there is a change in kernel, but not from builder-hex0
to fiwix, and sysb is in reality completely unnecessary.
- In short, the sys* stuff is a bit of a mess that makes the project
more difficult to understand.
- This puts everything down into one folder and has a manifest file that
is used to generate the build scripts on the fly rather than using
coded scripts.
- This is created in the "seed" stage.
stage0-posix -- (calls) --> seed -- (generates) --> main steps
Alongside this change there are a variety of other smaller fixups to the
general structure of the live-bootstrap rootfs.
- Creating a rootfs has become much simpler and is defined as code in
go.sh. The new structure, for an about-to-be booted system, is
/
-- /steps (direct copy of steps/)
-- /distfiles (direct copy of distfiles/)
-- all files from seed/*
-- all files from seed/stage0-posix/*
- There is no longer such a thing as /usr/include/musl, this didn't
really make any sense, as musl is the final libc used. Rather, to
separate musl and mes, we have /usr/include/mes, which is much easier
to work with.
- This also makes mes easier to blow away later.
- A few things that weren't properly in packages have been changed;
checksum-transcriber, simple-patch, kexec-fiwix have all been given
fully qualified package names.
- Highly breaking change, scripts now exist in their package directory
but NOT WITH THE packagename.sh. Rather, they use pass1.sh, pass2.sh,
etc. This avoids manual definition of passes.
- Ditto with patches; default directory is patches, but then any patch
series specific to a pass are named patches-passX.
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
|
|
*
|
|
* SPDX-License-Identifier: Python-2.0.1
|
|
*
|
|
* Reimplmentation of token.py main() in C, to break bootstrapping loop
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#define MAX_LINE 128
|
|
|
|
int main(int argc, char** argv) {
|
|
char *filename = argv[1];
|
|
FILE *orig = fopen(filename, "r");
|
|
/* Read-write until starter line */
|
|
char *line = malloc(MAX_LINE);
|
|
do {
|
|
fgets(line, MAX_LINE, orig);
|
|
puts(line);
|
|
} while (strcmp(line, "#--start constants--\n") != 0);
|
|
/* Perform the actual transformation */
|
|
while (fgets(line, MAX_LINE, stdin) != NULL) {
|
|
/* Transform input into output */
|
|
char *tokena = line + 8;
|
|
char *tokenb = strstr(tokena, "\t");
|
|
if (tokenb == 0) tokenb = strstr(tokena, " ");
|
|
*tokenb = '\0';
|
|
tokenb++;
|
|
while (*tokenb == '\t' || *tokenb == ' ') tokenb++;
|
|
/* Write output line to stdout */
|
|
printf("%s = %s", tokena, tokenb);
|
|
/* For each line also advance orig pointer */
|
|
fgets(line, MAX_LINE, orig);
|
|
/* Cleanup */
|
|
free(line);
|
|
line = malloc(MAX_LINE);
|
|
}
|
|
/* Read-write until end */
|
|
while (fgets(line, MAX_LINE, orig) != NULL) {
|
|
puts(line);
|
|
fflush(stdout);
|
|
}
|
|
}
|