From 10426d532ee02411bf96628ebad5cf07a0750fa6 Mon Sep 17 00:00:00 2001 From: d0k3 Date: Tue, 6 Jun 2017 21:16:29 +0200 Subject: [PATCH] Changed fs -> filesys --- Makefile | 4 ++-- source/{fs => filesys}/fatmbr.c | 0 source/{fs => filesys}/fatmbr.h | 0 source/{fs => filesys}/filetype.c | 0 source/{fs => filesys}/filetype.h | 0 source/{fs => filesys}/fsdir.c | 0 source/{fs => filesys}/fsdir.h | 0 source/{fs => filesys}/fsdrive.c | 0 source/{fs => filesys}/fsdrive.h | 0 source/{fs => filesys}/fsgame.c | 0 source/{fs => filesys}/fsgame.h | 0 source/{fs => filesys}/fsinit.c | 0 source/{fs => filesys}/fsinit.h | 0 source/{fs => filesys}/fsperm.c | 0 source/{fs => filesys}/fsperm.h | 0 source/{fs => filesys}/fsutil.c | 0 source/{fs => filesys}/fsutil.h | 0 source/{fs => filesys}/sddata.c | 0 source/{fs => filesys}/sddata.h | 0 source/{virtual => filesys}/vff.c | 0 source/{virtual => filesys}/vff.h | 0 21 files changed, 2 insertions(+), 2 deletions(-) rename source/{fs => filesys}/fatmbr.c (100%) rename source/{fs => filesys}/fatmbr.h (100%) rename source/{fs => filesys}/filetype.c (100%) rename source/{fs => filesys}/filetype.h (100%) rename source/{fs => filesys}/fsdir.c (100%) rename source/{fs => filesys}/fsdir.h (100%) rename source/{fs => filesys}/fsdrive.c (100%) rename source/{fs => filesys}/fsdrive.h (100%) rename source/{fs => filesys}/fsgame.c (100%) rename source/{fs => filesys}/fsgame.h (100%) rename source/{fs => filesys}/fsinit.c (100%) rename source/{fs => filesys}/fsinit.h (100%) rename source/{fs => filesys}/fsperm.c (100%) rename source/{fs => filesys}/fsperm.h (100%) rename source/{fs => filesys}/fsutil.c (100%) rename source/{fs => filesys}/fsutil.h (100%) rename source/{fs => filesys}/sddata.c (100%) rename source/{fs => filesys}/sddata.h (100%) rename source/{virtual => filesys}/vff.c (100%) rename source/{virtual => filesys}/vff.h (100%) diff --git a/Makefile b/Makefile index fc7832c..bba7012 100644 --- a/Makefile +++ b/Makefile @@ -21,9 +21,9 @@ ifeq ($(SAFEMODE),1) export TARGET := SafeMode9 endif BUILD := build -SOURCES := source source/common source/fs source/crypto source/fatfs source/nand source/virtual source/game source/gamecart source/quicklz +SOURCES := source source/common source/filesys source/crypto source/fatfs source/nand source/virtual source/game source/gamecart source/quicklz DATA := data -INCLUDES := source source/common source/font source/fs source/crypto source/fatfs source/nand source/virtual source/game source/gamecart source/quicklz +INCLUDES := source source/common source/font source/filesys source/crypto source/fatfs source/nand source/virtual source/game source/gamecart source/quicklz #--------------------------------------------------------------------------------- # options for code generation diff --git a/source/fs/fatmbr.c b/source/filesys/fatmbr.c similarity index 100% rename from source/fs/fatmbr.c rename to source/filesys/fatmbr.c diff --git a/source/fs/fatmbr.h b/source/filesys/fatmbr.h similarity index 100% rename from source/fs/fatmbr.h rename to source/filesys/fatmbr.h diff --git a/source/fs/filetype.c b/source/filesys/filetype.c similarity index 100% rename from source/fs/filetype.c rename to source/filesys/filetype.c diff --git a/source/fs/filetype.h b/source/filesys/filetype.h similarity index 100% rename from source/fs/filetype.h rename to source/filesys/filetype.h diff --git a/source/fs/fsdir.c b/source/filesys/fsdir.c similarity index 100% rename from source/fs/fsdir.c rename to source/filesys/fsdir.c diff --git a/source/fs/fsdir.h b/source/filesys/fsdir.h similarity index 100% rename from source/fs/fsdir.h rename to source/filesys/fsdir.h diff --git a/source/fs/fsdrive.c b/source/filesys/fsdrive.c similarity index 100% rename from source/fs/fsdrive.c rename to source/filesys/fsdrive.c diff --git a/source/fs/fsdrive.h b/source/filesys/fsdrive.h similarity index 100% rename from source/fs/fsdrive.h rename to source/filesys/fsdrive.h diff --git a/source/fs/fsgame.c b/source/filesys/fsgame.c similarity index 100% rename from source/fs/fsgame.c rename to source/filesys/fsgame.c diff --git a/source/fs/fsgame.h b/source/filesys/fsgame.h similarity index 100% rename from source/fs/fsgame.h rename to source/filesys/fsgame.h diff --git a/source/fs/fsinit.c b/source/filesys/fsinit.c similarity index 100% rename from source/fs/fsinit.c rename to source/filesys/fsinit.c diff --git a/source/fs/fsinit.h b/source/filesys/fsinit.h similarity index 100% rename from source/fs/fsinit.h rename to source/filesys/fsinit.h diff --git a/source/fs/fsperm.c b/source/filesys/fsperm.c similarity index 100% rename from source/fs/fsperm.c rename to source/filesys/fsperm.c diff --git a/source/fs/fsperm.h b/source/filesys/fsperm.h similarity index 100% rename from source/fs/fsperm.h rename to source/filesys/fsperm.h diff --git a/source/fs/fsutil.c b/source/filesys/fsutil.c similarity index 100% rename from source/fs/fsutil.c rename to source/filesys/fsutil.c diff --git a/source/fs/fsutil.h b/source/filesys/fsutil.h similarity index 100% rename from source/fs/fsutil.h rename to source/filesys/fsutil.h diff --git a/source/fs/sddata.c b/source/filesys/sddata.c similarity index 100% rename from source/fs/sddata.c rename to source/filesys/sddata.c diff --git a/source/fs/sddata.h b/source/filesys/sddata.h similarity index 100% rename from source/fs/sddata.h rename to source/filesys/sddata.h diff --git a/source/virtual/vff.c b/source/filesys/vff.c similarity index 100% rename from source/virtual/vff.c rename to source/filesys/vff.c diff --git a/source/virtual/vff.h b/source/filesys/vff.h similarity index 100% rename from source/virtual/vff.h rename to source/filesys/vff.h