mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-22 10:16:39 +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}
|
TARGET := ${APP_TITLE}
|
||||||
BUILD := build
|
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
|
DATA := data
|
||||||
ICON := romfs/icon/${APP_TITLE}.jpg
|
ICON := romfs/icon/${APP_TITLE}.jpg
|
||||||
INCLUDES := include
|
INCLUDES := include
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "../../defines.h"
|
#include "../../../defines.h"
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------/
|
/*---------------------------------------------------------------------------/
|
||||||
/ Configurations of FatFs Module
|
/ Configurations of FatFs Module
|
|
@ -27,7 +27,7 @@
|
||||||
#include "../pfs.h"
|
#include "../pfs.h"
|
||||||
#include "../hfs.h"
|
#include "../hfs.h"
|
||||||
#include "../romfs.h"
|
#include "../romfs.h"
|
||||||
#include "../fatfs/ff.h"
|
#include "fatfs/ff.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
|
@ -46,7 +46,7 @@ const char *bisStorageGet##property##ByBisPartitionId(u8 bis_partition_id) { \
|
||||||
/* Type definitions. */
|
/* Type definitions. */
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
u8 bis_partition_id; ///< FsBisPartitionId.
|
u8 bis_partition_id; ///< FsBisPartitionId.
|
||||||
const char *gpt_name;
|
const char *gpt_name;
|
||||||
const char *sysinit_name;
|
const char *sysinit_name;
|
||||||
const char *devoptab_mount_name;
|
const char *devoptab_mount_name;
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
#include <core/nxdt_utils.h>
|
#include <core/nxdt_utils.h>
|
||||||
#include <core/devoptab/nxdt_devoptab.h>
|
#include <core/devoptab/nxdt_devoptab.h>
|
||||||
#include <core/devoptab/ro_dev.h>
|
#include <core/devoptab/ro_dev.h>
|
||||||
#include <core/fatfs/ff.h>
|
|
||||||
|
|
||||||
/* Helper macros. */
|
/* Helper macros. */
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,8 @@
|
||||||
#include <core/nxdt_utils.h>
|
#include <core/nxdt_utils.h>
|
||||||
#include <core/bis_storage.h>
|
#include <core/bis_storage.h>
|
||||||
|
|
||||||
#include <core/fatfs/ff.h> /* Obtains integer types */
|
#include <core/devoptab/fatfs/ff.h> /* Obtains integer types */
|
||||||
#include <core/fatfs/diskio.h> /* Declarations of disk functions */
|
#include <core/devoptab/fatfs/diskio.h> /* Declarations of disk functions */
|
||||||
|
|
||||||
/*-----------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------*/
|
||||||
/* Get Drive Status */
|
/* Get Drive Status */
|
|
@ -20,8 +20,8 @@
|
||||||
|
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <core/fatfs/ff.h> /* Declarations of FatFs API */
|
#include <core/devoptab/fatfs/ff.h> /* Declarations of FatFs API */
|
||||||
#include <core/fatfs/diskio.h> /* Declarations of device I/O functions */
|
#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 */
|
/* 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 */
|
#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 */
|
#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: check todo with grep
|
||||||
others: dump verification via no-intro
|
others: dump verification via no-intro
|
||||||
others: fatfs browser for emmc partitions
|
|
||||||
|
|
||||||
reminder:
|
reminder:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue