* To get maximum size reduction use the later version of git that is provided by git-native. This reduces the kernel sources size from 1002MB to 762MB. * Older versions of git work but they provide a depth of 1 for all branches and tags instead of just for the branch requested. * This was tested with git version 1.7.9.5 and 1.9 as comparison points.
Signed-off-by: Chase Maupin <[email protected]> --- meta-arago-distro/conf/distro/arago.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf index b9af13f..1470f22 100644 --- a/meta-arago-distro/conf/distro/arago.conf +++ b/meta-arago-distro/conf/distro/arago.conf @@ -50,6 +50,11 @@ require conf/distro/include/arago-prefs.inc # Hack out sgx flag for now, as breaking on kernels >= 3.14 MACHINE_FEATURES := "${@filter_out('sgx','${MACHINE_FEATURES}',d)}" +# Remove the ASSUME_PROVIDED setting for git-native so that we can +# use the latest version for the sourceipk which leads to a smaller +# git history. +ASSUME_PROVIDED := "${@filter_out('git-native','${ASSUME_PROVIDED}',d)}" + # Allow branding on top of Arago Distro and Core TI-SDK # If ARAGO_BRAND is not set in local.conf, default to core ARAGO_BRAND ??= "core" -- 1.7.9.5 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
