Stefan Reinauer has posted comments on this change. ( https://review.coreboot.org/c/em100/+/36943 )
Change subject: Use binaries from Windows installer directly ......................................................................
Patch Set 11:
(1 comment)
https://review.coreboot.org/c/em100/+/36943/11/tar.c File tar.c:
https://review.coreboot.org/c/em100/+/36943/11/tar.c@292 PS11, Line 292: #if 0 : int test_tar(void) : { : TFILE *firmware; : TFILE *tfile = tar_load_compressed(get_em100_file("firmware.tar.xz")); : if (!tfile) { : printf("firmware.tar.xz not found.\n"); : return 1; : } : : tar_ls(tfile); : firmware = tar_find(tfile, "firmware/em100pro_fw_2.27_0.89_3.3V.dpfw"); : if (!firmware) { : printf("File not found.\n"); : tar_close(tfile); : return 1; : } : : hexdump(firmware->address, 76); : : tar_close(tfile); : : return 0; : } : #endif : drop