diff options
author | Dana Conrad <dconrad@fastmail.com> | 2024-09-08 16:52:51 +0000 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-09-08 17:10:04 -0400 |
commit | a7cfee640dcaa00e3717bd2ef4bd54489f491960 (patch) | |
tree | 653866381024e95c6a5ebb1eb1d8a8d52ab3468a | |
parent | 1f1b3bce86c14c757238a4b15cb8d43e44e0d6b6 (diff) | |
download | rockbox-a7cfee640d.tar.gz rockbox-a7cfee640d.zip |
erosqnative: only check for EROSQN_VER if bootloader build
Change-Id: If1dea2414b5c55d54dfd48aa9b24d29bdd49001a
-rw-r--r-- | firmware/export/config/erosqnative.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/export/config/erosqnative.h b/firmware/export/config/erosqnative.h index 357be1c280..adb1b29e01 100644 --- a/firmware/export/config/erosqnative.h +++ b/firmware/export/config/erosqnative.h @@ -16,9 +16,11 @@ * * This allows us to fix the LCD init issues with v3 players. */ +#ifdef BOOTLOADER #ifndef EROSQN_VER #error "Must define EROSQN_VER" #endif +#endif /* CPU defines */ #define CONFIG_CPU X1000 |