diff options
author | Anthony Gutierrez <atgutier@umich.edu> | 2013-02-15 18:48:59 -0500 |
---|---|---|
committer | Anthony Gutierrez <atgutier@umich.edu> | 2013-02-15 18:48:59 -0500 |
commit | ba983f9387a703f3be8149382d4f0dcfb2009b6c (patch) | |
tree | 150af91f0ddd6de0b4138e75c317ef3f1cab4ce3 /SConstruct | |
parent | bd31a5dc18def5972967a595d65266d1f9ff05cb (diff) | |
download | gem5-ba983f9387a703f3be8149382d4f0dcfb2009b6c.tar.xz |
ext lib: add libfdt to enable flattened device tree support
this patch adds libfdt, a library necessary for supporting
flattened device tree support in current and future versions of
the linux/android kernel for ARM.
Diffstat (limited to 'SConstruct')
-rwxr-xr-x | SConstruct | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index 93adc85de..3d15f1db6 100755 --- a/SConstruct +++ b/SConstruct @@ -1040,6 +1040,10 @@ main.SConscript('ext/libelf/SConscript', main.SConscript('ext/gzstream/SConscript', variant_dir = joinpath(build_root, 'gzstream')) +# libfdt build is shared across all configs in the build root. +main.SConscript('ext/libfdt/SConscript', + variant_dir = joinpath(build_root, 'libfdt')) + ################################################### # # This function is used to set up a directory with switching headers |