Skip to content
Snippets Groups Projects
  • Simon Glass's avatar
    001f3142
    Makefile: Provide an option to select SPL or TPL · 001f3142
    Simon Glass authored
    
    At present we have SPL_ which can be used in Makefiles to select between
    normal and SPL CONFIGs like this:
    
        obj-$(CONFIG_$(SPL_)DM)		+= core/
    
    When TPL is being built, SPL_ has the value 'SPL' which is generally a
    good idea since they tend to follow each other. But in extreme situations
    we may want to distinugish between SPL and TPL. For example we may not
    want to enable CONFIG_DM with TPL.
    
    Add a new SPL_TPL_ variable which is set to either empty (for U-Boot
    proper), 'SPL' or 'TPL'. This may prove useful with TPL-specific options.
    
    Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
    001f3142
    History
    Makefile: Provide an option to select SPL or TPL
    Simon Glass authored
    
    At present we have SPL_ which can be used in Makefiles to select between
    normal and SPL CONFIGs like this:
    
        obj-$(CONFIG_$(SPL_)DM)		+= core/
    
    When TPL is being built, SPL_ has the value 'SPL' which is generally a
    good idea since they tend to follow each other. But in extreme situations
    we may want to distinugish between SPL and TPL. For example we may not
    want to enable CONFIG_DM with TPL.
    
    Add a new SPL_TPL_ variable which is set to either empty (for U-Boot
    proper), 'SPL' or 'TPL'. This may prove useful with TPL-specific options.
    
    Signed-off-by: default avatarSimon Glass <sjg@chromium.org>