Home | History | Annotate | Download | only in recovery

Lines Matching full:xloader

152 // 4460 EMU xloader (128KB)
153 // 4460 HS (eng) xloader (128KB)
154 // 4460 HS (prod) xloader (128KB)
155 // 4430 HS xloader(128KB)
305 // The offsets into xloader part of the bootloader image
308 FILE* xloader = fopen(xloader_loc, "r+b");
309 if (xloader == NULL) {
314 // index into the correct xloader offset
315 int written = fwrite(image_data+xloader_offset, 1, BOOT_PART_LEN, xloader);
316 int close_status = fclose(xloader);
318 fprintf(stderr, "Failed writing to /xloader\n");