cb007a7bf6
This commit introduces few related changes which need to be done in single commit to keep images buildable between git revisions. In result it retains all previous image creation possibilities with slight name change of generated images. Brief summary of the commit: * Split up image generation recipe to smaller chunks to make it more generic and reusable. * Make iso images x86 specific and drop their definition as root filesystem. * Convert image creation process to generic code specified in image.mk. * Make geode subtarget inherit features from the main target instead of redefining them. * For subtargets create device definitions with basic packages set. Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl> [rebased] Signed-off-by: Paul Spooren <mail@aparcar.org>
17 lines
538 B
Makefile
17 lines
538 B
Makefile
define Device/generic
|
|
DEVICE_TITLE := Generic x86/Geode
|
|
DEVICE_PACKAGES += kmod-crypto-cbc kmod-crypto-hw-geode kmod-ledtrig-gpio \
|
|
kmod-ledtrig-heartbeat kmod-ledtrig-netdev kmod-via-rhine
|
|
GRUB2_VARIANT := legacy
|
|
endef
|
|
TARGET_DEVICES += generic
|
|
|
|
define Device/geos
|
|
$(call Device/generic)
|
|
DEVICE_TITLE := Traverse Technologies Geos
|
|
DEVICE_PACKAGES += br2684ctl flashrom kmod-8139cp kmod-hwmon-lm90 kmod-mppe \
|
|
kmod-pppoa kmod-usb-ohci-pci linux-atm ppp-mod-pppoa pppdump pppstats \
|
|
soloscli tc
|
|
endef
|
|
TARGET_DEVICES += geos
|