- char line[512];
- while(fgets(line, sizeof(line), f)) {
- if(memcmp(line, "S3", 2)==0) {
- char *s = line + 2;
- int len = HexByte(s) - 5;
- s += 2;
-
- char addrStr[9];
- memcpy(addrStr, s, 8);
- addrStr[8] = '\0';
- uint32_t addr;
- sscanf(addrStr, "%x", &addr);
- s += 8;
-
- /* Accept files that are located at PHYSICAL_FLASH_START, and files that are located at 0 */
- if(addr < PHYSICAL_FLASH_START)
- addr += PHYSICAL_FLASH_START;
-
- int i;
- for(i = 0; i < len; i++) {
- while((addr+i) > ExpectedAddr) {
- GotByte(ExpectedAddr, 0xff, start_addr, end_addr, translate);
+ char buf[4];
+ fread(buf, 1, 4, f);
+ if (memcmp(buf, "\x7F" "ELF", 4) == 0) {
+ int i;
+ fseek(f, 0, SEEK_SET);
+ Elf32_Ehdr header;
+ fread(&header, 1, sizeof(header), f);
+ int count = header.e_phnum;
+ printf("count=%d phoff=%x\n", count, header.e_phoff);
+ Elf32_Phdr phdr;
+
+ for (i=0; i<header.e_phnum; i++) {
+ fseek(f, header.e_phoff + i * sizeof(Elf32_Phdr), SEEK_SET);
+ fread(&phdr, 1, sizeof(phdr), f);
+ printf("type=%d offset=%x paddr=%x vaddr=%x filesize=%x memsize=%x flags=%x align=%x\n",
+ phdr.p_type, phdr.p_offset, phdr.p_paddr, phdr.p_vaddr, phdr.p_filesz, phdr.p_memsz, phdr.p_flags, phdr.p_align);
+ if (phdr.p_type == PT_LOAD && phdr.p_filesz > 0 && phdr.p_paddr >= PHYSICAL_FLASH_START
+ && (phdr.p_paddr + phdr.p_filesz) < PHYSICAL_FLASH_END) {
+ printf("flashing offset=%x paddr=%x size=%x\n", phdr.p_offset, phdr.p_paddr, phdr.p_filesz);
+ if (phdr.p_offset == 0) {
+ printf("skipping forward 0x2000 because of strange linker thing\n");
+ phdr.p_offset += 0x2000;
+ phdr.p_paddr += 0x2000;
+ phdr.p_filesz -= 0x2000;
+ phdr.p_memsz -= 0x2000;