mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
get rid of lkmc package, move userland and kernel-modules to top
Rationale: we already had a non buildroot build system, maintaining both will be hard, and having short paths is more awesome.
This commit is contained in:
@@ -32,9 +32,11 @@ bench_boot = os.path.join(out_dir, 'bench-boot.txt')
|
||||
packages_dir = os.path.join(root_dir, 'packages')
|
||||
lkmc_package_src_dir = os.path.join(this_module.packages_dir, 'lkmc')
|
||||
kernel_modules_subdir = 'kernel_modules'
|
||||
kernel_modules_src_dir = os.path.join(this_module.lkmc_package_src_dir, this_module.kernel_modules_subdir)
|
||||
kernel_modules_src_dir = os.path.join(this_module.root_dir, this_module.kernel_modules_subdir)
|
||||
userland_subdir = 'userland'
|
||||
userland_src_dir = os.path.join(this_module.lkmc_package_src_dir, this_module.userland_subdir)
|
||||
userland_src_dir = os.path.join(this_module.root_dir, this_module.userland_subdir)
|
||||
include_subdir = 'include'
|
||||
include_src_dir = os.path.join(this_module.root_dir, this_module.include_subdir)
|
||||
submodules_dir = os.path.join(root_dir, 'submodules')
|
||||
buildroot_src_dir = os.path.join(submodules_dir, 'buildroot')
|
||||
crosstool_ng_src_dir = os.path.join(submodules_dir, 'crosstool-ng')
|
||||
|
||||
Reference in New Issue
Block a user