8

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

How to order buildroot to download package with submodule?

Yuri
  • 1,179
  • 4
  • 13
  • 27

2 Answers2

12

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.

heine
  • 599
  • 5
  • 18
3

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.

Thomas Petazzoni
  • 5,636
  • 17
  • 25