mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-27 04:01:36 +01:00
run kind of runs
This commit is contained in:
6
build-m5
6
build-m5
@@ -4,11 +4,11 @@ import os
|
||||
|
||||
import common
|
||||
|
||||
class M5Component(common.Component):
|
||||
class M5Component(self.Component):
|
||||
def get_make_cmd(self, args):
|
||||
allowed_toolchains = ['buildroot']
|
||||
cc = common.get_toolchain_tool('gcc', allowed_toolchains=allowed_toolchains)
|
||||
ld = common.get_toolchain_tool('ld', allowed_toolchains=allowed_toolchains)
|
||||
cc = self.get_toolchain_tool('gcc', allowed_toolchains=allowed_toolchains)
|
||||
ld = self.get_toolchain_tool('ld', allowed_toolchains=allowed_toolchains)
|
||||
if kwargs['arch'] == 'x86_64':
|
||||
arch = 'x86'
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user