summaryrefslogtreecommitdiff
path: root/firmware/export/config
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2021-04-11 09:10:55 -0400
committerSolomon Peachy <pizza@shaftnet.org>2021-04-12 18:19:06 +0000
commitb6fce99046a3677f27373f8c701e6f200e290236 (patch)
tree9ea27b619af5962e415a52ceffaffc35aabd3c47 /firmware/export/config
parente4345f2db8771fb773e07daf1a9f7bfac961c6bd (diff)
downloadrockbox-b6fce99046a3677f27373f8c701e6f200e290236.tar.gz
rockbox-b6fce99046a3677f27373f8c701e6f200e290236.zip
ibasso: Implement proper PIVOT_ROOT filesystem access
Including direct use of the external SD card mount Known issue: If SD card is inserted at startup, it must be ejected and reinserted to be registered. Change-Id: I5f420160bda32135cbb088c1e8b04b6e3a73018e
Diffstat (limited to 'firmware/export/config')
-rw-r--r--firmware/export/config/ibassodx50.h9
-rw-r--r--firmware/export/config/ibassodx90.h9
2 files changed, 14 insertions, 4 deletions
diff --git a/firmware/export/config/ibassodx50.h b/firmware/export/config/ibassodx50.h
index 6bebf5a278..bb4b2809e5 100644
--- a/firmware/export/config/ibassodx50.h
+++ b/firmware/export/config/ibassodx50.h
@@ -140,9 +140,14 @@
140/* Define this if a programmable hotkey is mapped */ 140/* Define this if a programmable hotkey is mapped */
141#define HAVE_HOTKEY 141#define HAVE_HOTKEY
142 142
143/* No special storage */ 143/* Supports internal and microSD storage */
144#define CONFIG_STORAGE STORAGE_HOSTFS 144#define CONFIG_STORAGE (STORAGE_HOSTFS|STORAGE_SD)
145#define HOSTFS_VOL_DEC "Internal"
145#define HAVE_STORAGE_FLUSH 146#define HAVE_STORAGE_FLUSH
147#define HAVE_MULTIDRIVE /* But _not_ CONFIG_STORAGE_MULTI */
148#define NUM_DRIVES 2
149#define HAVE_HOTSWAP
150#define MULTIDRIVE_DIR "/mnt/external_sd"
146 151
147/* More common stuff */ 152/* More common stuff */
148#define BATTERY_DEV_NAME "battery" 153#define BATTERY_DEV_NAME "battery"
diff --git a/firmware/export/config/ibassodx90.h b/firmware/export/config/ibassodx90.h
index 0b33665eb4..cd7ddf78cd 100644
--- a/firmware/export/config/ibassodx90.h
+++ b/firmware/export/config/ibassodx90.h
@@ -137,9 +137,14 @@
137/* Define this if a programmable hotkey is mapped */ 137/* Define this if a programmable hotkey is mapped */
138#define HAVE_HOTKEY 138#define HAVE_HOTKEY
139 139
140/* No special storage */ 140/* Supports internal and microSD storage */
141#define CONFIG_STORAGE STORAGE_HOSTFS 141#define CONFIG_STORAGE (STORAGE_HOSTFS|STORAGE_SD)
142#define HOSTFS_VOL_DEC "Internal"
142#define HAVE_STORAGE_FLUSH 143#define HAVE_STORAGE_FLUSH
144#define HAVE_MULTIDRIVE /* But _not_ CONFIG_STORAGE_MULTI */
145#define NUM_DRIVES 2
146#define HAVE_HOTSWAP
147#define MULTIDRIVE_DIR "/mnt/external_sd"
143 148
144/* More common stuff */ 149/* More common stuff */
145#define BATTERY_DEV_NAME "battery" 150#define BATTERY_DEV_NAME "battery"