diff options
author | Guo Hongruan <camelguo@gmail.com> | 2010-01-21 22:55:56 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <marcin@juszkiewicz.com.pl> | 2010-01-22 10:04:02 +0100 |
commit | a72f0d33dd88bcc183ec8d7efd8ff814d6528cc3 (patch) | |
tree | 26894267bab8df7deb4449e27daf5cdacedeb0ec /recipes | |
parent | fc301f15838dcb42abb0b4f11f453441ba995a46 (diff) |
Fix a bug of COMPATIBLE_HOST defination in linux-sun4cdm_*.bb
* Correct the defination of COMPATIBLE_HOST in linux-sun4cdm_2.4.26.bb and linux-sun4cdm_2.6.8.1.bb, the previous defination causes linux-sun4cdm never been selected.
Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/linux/linux-sun4cdm_2.4.26.bb | 2 | ||||
-rw-r--r-- | recipes/linux/linux-sun4cdm_2.6.8.1.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes/linux/linux-sun4cdm_2.4.26.bb b/recipes/linux/linux-sun4cdm_2.4.26.bb index 52b3ecb26c..78a64d7aeb 100644 --- a/recipes/linux/linux-sun4cdm_2.4.26.bb +++ b/recipes/linux/linux-sun4cdm_2.4.26.bb @@ -10,7 +10,7 @@ SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.4/linux-${PV}.tar.bz2 \ file://defconfig" S = "${WORKDIR}/linux-${PV}" -COMPATIBLE_HOST = 'sparc-linux' +COMPATIBLE_HOST = 'sparc.*-linux' inherit kernel diff --git a/recipes/linux/linux-sun4cdm_2.6.8.1.bb b/recipes/linux/linux-sun4cdm_2.6.8.1.bb index 40583903d8..7b097a1610 100644 --- a/recipes/linux/linux-sun4cdm_2.6.8.1.bb +++ b/recipes/linux/linux-sun4cdm_2.6.8.1.bb @@ -7,7 +7,7 @@ SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \ file://sun4c_defconfig" S = "${WORKDIR}/linux-${PV}" -COMPATIBLE_HOST = 'sparc-linux' +COMPATIBLE_HOST = 'sparc.*-linux' inherit kernel |