utils/genrandconfig: drop qt4 fixups
authorPeter Korsgaard <peter@korsgaard.com>
Wed, 6 Feb 2019 15:11:14 +0000 (16:11 +0100)
committerArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Wed, 6 Feb 2019 15:30:39 +0000 (16:30 +0100)
Now that Qt4 is removed, these fixups can be removed as well.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
utils/genrandconfig

index 047740a411c61ca86f35380ce5dcefca14938980..a2190d6d25d5911f314bad4614810161c42c3141 100755 (executable)
@@ -310,17 +310,9 @@ def fixup_config(configfile):
        'BR2_PACKAGE_QT5BASE_GUI=y\n' in configlines:
         return False
     # The cs nios2 2017.02 toolchain is affected by binutils PR19405
-    if 'BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII=y\n' in configlines and \
-       'BR2_PACKAGE_QT_GUI_MODULE=y\n' in configlines:
-        return False
-    # The cs nios2 2017.02 toolchain is affected by binutils PR19405
     if 'BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII=y\n' in configlines and \
        'BR2_PACKAGE_FLANN=y\n' in configlines:
         return False
-    # or1k affected by binutils PR21464
-    if 'BR2_or1k=y\n' in configlines and \
-       'BR2_PACKAGE_QT_GUI_MODULE=y\n' in configlines:
-        return False
 
     with open(configfile, "w+") as configf:
         configf.writelines(configlines)