summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/filesystem-app.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-05-03 09:29:01 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-05-03 15:31:52 +0200
commit83d8b25fdabb1ddce50e6424c27b97394b74d5ac (patch)
treebc29e5dbeb038c93961d0e46c0f02f802dbbdcac /firmware/target/hosted/filesystem-app.c
parent7256a3f220b1f9d99178a44a3b48828446eccee1 (diff)
downloadrockbox-83d8b25fdabb1ddce50e6424c27b97394b74d5ac.tar.gz
rockbox-83d8b25fdabb1ddce50e6424c27b97394b74d5ac.zip
filesystem: don't PIVOT_ROOT for checkps and simulator builds for hiby targets
Change-Id: I297cbfb60aa18c0895b27ffa787ef6fb9440e03c
Diffstat (limited to 'firmware/target/hosted/filesystem-app.c')
-rw-r--r--firmware/target/hosted/filesystem-app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/hosted/filesystem-app.c b/firmware/target/hosted/filesystem-app.c
index b49412ea48..e54f0b91f7 100644
--- a/firmware/target/hosted/filesystem-app.c
+++ b/firmware/target/hosted/filesystem-app.c
@@ -36,7 +36,7 @@
36#include "rbpaths.h" 36#include "rbpaths.h"
37#include "logf.h" 37#include "logf.h"
38 38
39#if (defined(AGPTEK_ROCKER) || defined(XDUOO_X3II) || defined(XDUOO_X20)) && !defined(BOOTLOADER) 39#if (defined(AGPTEK_ROCKER) || defined(XDUOO_X3II) || defined(XDUOO_X20)) && !(defined(BOOTLOADER) || defined(CHECKWPS) || defined(SIMULATOR))
40#define PIVOT_ROOT "/mnt/sd_0" 40#define PIVOT_ROOT "/mnt/sd_0"
41#endif 41#endif
42 42