Home | History | Annotate | Download | only in kernelbuild
      1 from autotest_lib.client.bin import test, kernel
      2 
      3 
      4 class kernelbuild(test.test):
      5     version = 1
      6 
      7     def execute(self, base_tree, patches, config, config_list = None):
      8         kernel = self.job.kernel(base_tree, self.outputdir)
      9         if patches:
     10             kernel.patch(*patches)
     11         kernel.config(config, config_list)
     12 
     13         kernel.build()
     14