pi3-aoe

ATA over Ethernet setup for Raspberry Pi 3
git clone https://git.parazyd.org/pi3-aoe
Log | Files | Refs | README

commit 54317a75f11020e7671fd04376e52d290a5fd313
parent b2fa98de8a1fc887bce0c06a0fb0dac59882e9b0
Author: parazyd <parazyd@dyne.org>
Date:   Thu, 28 Jan 2021 12:25:36 +0100

Install config.txt and cmdline.txt.

Diffstat:
MMakefile | 2++
Acmdline.txt | 2++
Aconfig.txt | 2++
3 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -71,6 +71,8 @@ ifeq ($(DESTDIR),) endif mkdir -p $(DESTDIR)/dev $(DESTDIR)/proc $(DESTDIR)/sys cp -r boot $(DESTDIR)/boot + cp cmdline.txt $(DESTDIR)/boot + cp config.txt $(DESTDIR)/boot cp -r bin $(DESTDIR)/bin cp init $(DESTDIR)/init chmod 755 $(DESTDIR)/init diff --git a/cmdline.txt b/cmdline.txt @@ -0,0 +1 @@ +console=serial0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait init=/init+ \ No newline at end of file diff --git a/config.txt b/config.txt @@ -0,0 +1,2 @@ +gpu_mem=16 +enable_uart=1