summaryrefslogtreecommitdiff
path: root/firmware/rolo.c
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2022-03-03 19:56:26 +0000
committerAidan MacDonald <amachronic@protonmail.com>2022-03-11 11:15:56 -0500
commit428491df697e0a87eb14512151b3ce969dae8c54 (patch)
tree2b89996fbac4450001385fe54741bc361608ace5 /firmware/rolo.c
parent7fa48faeb55fb43b6a4e727d0abd104b267c89a4 (diff)
downloadrockbox-428491df697e0a87eb14512151b3ce969dae8c54.tar.gz
rockbox-428491df697e0a87eb14512151b3ce969dae8c54.zip
x1000: support new binary header in rolo
Change-Id: I192c3d69616c39534ff329174c4d8d4a357d014d
Diffstat (limited to 'firmware/rolo.c')
-rw-r--r--firmware/rolo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/rolo.c b/firmware/rolo.c
index 24488e5934..d280e39243 100644
--- a/firmware/rolo.c
+++ b/firmware/rolo.c
@@ -129,9 +129,10 @@ static void rolo_error(const char *text)
129 lcd_scroll_stop(); 129 lcd_scroll_stop();
130} 130}
131 131
132#if CONFIG_CPU == IMX31L || CONFIG_CPU == RK27XX 132#if CONFIG_CPU == IMX31L || CONFIG_CPU == RK27XX || CONFIG_CPU == X1000
133/* this is in firmware/target/arm/imx31/rolo_restart.c for IMX31 */ 133/* this is in firmware/target/arm/imx31/rolo_restart.c for IMX31 */
134/* this is in firmware/target/arm/rk27xx/rolo_restart.c for rk27xx */ 134/* this is in firmware/target/arm/rk27xx/rolo_restart.c for rk27xx */
135/* this is in firmware/target/mips/ingenic_x1000/boot-x1000.c for X1000 */
135extern void rolo_restart(const unsigned char* source, unsigned char* dest, 136extern void rolo_restart(const unsigned char* source, unsigned char* dest,
136 int length); 137 int length);
137#else 138#else