about summary refs log tree commit diff stats
path: root/linux
Commit message (Collapse)AuthorAgeFilesLines
...
* fix a failing test in pack.subxKartik K. Agaram2021-03-152-5/+68
|
* boot.subx is now clean SubXKartik K. Agaram2021-03-152-1/+27
|
* .Kartik K. Agaram2021-03-152-16/+63
|
* .Kartik K. Agaram2021-03-146-31/+28
|
* .Kartik K. Agaram2021-03-142-1/+28
|
* treat boot.hex as a SubX fileKartik K. Agaram2021-03-142-45/+45
|
* survey_baremetal: padding between segmentsKartik K. Agaram2021-03-142-10/+552
| | | | Optional.
* survey_baremetal: support /imm8Kartik K. Agaram2021-03-142-2/+14
|
* survey: document starting address of each segmentKartik K. Agaram2021-03-142-15/+80
|
* some cleanup in a translation phaseKartik K. Agaram2021-03-134-30/+31
|
* .Kartik Agaram2021-03-121-0/+4
|
* some tweaks while updating mu-normieKartik Agaram2021-03-123-4/+6
|
* .Kartik K. Agaram2021-03-092-17/+18
|
* make the library reference easier to findKartik K. Agaram2021-03-091-1/+2
|
* .Kartik K. Agaram2021-03-091-35/+14
|
* update vocabulary documentationKartik K. Agaram2021-03-085-11/+383
| | | | Top-level and linux/ now have separate vocabulary.md files.
* .Kartik K. Agaram2021-03-083-12/+18
|
* 7867Kartik K. Agaram2021-03-0735-554/+554
|
* 7847Kartik K. Agaram2021-03-0431-75/+75
|
* 7846Kartik K. Agaram2021-03-0428-37/+32
|
* 7843 - clean up README after directory reorgKartik K. Agaram2021-03-034-15/+160
|
* 7842 - new directory organizationKartik K. Agaram2021-03-03229-0/+425626
Baremetal is now the default build target and therefore has its sources at the top-level. Baremetal programs build using the phase-2 Mu toolchain that requires a Linux kernel. This phase-2 codebase which used to be at the top-level is now under the linux/ directory. Finally, the phase-2 toolchain, while self-hosting, has a way to bootstrap from a C implementation, which is now stored in linux/bootstrap. The bootstrap C implementation uses some literate programming tools that are now in linux/bootstrap/tools. So the whole thing has gotten inverted. Each directory should build one artifact and include the main sources (along with standard library). Tools used for building it are relegated to sub-directories, even though those tools are often useful in their own right, and have had lots of interesting programs written using them. A couple of things have gotten dropped in this process: - I had old ways to run on just a Linux kernel, or with a Soso kernel. No more. - I had some old tooling for running a single test at the cursor. I haven't used that lately. Maybe I'll bring it back one day. The reorg isn't done yet. Still to do: - redo documentation everywhere. All the README files, all other markdown, particularly vocabulary.md. - clean up how-to-run comments at the start of programs everywhere - rethink what to do with the html/ directory. Do we even want to keep supporting it? In spite of these shortcomings, all the scripts at the top-level, linux/ and linux/bootstrap are working. The names of the scripts also feel reasonable. This is a good milestone to take stock at.