tKeep the txt files in boot dir. - pi3-aoe - ATA over Ethernet setup for Raspberry Pi 3
 (HTM) git clone https://git.parazyd.org/pi3-aoe
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit 61252970f3e8b12739d9fc4dc19fe42acc2f8307
 (DIR) parent 54317a75f11020e7671fd04376e52d290a5fd313
 (HTM) Author: parazyd <parazyd@dyne.org>
       Date:   Thu, 28 Jan 2021 12:27:21 +0100
       
       Keep the txt files in boot dir.
       
       Diffstat:
         M Makefile                            |       6 ++----
         R cmdline.txt -> boot/cmdline.txt     |       0 
         R config.txt -> boot/config.txt       |       0 
       
       3 files changed, 2 insertions(+), 4 deletions(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       t@@ -34,11 +34,11 @@ $(BUSYBOX_SRC):
                git clone --depth 1 -b $(BUSYBOX_BRANCH) $(BUSYBOX_URL) $@
        
        boot/bootcode.bin: $(FIRMWARE_SRC)
       -        mkdir -p boot
                cp $(FIRMWARE_SRC)/boot/start* boot
                cp $(FIRMWARE_SRC)/boot/fixup* boot
                cp $(FIRMWARE_SRC)/boot/LICENCE.broadcom boot
                cp $(FIRMWARE_SRC)/boot/COPYING.linux boot
       +        cp $(FIRMWARE_SRC)/boot/bootcode.bin boot
        
        $(IMAGEGZ): $(KERNEL_SRC)
                cp -f pi3.config $(KERNEL_SRC)/.config
       t@@ -70,9 +70,7 @@ ifeq ($(DESTDIR),)
                exit 1
        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 boot/* $(DESTDIR)/boot
                cp -r bin $(DESTDIR)/bin
                cp init $(DESTDIR)/init
                chmod 755 $(DESTDIR)/init
 (DIR) diff --git a/cmdline.txt b/boot/cmdline.txt
 (DIR) diff --git a/config.txt b/boot/config.txt