mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-03-02 03:35:23 +00:00
kirkwood: clean up profiles, move to image makefile
Adds support for per-device rootfs Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
9a1f441ac8
commit
49e81f9fe4
@ -17,6 +17,7 @@ UBI_OPTS := -m 2048 -p 128KiB -s 512
|
|||||||
UBIFS_OPTS := -m 2048 -e 126KiB -c 4096
|
UBIFS_OPTS := -m 2048 -e 126KiB -c 4096
|
||||||
|
|
||||||
define Device/Default
|
define Device/Default
|
||||||
|
PROFILES := Default
|
||||||
KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
|
KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
|
||||||
KERNEL := kernel-bin | append-dtb | uImage none
|
KERNEL := kernel-bin | append-dtb | uImage none
|
||||||
KERNEL_NAME := zImage
|
KERNEL_NAME := zImage
|
||||||
@ -34,7 +35,7 @@ endef
|
|||||||
define Device/dockstar
|
define Device/dockstar
|
||||||
DEVICE_DTS := kirkwood-dockstar
|
DEVICE_DTS := kirkwood-dockstar
|
||||||
FILESYSTEMS := squashfs
|
FILESYSTEMS := squashfs
|
||||||
PROFILES := Generic DOCKSTAR
|
DEVICE_TITLE := Seagate FreeAgent Dockstar
|
||||||
IMAGES += factory.bin
|
IMAGES += factory.bin
|
||||||
IMAGE/factory.bin := append-ubi
|
IMAGE/factory.bin := append-ubi
|
||||||
KERNEL_IN_UBI := 1
|
KERNEL_IN_UBI := 1
|
||||||
@ -42,49 +43,51 @@ endef
|
|||||||
|
|
||||||
define Device/goflexnet
|
define Device/goflexnet
|
||||||
$(Device/dockstar)
|
$(Device/dockstar)
|
||||||
PROFILES := Generic GOFLEXNET
|
DEVICE_TITLE := Seagate GoFlexNet
|
||||||
DEVICE_DTS := kirkwood-goflexnet
|
DEVICE_DTS := kirkwood-goflexnet
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Device/goflexhome
|
define Device/goflexhome
|
||||||
$(Device/dockstar)
|
$(Device/dockstar)
|
||||||
PROFILES := Generic GOFLEXHOME
|
DEVICE_TITLE := Seagate GoFlexHome
|
||||||
DEVICE_DTS := kirkwood-goflexhome
|
DEVICE_DTS := kirkwood-goflexhome
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Device/linksys-audi
|
define Device/linksys-audi
|
||||||
|
DEVICE_TITLE := Linksys EA3500 (Audi)
|
||||||
|
DEVICE_PACKAGES := kmod-mwl8k swconfig wpad-mini
|
||||||
DEVICE_DTS := kirkwood-linksys-audi
|
DEVICE_DTS := kirkwood-linksys-audi
|
||||||
KERNEL_SIZE := 2624k
|
KERNEL_SIZE := 2624k
|
||||||
FILESYSTEMS := squashfs
|
FILESYSTEMS := squashfs
|
||||||
PROFILES := Generic AUDI
|
|
||||||
IMAGES += factory.bin
|
IMAGES += factory.bin
|
||||||
IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi
|
IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Device/linksys-viper
|
define Device/linksys-viper
|
||||||
|
DEVICE_TITLE := Linksys E4200v2 / EA4500 (Viper)
|
||||||
|
DEVICE_PACKAGES := kmod-mwl8k swconfig wpad-mini
|
||||||
DEVICE_DTS := kirkwood-linksys-viper
|
DEVICE_DTS := kirkwood-linksys-viper
|
||||||
KERNEL_SIZE := 2688k
|
KERNEL_SIZE := 2688k
|
||||||
FILESYSTEMS := squashfs
|
FILESYSTEMS := squashfs
|
||||||
PROFILES := Generic VIPER
|
|
||||||
IMAGES += factory.bin
|
IMAGES += factory.bin
|
||||||
IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi
|
IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Device/iconnect
|
define Device/iconnect
|
||||||
$(Device/dockstar)
|
$(Device/dockstar)
|
||||||
PROFILES := Generic ICONNECT
|
DEVICE_TITLE := Iomega Iconnect
|
||||||
DEVICE_DTS := kirkwood-iconnect
|
DEVICE_DTS := kirkwood-iconnect
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Device/pogo_e02
|
define Device/pogo_e02
|
||||||
$(Device/dockstar)
|
$(Device/dockstar)
|
||||||
PROFILES := Generic POGOE02
|
DEVICE_TITLE := Cloud Engines Pogoplug E02
|
||||||
DEVICE_DTS := kirkwood-pogo_e02
|
DEVICE_DTS := kirkwood-pogo_e02
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Device/ib62x0
|
define Device/ib62x0
|
||||||
$(Device/dockstar)
|
$(Device/dockstar)
|
||||||
PROFILES := Generic IB62X0
|
DEVICE_TITLE := RaidSonic ICY BOX IB-NAS62x0
|
||||||
DEVICE_DTS := kirkwood-ib62x0
|
DEVICE_DTS := kirkwood-ib62x0
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
17
target/linux/kirkwood/profiles/00-default.mk
Normal file
17
target/linux/kirkwood/profiles/00-default.mk
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#
|
||||||
|
# Copyright (C) 2011 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
|
||||||
|
define Profile/Default
|
||||||
|
NAME:=Default Profile
|
||||||
|
PACKAGES:=kmod-mwl8k swconfig wpad-mini
|
||||||
|
PRIORITY:=1
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Profile/Default/Description
|
||||||
|
Default package set compatible with most boards.
|
||||||
|
endef
|
||||||
|
$(eval $(call Profile,Default))
|
@ -1,22 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (C) 2013 OpenWrt.org
|
|
||||||
#
|
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
|
||||||
# See /LICENSE for more information.
|
|
||||||
#
|
|
||||||
|
|
||||||
define Profile/Generic
|
|
||||||
NAME:=Generic (default)
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-mmc kmod-mvsdio kmod-usb2 kmod-usb-storage \
|
|
||||||
kmod-i2c-core kmod-i2c-mv64xxx \
|
|
||||||
kmod-ata-core kmod-ata-marvell-sata \
|
|
||||||
kmod-thermal-kirkwood \
|
|
||||||
kmod-mwl8k swconfig wpad-mini
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/Generic/Description
|
|
||||||
Package set compatible with most Marvell Kirkwood based boards.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,Generic))
|
|
@ -1,108 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (C) 2013 OpenWrt.org
|
|
||||||
#
|
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
|
||||||
# See /LICENSE for more information.
|
|
||||||
#
|
|
||||||
|
|
||||||
define Profile/DOCKSTAR
|
|
||||||
NAME:=Seagate FreeAgent Dockstar
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-usb2 kmod-usb-storage
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/DOCKSTAR/Description
|
|
||||||
Package set compatible with Seagate FreeAgent Dockstar board.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,DOCKSTAR))
|
|
||||||
|
|
||||||
define Profile/GOFLEXHOME
|
|
||||||
NAME:=Seagate GoFlexHome
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-ata-core kmod-ata-marvell-sata \
|
|
||||||
kmod-usb2 kmod-usb-storage \
|
|
||||||
uboot-envtools
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/GOFLEXHOME/Description
|
|
||||||
Package set compatible with Seagate GoFlexHome
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,GOFLEXHOME))
|
|
||||||
|
|
||||||
define Profile/GOFLEXNET
|
|
||||||
NAME:=Seagate GoFlexNet
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-ata-core kmod-ata-marvell-sata \
|
|
||||||
kmod-usb2 kmod-usb-storage
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/GOFLEXNET/Description
|
|
||||||
Package set compatible with Seagate GoFlexNet
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,GOFLEXNET))
|
|
||||||
|
|
||||||
define Profile/IB62X0
|
|
||||||
NAME:=RaidSonic ICY BOX IB-NAS62x0
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-ata-core kmod-ata-marvell-sata \
|
|
||||||
kmod-usb2 kmod-usb-storage
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/IB62X0/Description
|
|
||||||
Package set compatible with RaidSonic ICY BOX IB-NAS62x0 board.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,IB62X0))
|
|
||||||
|
|
||||||
define Profile/ICONNECT
|
|
||||||
NAME:=Iomega Iconnect
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-usb2 kmod-usb-storage
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/ICONNECT/Description
|
|
||||||
Package set compatible with Iomega Iconnect board.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,ICONNECT))
|
|
||||||
|
|
||||||
define Profile/IOMEGA_IX2_200
|
|
||||||
NAME:=Iomega StorCenter ix2-200
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-ata-core kmod-ata-marvell-sata \
|
|
||||||
kmod-usb2 kmod-usb-storage
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/IOMEGA_IX2_200/Description
|
|
||||||
Package set compatible with Iomega StorCenter ix2-200 board.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,IOMEGA_IX2_200))
|
|
||||||
|
|
||||||
define Profile/NSA310S
|
|
||||||
NAME:=ZyXEL NSA310S
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-ata-core kmod-ata-marvell-sata \
|
|
||||||
kmod-usb2 kmod-usb-storage
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/NSA310S/Description
|
|
||||||
Package set compatible with ZyXEL NSA310S board.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,NSA310S))
|
|
||||||
|
|
||||||
define Profile/POGOE02
|
|
||||||
NAME:=Cloud Engines Pogoplug E02
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-usb2 kmod-usb-storage
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/POGOE02/Description
|
|
||||||
Package set compatible with Cloud Engines Pogoplug E02 board.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,POGOE02))
|
|
@ -1,32 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (C) 2014 OpenWrt.org
|
|
||||||
#
|
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
|
||||||
# See /LICENSE for more information.
|
|
||||||
#
|
|
||||||
|
|
||||||
define Profile/AUDI
|
|
||||||
NAME:=Linksys EA3500 (Audi)
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-mwl8k kmod-usb2 kmod-usb-storage \
|
|
||||||
swconfig wpad-mini
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/AUDI/Description
|
|
||||||
Package set compatible with Linksys EA3500 board.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,AUDI))
|
|
||||||
|
|
||||||
define Profile/VIPER
|
|
||||||
NAME:=Linksys E4200v2 / EA4500 (Viper)
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-mwl8k kmod-usb2 kmod-usb-storage \
|
|
||||||
swconfig wpad-mini
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/VIPER/Description
|
|
||||||
Package set compatible with Linksys E4200v2 and EA4500 boards.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,VIPER))
|
|
@ -1,64 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (C) 2014 OpenWrt.org
|
|
||||||
#
|
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
|
||||||
# See /LICENSE for more information.
|
|
||||||
#
|
|
||||||
|
|
||||||
define Profile/SHEEVAPLUG
|
|
||||||
NAME:=Globalscale Technologies SheevaPlug
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-mmc kmod-mvsdio kmod-usb2 kmod-usb-storage \
|
|
||||||
kmod-i2c-core kmod-i2c-mv64xxx \
|
|
||||||
kmod-ata-core
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/SHEEVAPLUG/Description
|
|
||||||
Package set compatible with Globalscale Technologies SheevaPlug board.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,SHEEVAPLUG))
|
|
||||||
|
|
||||||
define Profile/SHEEVAPLUGSATA
|
|
||||||
NAME:=Globalscale Technologies eSATA SheevaPlug
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-mmc kmod-mvsdio kmod-usb2 kmod-usb-storage \
|
|
||||||
kmod-i2c-core kmod-i2c-mv64xxx \
|
|
||||||
kmod-ata-core kmod-ata-marvell-sata
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/SHEEVAPLUGSATA/Description
|
|
||||||
Package set compatible with Globalscale Technologies eSATA SheevaPlug board.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,SHEEVAPLUGSATA))
|
|
||||||
|
|
||||||
define Profile/GuruplugServerPlus
|
|
||||||
NAME:=Globalscale Technologies Guruplug Server Plus
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-mmc kmod-mvsdio kmod-usb2 kmod-usb-storage \
|
|
||||||
kmod-i2c-core kmod-i2c-mv64xxx \
|
|
||||||
kmod-ata-core kmod-ata-marvell-sata \
|
|
||||||
kmod-btmrvl kmod-btmrvl-sdio kmod-libertas kmod-libertas-sdio \
|
|
||||||
wpad-mini
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/GuruplugServerPlus/Description
|
|
||||||
Package set compatible with Globalscale Technologies Guruplug Server Plus board.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,GuruplugServerPlus))
|
|
||||||
|
|
||||||
define Profile/Topkick1281P2
|
|
||||||
NAME:=Univeral Scientific Industrial Co. Topkick-1281P2
|
|
||||||
PACKAGES:= \
|
|
||||||
kmod-mmc kmod-mvsdio kmod-usb2 kmod-usb-storage \
|
|
||||||
kmod-i2c-core kmod-i2c-mv64xxx \
|
|
||||||
kmod-ata-core kmod-ata-marvell-sata
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Profile/Topkick1281P2/Description
|
|
||||||
Package set compatible with Univeral Scientific Industrial Co. Topkick-1281P2 board.
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call Profile,Topkick1281P2))
|
|
Loading…
Reference in New Issue
Block a user