2021-01-12 18:22:11 +00:00
|
|
|
# m1n1: an experimentation playground for Apple Silicon
|
|
|
|
|
2021-02-06 07:43:14 +00:00
|
|
|
(And to some extent a Linux bootloader)
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
You need an `aarch64-linux-gnu-gcc` cross-compiler toolchain (or a native one, if running on ARM64).
|
|
|
|
You also need `dtc` (the devicetree compiler) and `convert` (from ImageMagick) for the boot logos.
|
|
|
|
|
|
|
|
```shell
|
|
|
|
$ git clone --recursive https://github.com/AsahiLinux/m1n1.git
|
|
|
|
$ cd m1n1
|
|
|
|
$ make
|
|
|
|
```
|
|
|
|
|
|
|
|
The output will be in build/m1n1.macho.
|
|
|
|
|
|
|
|
To build on a native arm64 machine, use `make ARCH=`.
|
|
|
|
|
2021-02-07 17:22:22 +00:00
|
|
|
### Building using the container setup
|
|
|
|
|
|
|
|
If you have a container runtime installed, like Podman or Docker, you can make use of the compose setup, which contains all build dependencies.
|
|
|
|
|
|
|
|
```shell
|
|
|
|
$ git clone --recursive https://github.com/AsahiLinux/m1n1.git
|
|
|
|
$ cd m1n1
|
|
|
|
$ podman-compose run m1n1 make
|
|
|
|
$ # or
|
|
|
|
$ docker-compose run m1n1 make
|
|
|
|
```
|
|
|
|
|
2021-02-06 07:43:14 +00:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
Our [developer quickstart](https://github.com/AsahiLinux/docs/wiki/Developer-Quickstart#using-m1n1)
|
|
|
|
guide has more information on how to use m1n1.
|
|
|
|
|
|
|
|
## Payloads
|
|
|
|
|
|
|
|
m1n1 supports running payloads by simple concatenation:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
$ cat build/m1n1.macho Image.gz build/dtb/apple-j274.dtb initramfs.cpio.gz > m1n1-payload.macho
|
|
|
|
```
|
|
|
|
|
|
|
|
Supported payload file formats:
|
|
|
|
|
|
|
|
* Kernel images (or compatible). Must be compressed or last payload.
|
|
|
|
* Devicetree blobs (FDT). May be uncompressed or compressed.
|
|
|
|
* Initramfs cpio images. Must be compressed.
|
|
|
|
|
|
|
|
Supported compression formats:
|
|
|
|
|
|
|
|
* gzip
|
|
|
|
* xz
|
2021-01-12 18:22:11 +00:00
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
m1n1 is licensed under the MIT license, as included in the [LICENSE](LICENSE) file.
|
|
|
|
|
2021-01-14 19:05:45 +00:00
|
|
|
* Copyright (C) 2021 The Asahi Linux contributors
|
|
|
|
|
2021-01-12 18:22:11 +00:00
|
|
|
Please see the Git history for authorship information.
|
|
|
|
|
|
|
|
Portions of m1n1 are based on mini:
|
2021-01-14 18:55:20 +00:00
|
|
|
|
2021-01-14 19:05:45 +00:00
|
|
|
* Copyright (C) 2008-2010 Hector Martin "marcan" <marcan@marcan.st>
|
2021-01-15 04:04:01 +00:00
|
|
|
* Copyright (C) 2008-2010 Sven Peter <sven@svenpeter.dev>
|
2021-01-14 19:05:45 +00:00
|
|
|
* Copyright (C) 2008-2010 Andre Heider <a.heider@gmail.com>
|
2021-01-14 18:55:20 +00:00
|
|
|
|
2021-01-23 13:25:34 +00:00
|
|
|
m1n1 embeds libfdt, which is dual [BSD](3rdparty_licenses/LICENSE.BSD-2.libfdt) and
|
|
|
|
[GPL-2](3rdparty_licenses/LICENSE.GPL-2) licensed and copyright:
|
2021-01-14 18:55:20 +00:00
|
|
|
|
2021-01-29 10:54:39 +00:00
|
|
|
* Copyright (C) 2014 David Gibson <david@gibson.dropbear.id.au>
|
|
|
|
* Copyright (C) 2018 embedded brains GmbH
|
|
|
|
* Copyright (C) 2006-2012 David Gibson, IBM Corporation.
|
|
|
|
* Copyright (C) 2012 David Gibson, IBM Corporation.
|
|
|
|
* Copyright 2012 Kim Phillips, Freescale Semiconductor.
|
|
|
|
* Copyright (C) 2016 Free Electrons
|
|
|
|
* Copyright (C) 2016 NextThing Co.
|
2021-01-14 18:55:20 +00:00
|
|
|
|
|
|
|
The ADT code in mini is also based on libfdt and subject to the same license.
|
2021-01-14 19:05:45 +00:00
|
|
|
|
2021-01-23 13:25:34 +00:00
|
|
|
m1n1 embeds [minlzma](https://github.com/ionescu007/minlzma), which is
|
|
|
|
[MIT](3rdparty_licenses/LICENSE.minlzma) licensed and copyright:
|
|
|
|
|
|
|
|
* Copyright (c) 2020 Alex Ionescu
|
|
|
|
|
|
|
|
m1n1 embeds a slightly modified version of [tinf](https://github.com/jibsen/tinf), which is
|
|
|
|
[ZLIB](3rdparty_licenses/LICENSE.tinf) licensed and copyright:
|
|
|
|
|
|
|
|
* Copyright (c) 2003-2019 Joergen Ibsen
|
2021-01-23 19:51:16 +00:00
|
|
|
|
|
|
|
m1n1 embeds portions taken from
|
|
|
|
[arm-trusted-firwmare](https://github.com/ARM-software/arm-trusted-firmware), which is
|
|
|
|
[BSD](3rdparty_licenses/LICENSE.BSD-3.arm) licensed and copyright:
|
|
|
|
|
|
|
|
* Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
|
2021-01-29 06:19:34 +00:00
|
|
|
|
|
|
|
m1n1 embeds [Doug Lea's malloc](ftp://gee.cs.oswego.edu/pub/misc/malloc.c) (dlmalloc), which is in
|
|
|
|
the public domain ([CC0](3rdparty_licenses/LICENSE.CC0)).
|
|
|
|
|
|
|
|
m1n1 embeds portions of [PDCLib](https://github.com/DevSolar/pdclib), which is in the public
|
2021-02-05 22:34:14 +00:00
|
|
|
domain ([CC0](3rdparty_licenses/LICENSE.CC0)).
|
2021-01-29 06:19:34 +00:00
|
|
|
|