diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-05-24 07:33:02 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-05-24 13:37:04 +0200 |
commit | ea9ed2f9e81f050d382cea795419e8f550c7bc89 (patch) | |
tree | f9c7b0f91e4f426a3acded9f233570bac3654931 | |
parent | b935475c588bdd6dce121cd2a0b1fc6834fee272 (diff) | |
download | rockbox-ea9ed2f9e8.tar.gz rockbox-ea9ed2f9e8.zip |
cowond2: Disable internal NAND storage; use only the SD card.
This allows the player to be usable.
Slightly adapted from:
https://forums.rockbox.org/index.php/topic,10164.msg245357.html#msg245357
Change-Id: I7bdd681b132cac4c82e3ba6aabe74169645eee4c
-rw-r--r-- | firmware/export/config/cowond2.h | 6 | ||||
-rw-r--r-- | manual/intro/main.tex | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/firmware/export/config/cowond2.h b/firmware/export/config/cowond2.h index d4623381fc..167f1125a1 100644 --- a/firmware/export/config/cowond2.h +++ b/firmware/export/config/cowond2.h @@ -58,10 +58,12 @@ /* define this if you have a flash memory storage */ #define HAVE_FLASH_STORAGE -#define CONFIG_STORAGE (STORAGE_NAND | STORAGE_SD) +/* NAND is broken. */ +//#define CONFIG_STORAGE (STORAGE_NAND | STORAGE_SD) +#define CONFIG_STORAGE STORAGE_SD #define HAVE_MULTIDRIVE #define HAVE_HOTSWAP -#define NUM_DRIVES 2 +#define NUM_DRIVES 1 #define CONFIG_NAND NAND_TCC diff --git a/manual/intro/main.tex b/manual/intro/main.tex index ef0351c5b0..13b15a0ed5 100644 --- a/manual/intro/main.tex +++ b/manual/intro/main.tex @@ -40,7 +40,7 @@ Rockbox and this manual is the collaborative effort of the Rockbox team and its contributors. See the appendix for a complete list of contributors. -\copyright~2003--2017 The Rockbox Team and its contributors, +\copyright~2003--2020 The Rockbox Team and its contributors, \copyright~2004 Christi Alice Scarborough, \copyright~2003 Jos\'{e} Maria Garcia-Valdecasas Bernal \& Peter Schlenker. \end{quote} |