diff options
author | wdenk <wdenk> | 2003-10-19 22:30:08 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-10-19 22:30:08 +0000 |
commit | d7281f41094bee59eca958de3c04995a2f79034a (patch) | |
tree | 74a95807299403fd74f7a58fa93de17963a9fde1 /board | |
parent | e7df029f1a24989532300c5e1bdfc83c77233594 (diff) | |
download | u-boot-imx-d7281f41094bee59eca958de3c04995a2f79034a.zip u-boot-imx-d7281f41094bee59eca958de3c04995a2f79034a.tar.gz u-boot-imx-d7281f41094bee59eca958de3c04995a2f79034a.tar.bz2 |
* Fix PCI problems on PPChameleonEVB
* TRAB auto-update: image type patch by Martin Krause, 17 Oct 2003
Diffstat (limited to 'board')
-rw-r--r-- | board/trab/auto_update.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/trab/auto_update.c b/board/trab/auto_update.c index dd62d09..33dece2 100644 --- a/board/trab/auto_update.c +++ b/board/trab/auto_update.c @@ -260,7 +260,8 @@ au_check_valid(int idx, long nbytes) printf ("Image %s wrong type\n", aufile[idx]); return -1; } - if ((idx == IDX_APP) && (hdr->ih_type != IH_TYPE_RAMDISK)) { + if ((idx == IDX_APP) && (hdr->ih_type != IH_TYPE_RAMDISK) + && (hdr->ih_type != IH_TYPE_FILESYSTEM)) { printf ("Image %s wrong type\n", aufile[idx]); return -1; } |