remove fwcfg limit of 32 bytes

This commit is contained in:
K. Lange 2018-07-17 16:28:09 +09:00
parent 338c3bc11c
commit 73839aa0dc
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ int main(int argc, char * argv[]) {
/* if we found the requested file, read it from the port */
outports(FW_CFG_PORT_OUT, file.select);
for (unsigned int i = 0; i < 32 && i < file.size; ++i) {
for (unsigned int i = 0; i < file.size; ++i) {
fputc(inportb(FW_CFG_PORT_IN), stdout);
}