mirror of
https://github.com/isometimes/rpi4-osdev
synced 2024-11-23 18:50:40 +00:00
Compare commits
2 commits
376a918303
...
b1c3dfc5d6
Author | SHA1 | Date | |
---|---|---|---|
|
b1c3dfc5d6 | ||
|
fea167dab3 |
2 changed files with 2 additions and 3 deletions
|
@ -4,7 +4,7 @@ Writing a "bare metal" operating system for Raspberry Pi 4
|
||||||
Introduction
|
Introduction
|
||||||
------------
|
------------
|
||||||
|
|
||||||
As a tech CEO @RealVNC, I don't write code any more. And I've recently realised just how much I miss it.
|
As a tech CEO, I don't write code any more. And I've recently realised just how much I miss it.
|
||||||
|
|
||||||
Currently in the throes of a nationwide "lockdown" due to Covid-19 (and having been spared my usual commute), I've found myself with more hours in the day. I have taken this time for myself and used it to fulfil a childhood ambition - to write a **bare metal** operating system that runs on commercial hardware.
|
Currently in the throes of a nationwide "lockdown" due to Covid-19 (and having been spared my usual commute), I've found myself with more hours in the day. I have taken this time for myself and used it to fulfil a childhood ambition - to write a **bare metal** operating system that runs on commercial hardware.
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
CFILES = $(wildcard *.c lib/*.c)
|
CFILES = $(wildcard *.c lib/*.c)
|
||||||
OFILES = $(CFILES:.c=.o)
|
OFILES = $(CFILES:.c=.o)
|
||||||
GCCFLAGS = -Wall -O2 -ffreestanding -nostdinc -nostdlib
|
GCCFLAGS = -Wall -O2 -ffreestanding -nostdinc -nostdlib -nostartfiles
|
||||||
GCCPATH = ../../gcc-arm-10.3-2021.07-x86_64-aarch64-none-elf/bin
|
GCCPATH = ../../gcc-arm-10.3-2021.07-x86_64-aarch64-none-elf/bin
|
||||||
|
|
||||||
|
|
||||||
all: clean kernel8.img
|
all: clean kernel8.img
|
||||||
|
|
||||||
boot/boot.o: boot/boot.S
|
boot/boot.o: boot/boot.S
|
||||||
|
|
Loading…
Reference in a new issue