Skip to content

Commit

Permalink
Change kernel.img to kernel8-32.img to indicate raspberry pi 3 compat…
Browse files Browse the repository at this point in the history
…ibility (#9)
  • Loading branch information
mauri870 authored Dec 21, 2017
1 parent 6edeb8f commit bb96e00
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ ARMGNU ?= arm-none-eabi
# The intermediate directory for compiled object files.
BUILD = build/

# The exercise to compile
EXERCISE ?= ok01
# The lesson kernel to compile
LESSON ?= ok01

# The directory in which source files are stored.
SOURCE = src/$(EXERCISE)/

# The name of the output file to generate.
TARGET = kernel.img
TARGET = kernel8-32.img

# The name of the assembler listing file to generate.
LIST = kernel.list
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ apt-get install gcc-arm-none-eabi
## Compiling and running on Raspberry Pi 3

```bash
# The exercise is a subfolder in src/
EXERCISE=ok01 make
# The lesson is a subfolder in src/
LESSON=ok01 make
```

Copy the generated `kernel.img` to your SD card, along with the [Raspberry Pi boot files](https://github.com/raspberrypi/firmware/tree/master/boot) (bootloader.bin and start.elf).
Copy the generated `kernel8-32.img` to your SD card, along with the [Raspberry Pi boot files](https://github.com/raspberrypi/firmware/tree/master/boot) (bootloader.bin and start.elf).

0 comments on commit bb96e00

Please sign in to comment.