1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-11-22 02:06:41 +00:00

nxdt_devoptab: update file layout

This commit is contained in:
Pablo Curiel 2024-11-01 16:31:00 +01:00
parent 94f0312566
commit f817ec5009
12 changed files with 10 additions and 12 deletions

View file

@ -76,7 +76,7 @@ BUILD_TIMESTAMP := $(strip $(shell date --utc '+%Y-%m-%d %T UTC'))
TARGET := ${APP_TITLE}
BUILD := build
SOURCES := source source/core source/core/fatfs source/core/devoptab source/tasks source/utils source/views
SOURCES := source source/core source/core/devoptab source/core/devoptab/fatfs source/tasks source/utils source/views
DATA := data
ICON := romfs/icon/${APP_TITLE}.jpg
INCLUDES := include

View file

@ -1,4 +1,4 @@
#include "../../defines.h"
#include "../../../defines.h"
/*---------------------------------------------------------------------------/
/ Configurations of FatFs Module

View file

@ -27,7 +27,7 @@
#include "../pfs.h"
#include "../hfs.h"
#include "../romfs.h"
#include "../fatfs/ff.h"
#include "fatfs/ff.h"
#ifdef __cplusplus
extern "C" {

View file

@ -24,7 +24,6 @@
#include <core/nxdt_utils.h>
#include <core/devoptab/nxdt_devoptab.h>
#include <core/devoptab/ro_dev.h>
#include <core/fatfs/ff.h>
/* Helper macros. */

View file

@ -10,8 +10,8 @@
#include <core/nxdt_utils.h>
#include <core/bis_storage.h>
#include <core/fatfs/ff.h> /* Obtains integer types */
#include <core/fatfs/diskio.h> /* Declarations of disk functions */
#include <core/devoptab/fatfs/ff.h> /* Obtains integer types */
#include <core/devoptab/fatfs/diskio.h> /* Declarations of disk functions */
/*-----------------------------------------------------------------------*/
/* Get Drive Status */

View file

@ -20,8 +20,8 @@
#include <string.h>
#include <core/fatfs/ff.h> /* Declarations of FatFs API */
#include <core/fatfs/diskio.h> /* Declarations of device I/O functions */
#include <core/devoptab/fatfs/ff.h> /* Declarations of FatFs API */
#include <core/devoptab/fatfs/diskio.h> /* Declarations of device I/O functions */
/*--------------------------------------------------------------------------

View file

@ -2,7 +2,7 @@
/* A Sample Code of User Provided OS Dependent Functions for FatFs */
/*------------------------------------------------------------------------*/
#include <core/fatfs/ff.h>
#include <core/devoptab/fatfs/ff.h>
#if FF_USE_LFN == 3 /* Use dynamic memory allocation */

View file

@ -23,7 +23,7 @@
*/
#include <core/fatfs/ff.h>
#include <core/devoptab/fatfs/ff.h>
#if FF_USE_LFN != 0 /* This module will be blanked if in non-LFN configuration */

View file

@ -13,7 +13,6 @@ todo:
others: check todo with grep
others: dump verification via no-intro
others: fatfs browser for emmc partitions
reminder: