From d0c9237ee148c309be7d302a0adf99aa46ae8a66 Mon Sep 17 00:00:00 2001 From: Andy Green Date: Fri, 28 Nov 2008 10:16:45 +0000 Subject: [PATCH] qi-fix-nand-noboot-append-disable.patch Recent addition of append and noboot file checks broke NAND Reported-by: Micael Henriksson Signed-off-by: Andy Green --- qiboot/src/phase2.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qiboot/src/phase2.c b/qiboot/src/phase2.c index 66d9150..30c9b15 100644 --- a/qiboot/src/phase2.c +++ b/qiboot/src/phase2.c @@ -66,6 +66,9 @@ int read_file(const char * filepath, u8 * destination, int size) case FS_FAT: /* FIXME */ case FS_RAW: + /* any filename-related request in raw filesystem will fail */ + if (filepath) + return -1; puts(" RAW open: +"); printdec(partition_offset_blocks); puts(" 512-byte blocks\n");