Subversion Repositories pentevo

Rev

Rev 982 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
964 savelij 1
#!/bin/bash
2
 
987 lvd 3
if [ ! -v ASL_PATH ]; then
4
        ASL_PATH="../../../tools/asl/bin/"
5
fi
964 savelij 6
 
987 lvd 7
if [ ! -v MHMT_PATH ]; then
8
        MHMT_PATH="../../../tools/mhmt/"
9
fi
10
 
11
#../../../tools/asl/bin/asl -U -L -x -D DELVAR=0 micro_boot_fat.a80
12
#../../../tools/asl/bin/p2bin micro_boot_fat.p ../micro_boot_fat.rom -r '$-$' -k
13
$ASL_PATH/asl -U -L -x -D DELVAR=0 micro_boot_fat.a80
14
$ASL_PATH/p2bin micro_boot_fat.p ../micro_boot_fat.rom -r '$-$' -k
15
 
16
#../../../tools/mhmt/mhmt -mlz ../micro_boot_fat.rom ../micro_boot_fat_pack.rom
17
$MHMT_PATH/mhmt -mlz ../micro_boot_fat.rom ../micro_boot_fat_pack.rom
18