[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[microblaze-uclinux] petalogix



 

            So I download a fresh copy of the uClinux BSP package for the MicroBlaze in order to see what 1.00.d is all about and noticed there are differences between the 1.00.c I download late last year and tested out on my ML401 board:

 

diff -r c:/ml401/bsp/uclinux_v1_00_c/data/uclinux_v2_1_0.mld edk_user_repository/uClinux/bsp/uclinux_v1_00_c/data/uclinux_v2_1_0.mld

18a19

> PARAMETER name = main_memory_offset, desc="Manual override of memory region st

art offset", type = integer, default = 0;

22a24

> PARAMETER name = flash_memory_offset, desc="Manual override of flash memory re

gion start offset", type = integer, default = 0;

diff -r c:/ml401_i2c/bsp/uclinux_v1_00_c/data/uclinux_v2_1_0.tcl edk_user_repository/uClinux/bsp/uclinux_v1_00_c/data/uclinux_v2_1_0.tcl

36a37,41

>       # Make sure override_array is empty on entry to this function

>       array unset override_array

>       array set override_array {}

>       global override_array

> 

208a214,222

>       # Check for manual override of memory region offset (start)

>       set mem_offset_override [xget_sw_parameter_value $os_handle "${param_pre

fix}_OFFSET"]

>       if {$mem_offset_override==0 || [string match $mem_offset_override ""]} {

 

>         } else {

>               puts "Override specified for ${param_prefix}:$mem_offset_overrid

e"

>               set mem_start [expr $mem_start + $mem_offset_override]

>       }

> 

> 

239c253,258

<        global periph_count

---

>       global periph_count

> 

>       # Make sure periph_counts is empty on entry to this function

>       array unset periph_count

>       array set periph_count {}

>       global periph_count

 

 

            Am I missing something?

 

            Bret