From 8b92936a6862ca7b06ddd187df9f513627642015 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Mon, 21 Nov 2011 17:28:36 -0300 Subject: [PATCH] m1nor: accept system.fpg as alias for soc.fpg --- m1/tools/m1nor | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/m1/tools/m1nor b/m1/tools/m1nor index 0c37290..51beefb 100755 --- a/m1/tools/m1nor +++ b/m1/tools/m1nor @@ -20,7 +20,7 @@ # bios-rescue.bin 0x0022 0000 128k # splash-rescue.raw 0x0024 0000 640k # flickernoise.fbi(res) 0x002E 0000 4096k -# soc.fpg 0x006E 0000 1536k +# soc.fpg 0x006E 0000 1536k alias: system.fpg # bios.bin 0x0086 0000 128k # splash.raw 0x0088 0000 640k # flickernoise.fbi 0x0092 0000 4096k @@ -44,6 +44,7 @@ elif [ "${n#bios-rescue}" != "$n" ]; then off=0x220000; ext=.bin elif [ "${n#splash-rescue}" != "$n" ]; then off=0x240000; ext=.raw elif [ "${n#flickernoise-rescue}" != "$n" ]; then off=0x2e0000; ext=.fbi elif [ "${n#soc}" != "$n" ]; then off=0x6e0000; ext=.fpg +elif [ "${n#system}" != "$n" ]; then off=0x6e0000; ext=.fpg elif [ "${n#bios}" != "$n" ]; then off=0x860000; ext=.bin elif [ "${n#splash}" != "$n" ]; then off=0x880000; ext=.raw elif [ "${n#flickernoise}" != "$n" ]; then off=0x920000; ext=.fbi