diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-21 22:27:02 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-11-06 23:52:55 +0100 |
commit | 4fcba753836e43fceaf55fef2c1ac560c6e00210 (patch) | |
tree | 8bc3c404b084ba21b83e1ff7223d66bca9bd75cf | |
parent | 352bb9269504df2e460b4fa179bffb65b0c00daf (diff) | |
download | buildroot-4fcba753836e43fceaf55fef2c1ac560c6e00210.tar.gz buildroot-4fcba753836e43fceaf55fef2c1ac560c6e00210.zip |
webkit: use BR2_ARM_CPU_ARM* options
The webkit package is not available on ARM < v5, so this commit
switches to using the newly introduced BR2_ARM_CPU_ARM* options
instead of per ARM core options.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/webkit/Config.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package/webkit/Config.in b/package/webkit/Config.in index d1bc1d502c..2f0b90d766 100644 --- a/package/webkit/Config.in +++ b/package/webkit/Config.in @@ -1,8 +1,7 @@ config BR2_PACKAGE_WEBKIT_ARCH_SUPPORTS bool # ARM needs BLX, so v5t+ - default y if (BR2_arm || BR2_armeb) && \ - !(BR2_arm920t || BR2_arm922t || BR2_fa526) + default y if (BR2_arm || BR2_armeb) && !BR2_ARM_CPU_ARMV4 default y if BR2_i386 || BR2_mips || BR2_mipsel || \ BR2_sparc || BR2_x86_64 depends on BR2_USE_MMU # libgail -> pango -> libglib2 |