od-contrib / buildroot-rg350-old-kernel

Buildroot for RG350 with modern userland but using the old 3.12 Linux kernel
Other
11 stars 4 forks source link

Makefile:184: *** multiple target patterns. Stop. #3

Closed KatyushaScarlet closed 4 years ago

KatyushaScarlet commented 4 years ago

When I'm trying to run

make rg350_defconfig BR2_EXTERNAL=board/opendingux:opks

board/opendingux/gcw0/make_initial_image.sh rg350

or

make rg350m_defconfig BR2_EXTERNAL=board/opendingux:opks

board/opendingux/gcw0/make_initial_image.sh rg350m

I got this error

KatyushaScarlet commented 4 years ago

Hi, I wonder what is ":opks" means? Is this necessary?

Thanks!

KatyushaScarlet commented 4 years ago

After I remove the ":opks", it works fine

glebm commented 4 years ago

opks is a git submodule that contains several OPK packages

You may need to run this first to get the submodules

git submodule update --recursive
KatyushaScarlet commented 4 years ago

git submodule update --recursive

I suggest adding this instruction to the README file.

glebm commented 4 years ago

Done!

KatyushaScarlet commented 4 years ago

Thanks!