arduino / openwrt-yun

A custom version of OpenWrt, targeted to the Arduino Yún
GNU General Public License v2.0
148 stars 71 forks source link

Question about Yun OpenWrt-image customizing #21

Closed MaStr closed 10 years ago

MaStr commented 10 years ago

Hey guys, do you have something like a "meta" package, that contains all the dependencies to create the stock Arduino-yun image? Or, do you have package list which are preinstalled and doing what?

I managed to build the imagebuilder, which presents me a stripped down image, like I expected. I want to prepare a close-as-possible image containing additional packages from my projects. I need the information to refit the image with the correct packages.

Thank you in advance Matthias

ffissore commented 10 years ago

Repo contains https://github.com/arduino/openwrt-yun/blob/master/.config file which has all the built-in packages marked as "y" (= built-in). Everything else (almost) is marked "m" (= optional)

MaStr commented 10 years ago

HI, I know about that. The but you don't need to list all needed packages in a package list, if they are pulled because of a dependency.

Matthias