Commit Graph

118 Commits

Author SHA1 Message Date
mintsuki c13cc6c84f Revert "build: Make limine-cd-efi.bin 16MiB in size (use FAT16)"
This reverts commit 5db3175b8f.
2023-07-28 04:20:21 -05:00
mintsuki 5db3175b8f build: Make limine-cd-efi.bin 16MiB in size (use FAT16) 2023-06-15 03:17:27 +02:00
mintsuki f8de2a2262 misc: Remove tinf from tree, pull at bootstrap time 2023-06-06 01:53:06 +02:00
mintsuki 447de6d90b build: Remove some empty lines in dist make target 2023-05-03 22:51:14 +02:00
mintsuki 259ab0166e build: Sanitise autoconf substitutions with gmake variables 2023-04-22 12:15:50 +02:00
mintsuki 09e38cc9c4 build: Pass proper warning flags to nasm 2023-04-22 12:14:14 +02:00
mintsuki d1cb337894 build: Reorganise warning flags 2023-04-14 13:41:41 +02:00
mintsuki 7a3e1f7773 misc: Updates for Flanterm rebrand 2023-03-30 05:40:21 +02:00
mintsuki 6861bb803c build: Split test portion of root makefile to own file 2023-03-24 18:56:31 +01:00
mintsuki 411f164b53 build: Use DEFAULT_VAR for all overridable default makefile vars 2023-03-17 21:19:07 +01:00
mintsuki 282d2df6db build: Misc updates for new freestanding-toolchain 2023-03-17 21:19:07 +01:00
mintsuki 852750548e build: Fix up some makefile variable names 2023-03-17 21:19:07 +01:00
mintsuki b040010cec build: configure: Change some variable names to be more friendly 2023-03-17 21:19:07 +01:00
mintsuki 91acfcc0d1 build: Updates for newer freestanding-toolchain 2023-03-14 21:06:49 +01:00
mintsuki ebf5c62b8b misc: Do not remove freestanding-toolchain from release tarball 2023-03-13 21:40:40 +01:00
mintsuki 9c16545862 misc: Use freestanding-toolchain instead of cross-detect 2023-03-13 21:40:40 +01:00
mintsuki db099aa213 docs: LICENSE.md -> LICENSE 2023-03-13 21:40:40 +01:00
mintsuki af495884ba build: Honour CROSS_CPPFLAGS 2023-02-27 01:46:10 +01:00
mintsuki c3a869e185 build: Install markdown docs on install; distclean fix 2023-02-21 03:32:28 +01:00
mintsuki cc6198643e build: Only install limine-deploy.1 man page if built 2023-02-21 03:32:28 +01:00
mintsuki 7cd5abc39d docs: Add man pages for host executables 2023-02-21 03:32:28 +01:00
mintsuki 00f228f750 build: Very minor QOL fixes 2023-02-21 03:32:28 +01:00
mintsuki 2a5d66e99b build: Misc quality-of-life fixes 2023-02-19 10:44:09 +01:00
mintsuki f6282c37bc compress: Replace tinf's inflate implementation with stb_image's zlib 2023-02-15 12:48:14 +01:00
mintsuki 6164580167 build: Further fixes related to cd8188d8 2023-02-12 23:27:04 +01:00
mintsuki 66423cf2ff build: Update for latest cross-detect 2023-02-12 23:27:04 +01:00
mintsuki 958ac86183 build: Misc configure.ac improvements, install-strip fix ups 2023-02-12 23:27:04 +01:00
mintsuki eddc1a1230 build: Fix race condition in root GNUmakefile.in 2023-02-07 05:14:10 +01:00
mintsuki a72d2fc59d misc: Add support for enrolling config blake2b hash in executable 2023-02-07 01:02:09 +01:00
mintsuki ad8151a6a6 term: Move to use external, portable terminal 2022-10-04 22:22:31 +02:00
mintsuki 225b871721 build: Use variables to determine installable files instead of ignoring errors 2022-09-28 02:10:08 +02:00
mintsuki 124b444da7 build: Update install commands to be more quiet on non-fatal fail 2022-09-24 04:35:52 +02:00
mintsuki 58ef3bd8a9 build: Honor LIBS variable 2022-09-20 23:57:29 +02:00
mintsuki 025792e994 build: Honor CPPFLAGS variable 2022-09-20 23:57:29 +02:00
mintsuki 87d0dfa699 build: Further fix test targets 2022-09-05 03:14:16 +02:00
mintsuki ebbf8d7bed misc: Better integration of aarch64 port and test mechanism 2022-09-05 02:17:53 +02:00
mintsuki 1d325927d7 build: Remove unneeded libgcc files in make dist 2022-09-02 01:12:13 +02:00
mintsuki 9eade7fa0f build: Actually pull CC variable from autoconf 2022-08-29 02:35:51 +02:00
mintsuki fde0447802 fs: Drop NTFS support 2022-08-26 00:20:27 +02:00
mintsuki c626e63b56 build: Fix #208 2022-08-22 18:41:32 +02:00
Kacper Słomiński e1f6ac8860
Initial AArch64 port (#205)
* Initial aarch64 port

* Enable chainload on aarch64

No changes necessary since it's all UEFI anyway.

* Add specification for Limine protocol for aarch64

* PROTOCOL: Specify state of information in DT /chosen node

* common: Add spinup code for aarch64

* common: Port elf and term to aarch64

* common: Port vmm to aarch64

Also prepare to drop VMM_FLAG_PRESENT on x86.

* protos: Port limine boot protocol to aarch64

Also drop VMM_FLAG_PRESENT since we never unmap pages anyway.

* test: Add DTB request

* PROTOCOL: Port SMP request to aarch64

* cpu: Add cache maintenance functions for aarch64

* protos/limine, sys: Port SMP to aarch64

Also move common asm macros into a header file.

* test: Start up APs

* vmm: Unify get_next_level and implement large page splitting

* protos/limine: Map framebuffer using correct caching mode on AArch64

* CI: Fix GCC build for aarch64

* entry, menu: Replace uses of naked attribute with separate asm file

GCC does not understand the naked attribute on aarch64, and didn't
understand it for x86 in older versions.
2022-08-18 17:32:54 +02:00
mintsuki 5f1680acc1 build: Misc improvements to makefiles 2022-08-15 17:41:04 +02:00
mintsuki dc3a81cb61 build: Drop support for building GCC toolchain 2022-08-09 13:30:16 +02:00
mintsuki 4422ebd61c build: Get proper mkdir -p from autoconf 2022-08-08 22:00:25 +02:00
mintsuki 82e62a9678 host: Reorganise host-tools layout and add limine-version. Closes #196 2022-07-13 17:17:12 +02:00
mintsuki 0af37b7cf0 fwcfg: Drop support 2022-07-13 06:23:20 +02:00
mintsuki c12a6979f9 build: Remove cross toolchain variable definitions from root makefile 2022-07-08 18:29:54 +02:00
mintsuki 6106285d35 build: Move to using external cross-detect package 2022-07-05 09:14:48 +02:00
mintsuki 2f0d48abe1 build: Undo changes that made reconf impossible in tarball releases. Fixes #187 2022-07-02 12:13:57 +02:00
mintsuki 098e8679f3 build: Rename freestanding-headers to match upstream 2022-06-30 07:48:42 +02:00