Message ID | 20171020103840.32762-15-wei.liu2@citrix.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/ts-xen-build-prep b/ts-xen-build-prep index 70a53ca..4224601 100755 --- a/ts-xen-build-prep +++ b/ts-xen-build-prep @@ -225,6 +225,12 @@ sub prep () { push(@packages, qw(texinfo autopoint libpciaccess-dev)); } + # The in-tree ext4 support in libfsimage can't cope with 64bit ext4 on + # 32bit build. Use the packaged library. + if ($ho->{Suite} =~ m/stretch/) { + push(@packages, qw(e2fslibs-dev)); + } + target_install_packages($ho, @packages); target_cmd_root($ho, "chmod -R a+r /usr/share/git-core/templates"); # workaround for Debian #595728
The in-tree libfsimage ext2fs implementation can't handle 64bit enabled ext4, which is the default in stretch. Signed-off-by: Wei Liu <wei.liu2@citrix.com> --- ts-xen-build-prep | 6 ++++++ 1 file changed, 6 insertions(+)