Ignore:
Timestamp:
May 19, 2016, 3:15:16 PM (8 years ago)
Author:
meunier
Message:
  • Passing BLOCK_SIZE as a Makefile parameter in tsar bootloader
  • Adding a 32-bit version for the bootloader
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/softs/tsar_boot/Makefile

    r1024 r1042  
    66HARD_CONFIG_PATH ?= ../../../giet_vm
    77MAKECMDGOALS     ?= none
    8 BS_PROC    ?= 0
     8BS_PROC          ?= 0
     9USE_32BIT        ?= 0
     10BLOCK_SIZE       ?= 512
    911
    1012MAKECMDGOALS ?= none
     
    2325    DEFS   := "-DRESET_SYSTEM_CLK=$(SYSTEM_CLK)"
    2426endif
    25 DEFS       := -DBS_PROC=$(BS_PROC)
     27DEFS       := -DBS_PROC=$(BS_PROC) -DBLOCK_SIZE=$(BLOCK_SIZE) -DUSE_32BIT=$(USE_32BIT)
    2628
    2729LD         := mipsel-unknown-elf-ld
Note: See TracChangeset for help on using the changeset viewer.