DoStuff Wiki
Attachments
History
Blame
View Source
Documentation
About An Otter Wiki
Toggle dark mode
Login
Home
A - Z
Changelog
Page Index
Hardware
Backplane
Board Features
Memory Map
News
20260512 - Increased Cpu Speed
Programming
Examples
Duart
PIT
Handling Interrupts
Machine Library
MMU
Reference Material
Runtime
Toolchains
Project Ideas
Operating System
Gloworm Port
Linux Port
Atari Vector Generator
Ethernet Card
Keyboard Controller
Monitor
BIOS
Books
Datasheets
Getting Connected
Home
Specs and Tech Notes
Project Ideas
Operating System
Linux Port
2d13af
Commit
2d13af
2026-04-07 16:27:51
Bob Green
: -/-
project ideas/operating system/linux port.md
..
@@ 10,7 10,23 @@
## Building
### Kernel
+
```
+
git clone --depth 1 --branch "v6.15" https://github.com/torvalds/linux
+
cd linux
+
make ARCH=m68k CROSS_COMPILE=m68k-linux-gnu- tinyconfig
+
make ARCH=m68k CROSS_COMPILE=m68k-linux-gnu- menuconfig
+
make ARCH=m68k CROSS_COMPILE=m68k-linux-gnu-
+
```
+
### Utilities
+
I am using BusyBox for a basic set of utilities
+
```
+
wget https://busybox.net/downloads/busybox-1.37.0.tar.bz2
+
tar xvf busybox-1.37.0.tar.bz2
+
cd busybox-1.37.0
+
make CROSS_COMPILE=m68k-linux-gnu- menuconfig
+
make CROSS_COMPILE=m68k-linux-gnu-
+
```
## Links
- [Helpful Article](https://www.aslak.net/index.php/2022/01/11/porting-linux-to-the-68030-based-maxi030/), and [related code](https://github.com/aslak3/MAXI030).
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9