Changeset 53a8288 in buchla-68k for misc


Ignore:
Timestamp:
08/19/2017 10:07:49 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
23e1597
Parents:
ad89950
Message:

Use absolute path for objdump.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • misc/flopvbl.sh

    rad89950 r53a8288  
    11# Check, whether FLOPVBL == flopvbl and FLOCK == flock. If yes, then COUNT == 2.
    22
    3 COUNT=$(m68k-none-elf-objdump --syms bios.elf |
     3OBJD=${1}
     4
     5if [ -z "${OBJD}" ]; then
     6        OBJD=m68k-none-elf-objdump
     7fi
     8
     9COUNT=$(${OBJD} --syms bios.elf |
    410               grep -i -e flopvbl -e flock |
    511               cut -c -8 |
Note: See TracChangeset for help on using the changeset viewer.