Add README section about disasm
Change section headings for better visibility.
This commit is contained in:
parent
44037398d4
commit
7e4bf75495
14
README.md
14
README.md
|
@ -35,19 +35,19 @@ Use at least rustc nightly 2020-07-15 with cargo nightly of the same or later da
|
||||||
Install tools: `cargo install just cargo-make`.
|
Install tools: `cargo install just cargo-make`.
|
||||||
Install qemu (at least version 4.1.1): `brew install qemu`.
|
Install qemu (at least version 4.1.1): `brew install qemu`.
|
||||||
|
|
||||||
To build kernel and run it in QEMU emulator:
|
### To build kernel and run it in QEMU emulator
|
||||||
|
|
||||||
```
|
```
|
||||||
just qemu
|
just qemu
|
||||||
```
|
```
|
||||||
|
|
||||||
To build kernel for Raspberry Pi and copy it to SDCard mounted at `/Volumes/BOOT/`:
|
### To build kernel for Raspberry Pi and copy it to SDCard mounted at `/Volumes/BOOT/`
|
||||||
|
|
||||||
```
|
```
|
||||||
just device
|
just device
|
||||||
```
|
```
|
||||||
|
|
||||||
To run tests (tests require QEMU):
|
### To run tests (tests require QEMU)
|
||||||
|
|
||||||
```
|
```
|
||||||
just test
|
just test
|
||||||
|
@ -60,6 +60,14 @@ On the device boot SD card you'll need a configuration file instructing RasPi to
|
||||||
arm_64bit=1
|
arm_64bit=1
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### To see kernel disassembly
|
||||||
|
|
||||||
|
You need to have [Hopper](https://hopperapp.com) and hopperv4 cli helper installed.
|
||||||
|
|
||||||
|
```
|
||||||
|
just disasm
|
||||||
|
```
|
||||||
|
|
||||||
## Development flow
|
## Development flow
|
||||||
|
|
||||||
`mainline`, `develop` and `released` branches:
|
`mainline`, `develop` and `released` branches:
|
||||||
|
|
Loading…
Reference in New Issue