From: Denys Dmytriyenko <denis@denix.org>
To: openembedded-devel@lists.openembedded.org
Subject: Re: [PATCH] Mass convert PREFERRED_VERSION_* to be weakly assigned.
Date: Tue, 10 Aug 2010 21:54:32 -0400 [thread overview]
Message-ID: <20100811015432.GG7189@denix.org> (raw)
In-Reply-To: <4C61E523.7070405@gmail.com>
On Wed, Aug 11, 2010 at 09:17:47AM +0930, Graham Gower wrote:
> find conf -type f -exec sed -i -e 's/^PREFERRED_VERSION_\([^ \t]*\)\([ \t]*\)=/PREFERRED_VERSION_\1\2?=/' {} \;
>
> Signed-off-by: Graham Gower <graham.gower@gmail.com>
NACK! Not acceptable!
In general - distro maintainers should decide whether to hard pin the version
or not.
Specifically - below is totally wrong! There is a very delicate dependency
between specific versions of TI components and in this case they are all based
on CodecEngine, changing CodecEngine version will change the versions for
all the dependencies:
> ...gstrom-codec-engine-2.25-preferred-versions.inc | 22 +-
> ...rom-codec-engine-2.25.01-preferred-versions.inc | 66 +-
> ...rom-codec-engine-2.25.02-preferred-versions.inc | 66 +-
> ...trom-codec-engine-latest-preferred-versions.inc | 66 +-
> ...-engine-latestproduction-preferred-versions.inc | 66 +-
> diff --git a/conf/distro/include/angstrom-codec-engine-2.25-preferred-versions.inc b/conf/distro/include/angstrom-codec-engine-2.25-preferred-versions.inc
> index 3c3480c..67c3920 100644
> --- a/conf/distro/include/angstrom-codec-engine-2.25-preferred-versions.inc
> +++ b/conf/distro/include/angstrom-codec-engine-2.25-preferred-versions.inc
> @@ -1,14 +1,14 @@
> # Codec engine needs a specific set of version of its dependencies, so we specify them here:
>
> -PREFERRED_VERSION_ti-codec-engine = "2_25_00_05"
> +PREFERRED_VERSION_ti-codec-engine ?= "2_25_00_05"
>
> -PREFERRED_VERSION_ti-biosutils = "1_02_02"
> -PREFERRED_VERSION_ti-cgt6x = "6_1_9"
> -PREFERRED_VERSION_ti-dspbios = "5_41_02_14"
> -PREFERRED_VERSION_ti-dsplink-module = "1_64"
> -PREFERRED_VERSION_ti-edma3lld = "01_11_00_02"
> -PREFERRED_VERSION_ti-framework-components = "2_25_00_04"
> -PREFERRED_VERSION_ti-linuxutils = "2_25_01_06"
> -PREFERRED_VERSION_ti-lpm-module = "2_24_01"
> -PREFERRED_VERSION_ti-xdais = "6_25_00_07"
> -PREFERRED_VERSION_ti-xdctools = "3_16_01_27"
> +PREFERRED_VERSION_ti-biosutils ?= "1_02_02"
> +PREFERRED_VERSION_ti-cgt6x ?= "6_1_9"
> +PREFERRED_VERSION_ti-dspbios ?= "5_41_02_14"
> +PREFERRED_VERSION_ti-dsplink-module ?= "1_64"
> +PREFERRED_VERSION_ti-edma3lld ?= "01_11_00_02"
> +PREFERRED_VERSION_ti-framework-components ?= "2_25_00_04"
> +PREFERRED_VERSION_ti-linuxutils ?= "2_25_01_06"
> +PREFERRED_VERSION_ti-lpm-module ?= "2_24_01"
> +PREFERRED_VERSION_ti-xdais ?= "6_25_00_07"
> +PREFERRED_VERSION_ti-xdctools ?= "3_16_01_27"
> diff --git a/conf/distro/include/angstrom-codec-engine-2.25.01-preferred-versions.inc b/conf/distro/include/angstrom-codec-engine-2.25.01-preferred-versions.inc
> index 5a16f2c..2a9a8ce 100644
> --- a/conf/distro/include/angstrom-codec-engine-2.25.01-preferred-versions.inc
> +++ b/conf/distro/include/angstrom-codec-engine-2.25.01-preferred-versions.inc
> @@ -1,41 +1,41 @@
> # Codec engine needs a specific set of version of its dependencies, so we specify them here:
> # - using edma-lld 01.11.00.03 (instead of 01.11.00.02) to fix installer issue.
>
> -PREFERRED_VERSION_ti-codec-engine = "2_25_01_06"
> -PREFERRED_VERSION_ti-codec-engine-examples = "2_25_01_06"
> +PREFERRED_VERSION_ti-codec-engine ?= "2_25_01_06"
> +PREFERRED_VERSION_ti-codec-engine-examples ?= "2_25_01_06"
>
> -PREFERRED_VERSION_ti-biosutils = "1_02_02"
> -PREFERRED_VERSION_ti-cgt6x = "6_1_9"
> -PREFERRED_VERSION_ti-dspbios = "5_41_02_14"
> -PREFERRED_VERSION_ti-dsplink = "1_64"
> -PREFERRED_VERSION_ti-dsplink-examples = "1_64"
> -PREFERRED_VERSION_ti-dsplink-module = "1_64"
> -PREFERRED_VERSION_ti-edma3lld = "01_11_00_03"
> -PREFERRED_VERSION_ti-framework-components = "2_25_01_05"
> -PREFERRED_VERSION_ti-linuxutils = "2_25_01_06"
> -PREFERRED_VERSION_ti-local-power-manager = "1_24_01"
> -PREFERRED_VERSION_ti-lpm-module = "1_24_01"
> -PREFERRED_VERSION_ti-lpm-utils = "1_24_01"
> -PREFERRED_VERSION_ti-xdais = "6_25_01_08"
> -PREFERRED_VERSION_ti-xdctools = "3_16_01_27"
> +PREFERRED_VERSION_ti-biosutils ?= "1_02_02"
> +PREFERRED_VERSION_ti-cgt6x ?= "6_1_9"
> +PREFERRED_VERSION_ti-dspbios ?= "5_41_02_14"
> +PREFERRED_VERSION_ti-dsplink ?= "1_64"
> +PREFERRED_VERSION_ti-dsplink-examples ?= "1_64"
> +PREFERRED_VERSION_ti-dsplink-module ?= "1_64"
> +PREFERRED_VERSION_ti-edma3lld ?= "01_11_00_03"
> +PREFERRED_VERSION_ti-framework-components ?= "2_25_01_05"
> +PREFERRED_VERSION_ti-linuxutils ?= "2_25_01_06"
> +PREFERRED_VERSION_ti-local-power-manager ?= "1_24_01"
> +PREFERRED_VERSION_ti-lpm-module ?= "1_24_01"
> +PREFERRED_VERSION_ti-lpm-utils ?= "1_24_01"
> +PREFERRED_VERSION_ti-xdais ?= "6_25_01_08"
> +PREFERRED_VERSION_ti-xdctools ?= "3_16_01_27"
>
> -PREFERRED_VERSION_ti-codecs-dm355 = "1_13_000"
> -PREFERRED_VERSION_ti-codecs-dm355-server = "1_13_000"
> -PREFERRED_VERSION_ti-codecs-dm365 = "3_10_00_02"
> -PREFERRED_VERSION_ti-codecs-dm365-server = "3_10_00_02"
> -PREFERRED_VERSION_ti-codecs-dm6446 = "2_05_00_00"
> -PREFERRED_VERSION_ti-codecs-dm6446-server = "2_05_00_00"
> -PREFERRED_VERSION_ti-codecs-dm6467 = "1_00_00_03"
> -PREFERRED_VERSION_ti-codecs-dm6467-server = "1_00_00_03"
> -PREFERRED_VERSION_ti-codecs-omap3530 = "1_00_01"
> -PREFERRED_VERSION_ti-codecs-omap3530-server = "1_00_00"
> -PREFERRED_VERSION_ti-codecs_omapl137 = "1_00_00"
> -PREFERRED_VERSION_ti-codecs_omapl137-server = "1_00_00"
> -PREFERRED_VERSION_ti-codecs_omapl138 = "1_00_00"
> -PREFERRED_VERSION_ti-codecs-omapl138-server = "1_00_00"
> -PREFERRED_VERSION_ti-dm355mm-module = "1_13"
> -PREFERRED_VERSION_ti-dm365mm-module = "1_0_3"
> -PREFERRED_VERSION_ti-dvsdk-demos = "3_10_00_11"
> +PREFERRED_VERSION_ti-codecs-dm355 ?= "1_13_000"
> +PREFERRED_VERSION_ti-codecs-dm355-server ?= "1_13_000"
> +PREFERRED_VERSION_ti-codecs-dm365 ?= "3_10_00_02"
> +PREFERRED_VERSION_ti-codecs-dm365-server ?= "3_10_00_02"
> +PREFERRED_VERSION_ti-codecs-dm6446 ?= "2_05_00_00"
> +PREFERRED_VERSION_ti-codecs-dm6446-server ?= "2_05_00_00"
> +PREFERRED_VERSION_ti-codecs-dm6467 ?= "1_00_00_03"
> +PREFERRED_VERSION_ti-codecs-dm6467-server ?= "1_00_00_03"
> +PREFERRED_VERSION_ti-codecs-omap3530 ?= "1_00_01"
> +PREFERRED_VERSION_ti-codecs-omap3530-server ?= "1_00_00"
> +PREFERRED_VERSION_ti-codecs_omapl137 ?= "1_00_00"
> +PREFERRED_VERSION_ti-codecs_omapl137-server ?= "1_00_00"
> +PREFERRED_VERSION_ti-codecs_omapl138 ?= "1_00_00"
> +PREFERRED_VERSION_ti-codecs-omapl138-server ?= "1_00_00"
> +PREFERRED_VERSION_ti-dm355mm-module ?= "1_13"
> +PREFERRED_VERSION_ti-dm365mm-module ?= "1_0_3"
> +PREFERRED_VERSION_ti-dvsdk-demos ?= "3_10_00_11"
>
> # PREFERRED_VERSION_ti-dmai = ""
> # PREFERRED_VERSION_ti-dmai-apps = ""
> diff --git a/conf/distro/include/angstrom-codec-engine-2.25.02-preferred-versions.inc b/conf/distro/include/angstrom-codec-engine-2.25.02-preferred-versions.inc
> index 920263a..e533dc7 100644
> --- a/conf/distro/include/angstrom-codec-engine-2.25.02-preferred-versions.inc
> +++ b/conf/distro/include/angstrom-codec-engine-2.25.02-preferred-versions.inc
> @@ -1,41 +1,41 @@
> # Codec engine needs a specific set of version of its dependencies, so we specify them here:
> # - using edma-lld 01.11.00.03 (instead of 01.11.00.02) to fix installer issue.
>
> -PREFERRED_VERSION_ti-codec-engine = "2_25_02_11"
> -PREFERRED_VERSION_ti-codec-engine-examples = "2_25_02_11"
> +PREFERRED_VERSION_ti-codec-engine ?= "2_25_02_11"
> +PREFERRED_VERSION_ti-codec-engine-examples ?= "2_25_02_11"
>
> -PREFERRED_VERSION_ti-biosutils = "1_02_02"
> -PREFERRED_VERSION_ti-cgt6x = "6_1_5"
> -PREFERRED_VERSION_ti-dspbios = "5_41_00_06"
> -PREFERRED_VERSION_ti-dsplink = "1_64"
> -PREFERRED_VERSION_ti-dsplink-examples = "1_64"
> -PREFERRED_VERSION_ti-dsplink-module = "1_64"
> -PREFERRED_VERSION_ti-edma3lld = "01_11_00_03"
> -PREFERRED_VERSION_ti-framework-components = "2_25_01_05"
> -PREFERRED_VERSION_ti-linuxutils = "2_25_02_08"
> -PREFERRED_VERSION_ti-local-power-manager = "1_24_02_09"
> -PREFERRED_VERSION_ti-lpm-module = "1_24_02_09"
> -PREFERRED_VERSION_ti-lpm-utils = "1_24_02_09"
> -PREFERRED_VERSION_ti-xdais = "6_25_02_11"
> -PREFERRED_VERSION_ti-xdctools = "3_16_00_18"
> +PREFERRED_VERSION_ti-biosutils ?= "1_02_02"
> +PREFERRED_VERSION_ti-cgt6x ?= "6_1_5"
> +PREFERRED_VERSION_ti-dspbios ?= "5_41_00_06"
> +PREFERRED_VERSION_ti-dsplink ?= "1_64"
> +PREFERRED_VERSION_ti-dsplink-examples ?= "1_64"
> +PREFERRED_VERSION_ti-dsplink-module ?= "1_64"
> +PREFERRED_VERSION_ti-edma3lld ?= "01_11_00_03"
> +PREFERRED_VERSION_ti-framework-components ?= "2_25_01_05"
> +PREFERRED_VERSION_ti-linuxutils ?= "2_25_02_08"
> +PREFERRED_VERSION_ti-local-power-manager ?= "1_24_02_09"
> +PREFERRED_VERSION_ti-lpm-module ?= "1_24_02_09"
> +PREFERRED_VERSION_ti-lpm-utils ?= "1_24_02_09"
> +PREFERRED_VERSION_ti-xdais ?= "6_25_02_11"
> +PREFERRED_VERSION_ti-xdctools ?= "3_16_00_18"
>
> -PREFERRED_VERSION_ti-codecs-dm355 = "1_13_000"
> -PREFERRED_VERSION_ti-codecs-dm355-server = "1_13_000"
> -PREFERRED_VERSION_ti-codecs-dm365 = "3_10_00_02"
> -PREFERRED_VERSION_ti-codecs-dm365-server = "3_10_00_02"
> -PREFERRED_VERSION_ti-codecs-dm6446 = "2_05_00_00"
> -PREFERRED_VERSION_ti-codecs-dm6446-server = "2_05_00_00"
> -PREFERRED_VERSION_ti-codecs-dm6467 = "1_00_00_03"
> -PREFERRED_VERSION_ti-codecs-dm6467-server = "1_00_00_03"
> -PREFERRED_VERSION_ti-codecs-omap3530 = "1_00_01"
> -PREFERRED_VERSION_ti-codecs-omap3530-server = "1_00_01"
> -PREFERRED_VERSION_ti-codecs_omapl137 = "1_00_00"
> -PREFERRED_VERSION_ti-codecs_omapl137-server = "1_00_00"
> -PREFERRED_VERSION_ti-codecs_omapl138 = "1_00_00"
> -PREFERRED_VERSION_ti-codecs-omapl138-server = "1_00_00"
> -PREFERRED_VERSION_ti-dm355mm-module = "1_13"
> -PREFERRED_VERSION_ti-dm365mm-module = "1_0_3"
> -PREFERRED_VERSION_ti-dvsdk-demos = "3_10_00_11"
> +PREFERRED_VERSION_ti-codecs-dm355 ?= "1_13_000"
> +PREFERRED_VERSION_ti-codecs-dm355-server ?= "1_13_000"
> +PREFERRED_VERSION_ti-codecs-dm365 ?= "3_10_00_02"
> +PREFERRED_VERSION_ti-codecs-dm365-server ?= "3_10_00_02"
> +PREFERRED_VERSION_ti-codecs-dm6446 ?= "2_05_00_00"
> +PREFERRED_VERSION_ti-codecs-dm6446-server ?= "2_05_00_00"
> +PREFERRED_VERSION_ti-codecs-dm6467 ?= "1_00_00_03"
> +PREFERRED_VERSION_ti-codecs-dm6467-server ?= "1_00_00_03"
> +PREFERRED_VERSION_ti-codecs-omap3530 ?= "1_00_01"
> +PREFERRED_VERSION_ti-codecs-omap3530-server ?= "1_00_01"
> +PREFERRED_VERSION_ti-codecs_omapl137 ?= "1_00_00"
> +PREFERRED_VERSION_ti-codecs_omapl137-server ?= "1_00_00"
> +PREFERRED_VERSION_ti-codecs_omapl138 ?= "1_00_00"
> +PREFERRED_VERSION_ti-codecs-omapl138-server ?= "1_00_00"
> +PREFERRED_VERSION_ti-dm355mm-module ?= "1_13"
> +PREFERRED_VERSION_ti-dm365mm-module ?= "1_0_3"
> +PREFERRED_VERSION_ti-dvsdk-demos ?= "3_10_00_11"
>
> # PREFERRED_VERSION_ti-dmai = ""
> # PREFERRED_VERSION_ti-dmai-apps = ""
> diff --git a/conf/distro/include/angstrom-codec-engine-latest-preferred-versions.inc b/conf/distro/include/angstrom-codec-engine-latest-preferred-versions.inc
> index 3de327b..2936abf 100644
> --- a/conf/distro/include/angstrom-codec-engine-latest-preferred-versions.inc
> +++ b/conf/distro/include/angstrom-codec-engine-latest-preferred-versions.inc
> @@ -1,41 +1,41 @@
> # This is the latest set of TI components
> #
>
> -PREFERRED_VERSION_ti-codec-engine = "2_25_02_11"
> -PREFERRED_VERSION_ti-codec-engine-examples = "2_25_02_11"
> +PREFERRED_VERSION_ti-codec-engine ?= "2_25_02_11"
> +PREFERRED_VERSION_ti-codec-engine-examples ?= "2_25_02_11"
>
> -PREFERRED_VERSION_ti-biosutils = "1_02_02"
> -PREFERRED_VERSION_ti-cgt6x = "6_1_14"
> -PREFERRED_VERSION_ti-dspbios = "5_41_03_17"
> -PREFERRED_VERSION_ti-dsplink = "1_65_00_02"
> -PREFERRED_VERSION_ti-dsplink-examples = "1_65_00_02"
> -PREFERRED_VERSION_ti-dsplink-module = "1_65_00_02"
> -PREFERRED_VERSION_ti-edma3lld = "01_11_00_03"
> -PREFERRED_VERSION_ti-framework-components = "2_25_01_05"
> -PREFERRED_VERSION_ti-linuxutils = "2_25_02_08"
> -PREFERRED_VERSION_ti-local-power-manager = "1_24_02_09"
> -PREFERRED_VERSION_ti-lpm-module = "1_24_02_09"
> -PREFERRED_VERSION_ti-lpm-utils = "1_24_02_09"
> -PREFERRED_VERSION_ti-xdais = "6_25_02_11"
> -PREFERRED_VERSION_ti-xdctools = "3_16_03_36"
> +PREFERRED_VERSION_ti-biosutils ?= "1_02_02"
> +PREFERRED_VERSION_ti-cgt6x ?= "6_1_14"
> +PREFERRED_VERSION_ti-dspbios ?= "5_41_03_17"
> +PREFERRED_VERSION_ti-dsplink ?= "1_65_00_02"
> +PREFERRED_VERSION_ti-dsplink-examples ?= "1_65_00_02"
> +PREFERRED_VERSION_ti-dsplink-module ?= "1_65_00_02"
> +PREFERRED_VERSION_ti-edma3lld ?= "01_11_00_03"
> +PREFERRED_VERSION_ti-framework-components ?= "2_25_01_05"
> +PREFERRED_VERSION_ti-linuxutils ?= "2_25_02_08"
> +PREFERRED_VERSION_ti-local-power-manager ?= "1_24_02_09"
> +PREFERRED_VERSION_ti-lpm-module ?= "1_24_02_09"
> +PREFERRED_VERSION_ti-lpm-utils ?= "1_24_02_09"
> +PREFERRED_VERSION_ti-xdais ?= "6_25_02_11"
> +PREFERRED_VERSION_ti-xdctools ?= "3_16_03_36"
>
> -PREFERRED_VERSION_ti-codecs-dm355 = "1_13_000"
> -PREFERRED_VERSION_ti-codecs-dm355-server = "1_13_000"
> -PREFERRED_VERSION_ti-codecs-dm365 = "3_10_00_02"
> -PREFERRED_VERSION_ti-codecs-dm365-server = "3_10_00_02"
> -PREFERRED_VERSION_ti-codecs-dm6446 = "2_05_00_00"
> -PREFERRED_VERSION_ti-codecs-dm6446-server = "2_05_00_00"
> -PREFERRED_VERSION_ti-codecs-dm6467 = "1_00_00_03"
> -PREFERRED_VERSION_ti-codecs-dm6467-server = "1_00_00_03"
> -PREFERRED_VERSION_ti-codecs-omap3530 = "1_00_01"
> -PREFERRED_VERSION_ti-codecs-omap3530-server = "1_00_01"
> -PREFERRED_VERSION_ti-codecs_omapl137 = "1_00_00"
> -PREFERRED_VERSION_ti-codecs_omapl137-server = "1_00_00"
> -PREFERRED_VERSION_ti-codecs_omapl138 = "1_00_00"
> -PREFERRED_VERSION_ti-codecs-omapl138-server = "1_00_00"
> -PREFERRED_VERSION_ti-dm355mm-module = "1_13"
> -PREFERRED_VERSION_ti-dm365mm-module = "1_0_3"
> -PREFERRED_VERSION_ti-dvsdk-demos = "3_10_00_11"
> +PREFERRED_VERSION_ti-codecs-dm355 ?= "1_13_000"
> +PREFERRED_VERSION_ti-codecs-dm355-server ?= "1_13_000"
> +PREFERRED_VERSION_ti-codecs-dm365 ?= "3_10_00_02"
> +PREFERRED_VERSION_ti-codecs-dm365-server ?= "3_10_00_02"
> +PREFERRED_VERSION_ti-codecs-dm6446 ?= "2_05_00_00"
> +PREFERRED_VERSION_ti-codecs-dm6446-server ?= "2_05_00_00"
> +PREFERRED_VERSION_ti-codecs-dm6467 ?= "1_00_00_03"
> +PREFERRED_VERSION_ti-codecs-dm6467-server ?= "1_00_00_03"
> +PREFERRED_VERSION_ti-codecs-omap3530 ?= "1_00_01"
> +PREFERRED_VERSION_ti-codecs-omap3530-server ?= "1_00_01"
> +PREFERRED_VERSION_ti-codecs_omapl137 ?= "1_00_00"
> +PREFERRED_VERSION_ti-codecs_omapl137-server ?= "1_00_00"
> +PREFERRED_VERSION_ti-codecs_omapl138 ?= "1_00_00"
> +PREFERRED_VERSION_ti-codecs-omapl138-server ?= "1_00_00"
> +PREFERRED_VERSION_ti-dm355mm-module ?= "1_13"
> +PREFERRED_VERSION_ti-dm365mm-module ?= "1_0_3"
> +PREFERRED_VERSION_ti-dvsdk-demos ?= "3_10_00_11"
>
> # PREFERRED_VERSION_ti-dmai = ""
> # PREFERRED_VERSION_ti-dmai-apps = ""
> diff --git a/conf/distro/include/angstrom-codec-engine-latestproduction-preferred-versions.inc b/conf/distro/include/angstrom-codec-engine-latestproduction-preferred-versions.inc
> index c736208..c42b232 100644
> --- a/conf/distro/include/angstrom-codec-engine-latestproduction-preferred-versions.inc
> +++ b/conf/distro/include/angstrom-codec-engine-latestproduction-preferred-versions.inc
> @@ -1,41 +1,41 @@
> # This is the latest set of 'GA'd (Production Release) TI components
> #
>
> -PREFERRED_VERSION_ti-codec-engine = "2_25_02_11"
> -PREFERRED_VERSION_ti-codec-engine-examples = "2_25_02_11"
> +PREFERRED_VERSION_ti-codec-engine ?= "2_25_02_11"
> +PREFERRED_VERSION_ti-codec-engine-examples ?= "2_25_02_11"
>
> -PREFERRED_VERSION_ti-biosutils = "1_02_02"
> -PREFERRED_VERSION_ti-cgt6x = "6_1_14"
> -PREFERRED_VERSION_ti-dspbios = "5_41_03_17"
> -PREFERRED_VERSION_ti-dsplink = "1_64"
> -PREFERRED_VERSION_ti-dsplink-examples = "1_64"
> -PREFERRED_VERSION_ti-dsplink-module = "1_64"
> -PREFERRED_VERSION_ti-edma3lld = "01_11_00_03"
> -PREFERRED_VERSION_ti-framework-components = "2_25_01_05"
> -PREFERRED_VERSION_ti-linuxutils = "2_25_02_08"
> -PREFERRED_VERSION_ti-local-power-manager = "1_24_02_09"
> -PREFERRED_VERSION_ti-lpm-module = "1_24_02_09"
> -PREFERRED_VERSION_ti-lpm-utils = "1_24_02_09"
> -PREFERRED_VERSION_ti-xdais = "6_25_02_11"
> -PREFERRED_VERSION_ti-xdctools = "3_16_03_36"
> +PREFERRED_VERSION_ti-biosutils ?= "1_02_02"
> +PREFERRED_VERSION_ti-cgt6x ?= "6_1_14"
> +PREFERRED_VERSION_ti-dspbios ?= "5_41_03_17"
> +PREFERRED_VERSION_ti-dsplink ?= "1_64"
> +PREFERRED_VERSION_ti-dsplink-examples ?= "1_64"
> +PREFERRED_VERSION_ti-dsplink-module ?= "1_64"
> +PREFERRED_VERSION_ti-edma3lld ?= "01_11_00_03"
> +PREFERRED_VERSION_ti-framework-components ?= "2_25_01_05"
> +PREFERRED_VERSION_ti-linuxutils ?= "2_25_02_08"
> +PREFERRED_VERSION_ti-local-power-manager ?= "1_24_02_09"
> +PREFERRED_VERSION_ti-lpm-module ?= "1_24_02_09"
> +PREFERRED_VERSION_ti-lpm-utils ?= "1_24_02_09"
> +PREFERRED_VERSION_ti-xdais ?= "6_25_02_11"
> +PREFERRED_VERSION_ti-xdctools ?= "3_16_03_36"
>
> -PREFERRED_VERSION_ti-codecs-dm355 = "1_13_000"
> -PREFERRED_VERSION_ti-codecs-dm355-server = "1_13_000"
> -PREFERRED_VERSION_ti-codecs-dm365 = "3_10_00_02"
> -PREFERRED_VERSION_ti-codecs-dm365-server = "3_10_00_02"
> -PREFERRED_VERSION_ti-codecs-dm6446 = "2_05_00_00"
> -PREFERRED_VERSION_ti-codecs-dm6446-server = "2_05_00_00"
> -PREFERRED_VERSION_ti-codecs-dm6467 = "1_00_00_03"
> -PREFERRED_VERSION_ti-codecs-dm6467-server = "1_00_00_03"
> -PREFERRED_VERSION_ti-codecs-omap3530 = "1_00_01"
> -PREFERRED_VERSION_ti-codecs-omap3530-server = "1_00_01"
> -PREFERRED_VERSION_ti-codecs_omapl137 = "1_00_00"
> -PREFERRED_VERSION_ti-codecs_omapl137-server = "1_00_00"
> -PREFERRED_VERSION_ti-codecs_omapl138 = "1_00_00"
> -PREFERRED_VERSION_ti-codecs-omapl138-server = "1_00_00"
> -PREFERRED_VERSION_ti-dm355mm-module = "1_13"
> -PREFERRED_VERSION_ti-dm365mm-module = "1_0_3"
> -PREFERRED_VERSION_ti-dvsdk-demos = "3_10_00_11"
> +PREFERRED_VERSION_ti-codecs-dm355 ?= "1_13_000"
> +PREFERRED_VERSION_ti-codecs-dm355-server ?= "1_13_000"
> +PREFERRED_VERSION_ti-codecs-dm365 ?= "3_10_00_02"
> +PREFERRED_VERSION_ti-codecs-dm365-server ?= "3_10_00_02"
> +PREFERRED_VERSION_ti-codecs-dm6446 ?= "2_05_00_00"
> +PREFERRED_VERSION_ti-codecs-dm6446-server ?= "2_05_00_00"
> +PREFERRED_VERSION_ti-codecs-dm6467 ?= "1_00_00_03"
> +PREFERRED_VERSION_ti-codecs-dm6467-server ?= "1_00_00_03"
> +PREFERRED_VERSION_ti-codecs-omap3530 ?= "1_00_01"
> +PREFERRED_VERSION_ti-codecs-omap3530-server ?= "1_00_01"
> +PREFERRED_VERSION_ti-codecs_omapl137 ?= "1_00_00"
> +PREFERRED_VERSION_ti-codecs_omapl137-server ?= "1_00_00"
> +PREFERRED_VERSION_ti-codecs_omapl138 ?= "1_00_00"
> +PREFERRED_VERSION_ti-codecs-omapl138-server ?= "1_00_00"
> +PREFERRED_VERSION_ti-dm355mm-module ?= "1_13"
> +PREFERRED_VERSION_ti-dm365mm-module ?= "1_0_3"
> +PREFERRED_VERSION_ti-dvsdk-demos ?= "3_10_00_11"
>
> # PREFERRED_VERSION_ti-dmai = ""
> # PREFERRED_VERSION_ti-dmai-apps = ""
--
Denys
next prev parent reply other threads:[~2010-08-11 1:55 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-10 23:47 [PATCH] Mass convert PREFERRED_VERSION_* to be weakly assigned Graham Gower
2010-08-11 0:26 ` Philip Balister
2010-08-11 1:05 ` Graham Gower
2010-08-11 1:37 ` Khem Raj
2010-08-11 1:54 ` Denys Dmytriyenko [this message]
2010-08-11 4:02 ` Mike Westerhof
2010-08-11 8:27 ` Graeme Gregory
2010-08-11 9:04 ` Koen Kooi
2010-08-11 11:56 ` Frans Meulenbroeks
2010-08-11 14:54 ` Koen Kooi
2010-08-11 19:15 ` Frans Meulenbroeks
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100811015432.GG7189@denix.org \
--to=denis@denix.org \
--cc=openembedded-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.