diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-05-03 09:29:01 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-05-03 15:31:52 +0200 |
commit | 83d8b25fdabb1ddce50e6424c27b97394b74d5ac (patch) | |
tree | bc29e5dbeb038c93961d0e46c0f02f802dbbdcac /firmware | |
parent | 7256a3f220b1f9d99178a44a3b48828446eccee1 (diff) |
filesystem: don't PIVOT_ROOT for checkps and simulator builds for hiby targets
Change-Id: I297cbfb60aa18c0895b27ffa787ef6fb9440e03c
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/target/hosted/filesystem-app.c | 2 |
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 @@ #include "rbpaths.h" #include "logf.h" -#if (defined(AGPTEK_ROCKER) || defined(XDUOO_X3II) || defined(XDUOO_X20)) && !defined(BOOTLOADER) +#if (defined(AGPTEK_ROCKER) || defined(XDUOO_X3II) || defined(XDUOO_X20)) && !(defined(BOOTLOADER) || defined(CHECKWPS) || defined(SIMULATOR)) #define PIVOT_ROOT "/mnt/sd_0" #endif |