From 484030a62230bc1fd772f50fc4459b31a2be2249 Mon Sep 17 00:00:00 2001 From: akuker Date: Sun, 9 Aug 2020 14:19:35 -0500 Subject: [PATCH] #16 Reorganized files --- src/raspberrypi/Makefile | 3 --- src/raspberrypi/{ => disks}/cfilesystem.cpp | 0 src/raspberrypi/{ => disks}/cfilesystem.h | 0 src/raspberrypi/{ => disks}/ctapdriver.cpp | 0 src/raspberrypi/{ => disks}/ctapdriver.h | 0 src/raspberrypi/{ => disks}/disk.cpp | 0 src/raspberrypi/{ => disks}/disk.h | 0 7 files changed, 3 deletions(-) rename src/raspberrypi/{ => disks}/cfilesystem.cpp (100%) rename src/raspberrypi/{ => disks}/cfilesystem.h (100%) rename src/raspberrypi/{ => disks}/ctapdriver.cpp (100%) rename src/raspberrypi/{ => disks}/ctapdriver.h (100%) rename src/raspberrypi/{ => disks}/disk.cpp (100%) rename src/raspberrypi/{ => disks}/disk.h (100%) diff --git a/src/raspberrypi/Makefile b/src/raspberrypi/Makefile index bee1788..84a6fe4 100644 --- a/src/raspberrypi/Makefile +++ b/src/raspberrypi/Makefile @@ -48,10 +48,7 @@ BIN_ALL = $(BINDIR)/$(RASCSI) $(BINDIR)/$(RASCTL) SRC_RASCSI = \ rascsi.cpp \ scsi.cpp \ - disk.cpp \ gpiobus.cpp \ - ctapdriver.cpp \ - cfilesystem.cpp \ filepath.cpp \ fileio.cpp SRC_RASCSI += $(notdir $(shell find ./controllers -name '*.cpp')) diff --git a/src/raspberrypi/cfilesystem.cpp b/src/raspberrypi/disks/cfilesystem.cpp similarity index 100% rename from src/raspberrypi/cfilesystem.cpp rename to src/raspberrypi/disks/cfilesystem.cpp diff --git a/src/raspberrypi/cfilesystem.h b/src/raspberrypi/disks/cfilesystem.h similarity index 100% rename from src/raspberrypi/cfilesystem.h rename to src/raspberrypi/disks/cfilesystem.h diff --git a/src/raspberrypi/ctapdriver.cpp b/src/raspberrypi/disks/ctapdriver.cpp similarity index 100% rename from src/raspberrypi/ctapdriver.cpp rename to src/raspberrypi/disks/ctapdriver.cpp diff --git a/src/raspberrypi/ctapdriver.h b/src/raspberrypi/disks/ctapdriver.h similarity index 100% rename from src/raspberrypi/ctapdriver.h rename to src/raspberrypi/disks/ctapdriver.h diff --git a/src/raspberrypi/disk.cpp b/src/raspberrypi/disks/disk.cpp similarity index 100% rename from src/raspberrypi/disk.cpp rename to src/raspberrypi/disks/disk.cpp diff --git a/src/raspberrypi/disk.h b/src/raspberrypi/disks/disk.h similarity index 100% rename from src/raspberrypi/disk.h rename to src/raspberrypi/disks/disk.h