config/companion_libs/ppl.in
author David Holsgrove <david.holsgrove@xilinx.com>
Thu Oct 04 13:26:14 2012 +1000 (2012-10-04)
changeset 3075 aadd4647dd91
parent 2484 d1a8c2ae7946
child 3135 3829050af02a
permissions -rw-r--r--
scripts/functions: add a generic custom location infrastructure

Add a generic custom location infrastructure (inspired by the one in
kernel/linux) to allow the user to use custom tarballs or directories
for any component.

Signed-off-by: "David Holsgrove" <david.holsgrove@xilinx.com>
[yann.morin.1998@free.fr: move config option, improve help text, fix API doc]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <131c163c69f9cc81d2be.1349931191@localhost.localdomain>
PatchWork-Id: 190784
Message-Id: <0bbaba9190a76ba97f72.1349931192@localhost.localdomain>
PatchWork-Id: 190785
     1 # PPL options
     2 
     3 choice
     4     bool
     5     prompt "PPL version"
     6 # Don't remove next line
     7 # CT_INSERT_VERSION_BELOW
     8 
     9 config PPL_V_0_11_2
    10     bool
    11     prompt "0.11.2"
    12     select PPL_0_11
    13 
    14 config PPL_V_0_11_1
    15     bool
    16     prompt "0.11.1"
    17     select PPL_0_11
    18 
    19 config PPL_V_0_11
    20     bool
    21     prompt "0.11"
    22     select PPL_0_11
    23 
    24 config PPL_V_0_10_2
    25     bool
    26     prompt "0.10.2"
    27 
    28 endchoice
    29 
    30 config PPL_VERSION
    31     string
    32 # Don't remove next line
    33 # CT_INSERT_VERSION_STRING_BELOW
    34     default "0.11.2" if PPL_V_0_11_2
    35     default "0.11.1" if PPL_V_0_11_1
    36     default "0.11" if PPL_V_0_11
    37     default "0.10.2" if PPL_V_0_10_2
    38 
    39 # For PPL 0.11, we need to pull libpwl if configured static
    40 config PPL_0_11
    41     bool
    42     select PPL_NEEDS_LIBPWL if ! COMPLIBS_SHARED
    43 
    44 config PPL_NEEDS_LIBPWL
    45     bool