Changeset 232

Show
Ignore:
Timestamp:
09/23/08 22:50:33 (2 months ago)
Author:
jcrouse
Message:

buildrom: Fix custom VBIOS for dbm690t, again

My previous fix just swapped the error condition. This one works for
both custom and "default" values. Trivial.

Signed-off-by: Jordan Crouse <jordan.crouse@…>
Acked-by: Jordan Crouse <jordan.crouse@…>

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • buildrom-devel/config/platforms/dbm690t.conf

    r230 r232  
    5858# VIDEO BIOS configuration 
    5959 
    60 ifndef $(CONFIG_AMD_R690_VBIOS) 
     60ifeq ($(CONFIG_AMD_R690_CUSTOM_VBIOS),y) 
     61AMD_R690_VBIOS_LOCATION = $(subst ",,$(CONFIG_AMD_R690_VBIOS)) 
     62else 
    6163AMD_R690_VBIOS_LOCATION := $(BASE_DIR)/sources/amd_rs690_vbios.bin 
    62 else 
    63 AMD_R690_VBIOS_LOCATION = $(subst ",,$(CONFIG_AMD_R690_VBIOS)) 
    6464endif