No description
Find a file
Sven Peter 4c4850935f change #include <string.h> to #include "string.h"
this is required to fix the following error when compiling with clang:

  CC    build/string.o
src/string.c:3:10: error: 'string.h' file not found with <angled> include; use "quotes" instead
         ^~~~~~~~~~
         "string.h"

Signed-off-by: Sven Peter <sven@svenpeter.dev>
2021-01-16 02:48:08 +09:00
artwork@35626c31f5 Initial commit 2021-01-15 04:03:35 +09:00
data Initial commit 2021-01-15 04:03:35 +09:00
proxyclient README: add missing close angle bracket 2021-01-15 13:04:14 +09:00
src change #include <string.h> to #include "string.h" 2021-01-16 02:48:08 +09:00
.clang-format Initial commit 2021-01-15 04:03:35 +09:00
.editorconfig .editorconfig: trim trailing whitespace 2021-01-15 04:04:12 +09:00
.gitignore proxyclient: initial files 2021-01-15 04:04:12 +09:00
.gitmodules Initial commit 2021-01-15 04:03:35 +09:00
LICENSE LICENSE: fix typo 2021-01-15 12:55:21 +09:00
LICENSE.BSD-2 README: improve formatting, add BSD/GPL license text 2021-01-15 04:08:31 +09:00
LICENSE.GPL-2 README: improve formatting, add BSD/GPL license text 2021-01-15 04:08:31 +09:00
m1n1.ld Reduce alignment to 16k, size optimization 2021-01-15 04:04:12 +09:00
Makefile Chainloading, ADT support, misc fixes 2021-01-15 04:04:12 +09:00
README.md README: add missing close angle bracket 2021-01-15 13:04:14 +09:00

m1n1: an experimentation playground for Apple Silicon

(And perhaps some day a Linux bootloader)

License

m1n1 is licensed under the MIT license, as included in the LICENSE file.

  • Copyright (C) 2021 The Asahi Linux contributors

Please see the Git history for authorship information.

Portions of m1n1 are based on mini:

m1n1 embeds libfdt, which is dual BSD and GPL-2 licensed and copyright:

  • Copyright (C) 2006 David Gibson, IBM Corporation.

The ADT code in mini is also based on libfdt and subject to the same license.