summaryrefslogtreecommitdiff
path: root/bootloader/telechips.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/telechips.c')
-rw-r--r--bootloader/telechips.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bootloader/telechips.c b/bootloader/telechips.c
index 9e9e75c183..adf3e63483 100644
--- a/bootloader/telechips.c
+++ b/bootloader/telechips.c
@@ -158,21 +158,21 @@ void* main(void)
158 if(rc) 158 if(rc)
159 { 159 {
160 reset_screen(); 160 reset_screen();
161 error(EATA, rc); 161 error(EATA, rc, true);
162 } 162 }
163 163
164 printf("mount"); 164 printf("mount");
165 rc = disk_mount_all(); 165 rc = disk_mount_all();
166 if (rc<=0) 166 if (rc<=0)
167 { 167 {
168 error(EDISK,rc); 168 error(EDISK,rc, true);
169 } 169 }
170 170
171 rc = load_firmware(loadbuffer, BOOTFILE, MAX_LOAD_SIZE); 171 rc = load_firmware(loadbuffer, BOOTFILE, MAX_LOAD_SIZE);
172 172
173 if (rc < 0) 173 if (rc < 0)
174 { 174 {
175 error(EBOOTFILE,rc); 175 error(EBOOTFILE,rc, true);
176 } 176 }
177 else if (rc == EOK) 177 else if (rc == EOK)
178 { 178 {