Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

buildroot add packages with submodules

buildroot supports to download packages from git repo. But my git repo contains submodules.

How to order buildroot to download package with submodule?

like image 393
Yuri Avatar asked Aug 25 '14 12:08

Yuri


2 Answers

Since ~July 2016 you can enable downloading of Submodules for a package.

This can be achieved with

LIBFOO_GIT_SUBMODULES = YES

in the .mk File.

like image 68
heine Avatar answered Oct 11 '22 15:10

heine


This is not supported today. In general, the submodules are used to fetch external libraries, and prefer to see them packaged as separate Buildroot packages.

That being said, if you provided a specific example, I could probably have a look and give a more specific answer.

like image 31
Thomas Petazzoni Avatar answered Oct 11 '22 13:10

Thomas Petazzoni