From 2b2917063303ed0895b847754816719f2a410bb7 Mon Sep 17 00:00:00 2001 From: Amit Mahajan Date: Mon, 26 Oct 2009 10:33:34 +0530 Subject: [PATCH] Added the default parameters needed by arm linux --- scripts/linux/build_linux.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/linux/build_linux.py b/scripts/linux/build_linux.py index 1a2e610..0cf3ac1 100755 --- a/scripts/linux/build_linux.py +++ b/scripts/linux/build_linux.py @@ -33,7 +33,12 @@ class LinuxUpdateKernel: def __init__(self, container): # List for setting/unsetting .config params of linux self.config_param_list = \ - (['MAGIC_SYSRQ', 'SET'],['DEBUG_INFO', 'SET']) + (['PCI', 'SET'],['AEABI', 'SET'], + ['SCSI', 'SET'],['BLK_DEV_SD', 'SET'], + ['SYM53C8XX_2', 'SET'],['INPUT_EVDEV', 'SET'], + ['INOTIFY', 'SET'],['DEBUG_INFO', 'SET'], + ['USB_SUPPORT', 'UNSET'],['SOUND', 'UNSET'], + ['MMC', 'UNSET'],) # List of CPUIDs, to be used by linux based on codezero config self.cpuid_list = (['ARM926', '0x41069265'],)