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:
parent
94f0312566
commit
f817ec5009
12 changed files with 10 additions and 12 deletions
2
Makefile
2
Makefile
|
@ -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
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "../../defines.h"
|
||||
#include "../../../defines.h"
|
||||
|
||||
/*---------------------------------------------------------------------------/
|
||||
/ Configurations of FatFs Module
|
|
@ -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" {
|
||||
|
|
|
@ -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. */
|
||||
|
||||
|
|
|
@ -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 */
|
|
@ -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 */
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------
|
|
@ -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 */
|
|
@ -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 */
|
||||
|
1
todo.txt
1
todo.txt
|
@ -13,7 +13,6 @@ todo:
|
|||
|
||||
others: check todo with grep
|
||||
others: dump verification via no-intro
|
||||
others: fatfs browser for emmc partitions
|
||||
|
||||
reminder:
|
||||
|
||||
|
|
Loading…
Reference in a new issue