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