| Both sides previous revision Previous revision Next revision | Previous revision Next revisionBoth sides next revision |
| es:doc:howto:build [2018/03/04 12:32] – bobafetthotmail | es:doc:howto:build [2018/06/08 18:50] – link fixed tmomas |
|---|
| |
| ==== I can't find my <package> in menuconfig ==== | ==== I can't find my <package> in menuconfig ==== |
| - Have you run this command? [[doc:howto:build#updating.feeds|See this.]] <code>./scripts/feeds install <package></code> | - Have you run this command? [[docs:guide-developer:build-system:use-buildsystem#updating_feeds|See this.]] <code>./scripts/feeds install <package></code> |
| - Maybe you are not looking for it in the right submenu. See ''Makefile'' of the package to find out. <code>cat package/feeds/packages/<package>/Makefile</code> | - Maybe you are not looking for it in the right submenu. See ''Makefile'' of the package to find out. <code>cat package/feeds/packages/<package>/Makefile</code> |
| |
| |
| ==== Error: No rule to make target... ==== | ==== Error: No rule to make target... ==== |
| Make sure the path starts with ''package'' directory and that the path actually exist. The structure of ''feeds'' and ''package/feeds'' directory is different. [[doc:howto:build#building.single.packages|See this.]] | Make sure the path starts with ''package'' directory and that the path actually exist. The structure of ''feeds'' and ''package/feeds'' directory is different. [[docs:guide-developer:build-system:use-buildsystem#building_single_packages|See this.]] |
| * Wrong: ''make feeds/packages/**utils**/screen/compile V=s'' | * Wrong: ''make feeds/packages/**utils**/screen/compile V=s'' |
| * Correct: ''make **package**/feeds/packages/screen/compile V=s'' | * Correct: ''make **package**/feeds/packages/screen/compile V=s'' |
| |
| ==== WARNING: skipping <package> -- package not selected ==== | ==== WARNING: skipping <package> -- package not selected ==== |
| Run ''make menuconfig'' and enable compilation for your package. It should be labeled with ''<*>'' or ''<M>'' to work correctly. [[doc:howto:build#image.configuration|See this.]] | Run ''make menuconfig'' and enable compilation for your package. It should be labeled with ''<*>'' or ''<M>'' to work correctly. [[docs:guide-developer:build-system:use-buildsystem#image_configuration|See this.]] |
| |
| |