diff options
author | Daniel Golle <daniel@makrotopia.org> | 2019-03-11 03:40:44 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2019-03-11 03:43:30 +0100 |
commit | 35a7f790967de6d887bed8d506c11ebb98da65d3 (patch) | |
tree | 3e7e5b1f1ceb8611ccc2504e072cc66c0e530dd2 /target/linux/oxnas/image | |
parent | 8ad0ba3a07b64c221db5a08523161a2cdda6194e (diff) | |
download | upstream-35a7f790967de6d887bed8d506c11ebb98da65d3.tar.gz upstream-35a7f790967de6d887bed8d506c11ebb98da65d3.tar.bz2 upstream-35a7f790967de6d887bed8d506c11ebb98da65d3.zip |
oxnas: use generic filenames for image and DTS
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'target/linux/oxnas/image')
-rw-r--r-- | target/linux/oxnas/image/ox820.mk | 37 |
1 files changed, 17 insertions, 20 deletions
diff --git a/target/linux/oxnas/image/ox820.mk b/target/linux/oxnas/image/ox820.mk index 7f81fd2f59..b7526cd86e 100644 --- a/target/linux/oxnas/image/ox820.mk +++ b/target/linux/oxnas/image/ox820.mk @@ -11,6 +11,8 @@ define Device/Default SUBPAGESIZE := 512 FILESYSTEMS := squashfs ubifs PROFILES = Default $$(DTS) + SUPPORTED_DEVICES := $(subst _,$(comma),$(1)) + DEVICE_DTS := ox820-$(subst _,-,$(1)) KERNEL := kernel-bin | append-dtb | uImage none IMAGES := ubinized.bin sysupgrade.tar IMAGE/ubinized.bin := append-ubi @@ -36,35 +38,31 @@ define Build/encrypt-3des openssl enc -des3 -a -k $(1) -in $@ -out $@.new && mv $@.new $@ endef -define Device/akitio-mycloud - DEVICE_DTS := ox820-akitio-mycloud +define Device/akitio_mycloud DEVICE_TITLE := Akition myCloud (mini) / SilverStone DC01 - SUPPORTED_DEVICES := akitio,mycloud akitio + SUPPORTED_DEVICES += akitio DEVICE_PACKAGES := kmod-usb2-oxnas kmod-ata-oxnas-sata kmod-usb-ledtrig-usbport \ kmod-i2c-gpio kmod-rtc-ds1307 endef -TARGET_DEVICES += akitio-mycloud +TARGET_DEVICES += akitio_mycloud -define Device/cloudengines-pogoplug-pro - DEVICE_DTS := ox820-cloudengines-pogoplug-pro +define Device/cloudengines_pogoplugpro DEVICE_TITLE := Cloud Engines PogoPlug Pro (with mPCIe) - SUPPORTED_DEVICES := cloudengines,pogoplugpro pogoplug-pro + SUPPORTED_DEVICES += pogoplug-pro DEVICE_PACKAGES := kmod-usb2-oxnas kmod-usb-ledtrig-usbport endef -TARGET_DEVICES += cloudengines-pogoplug-pro +TARGET_DEVICES += cloudengines_pogoplugpro -define Device/cloudengines-pogoplug-series-3 - DEVICE_DTS := ox820-cloudengines-pogoplug-series-3 +define Device/cloudengines_pogoplug-series-3 DEVICE_TITLE := Cloud Engines PogoPlug Series V3 (without mPCIe) - SUPPORTED_DEVICES := cloudengines,pogoplugv3 pogoplug-v3 + SUPPORTED_DEVICES += cloudengines,pogoplugv3 pogoplug-v3 DEVICE_PACKAGES := kmod-usb2-oxnas kmod-usb-ledtrig-usbport endef -TARGET_DEVICES += cloudengines-pogoplug-series-3 +TARGET_DEVICES += cloudengines_pogoplug-series-3 -define Device/shuttle-kd20 - DEVICE_DTS := ox820-shuttle-kd20 +define Device/shuttle_kd20 DEVICE_TITLE := Shuttle KD20 - SUPPORTED_DEVICES := shuttle,kd20 kd20 + SUPPORTED_DEVICES += kd20 KERNEL := kernel-bin | append-dtb | uImage none KERNEL_INITRAMFS_PREFIX = $$(IMAGE_PREFIX)-factory KERNEL_INITRAMFS_SUFFIX := .tar.gz @@ -74,14 +72,13 @@ define Device/shuttle-kd20 kmod-hwmon-core kmod-hwmon-gpiofan \ kmod-md-mod kmod-md-raid0 kmod-md-raid1 kmod-fs-ext4 kmod-fs-xfs endef -TARGET_DEVICES += shuttle-kd20 +TARGET_DEVICES += shuttle_kd20 -define Device/mitrastar-stg212 - DEVICE_DTS := ox820-mitrastar-stg212 +define Device/mitrastar_stg-212 DEVICE_TITLE := MitraStar STG-212 - SUPPORTED_DEVICES := mitrastar,stg-212 stg212 + SUPPORTED_DEVICES += stg212 KERNEL := kernel-bin | append-dtb | uImage none DEVICE_PACKAGES := kmod-usb2-oxnas kmod-ata-oxnas-sata kmod-fs-ext4 kmod-fs-xfs \ kmod-usb-ledtrig-usbport endef -TARGET_DEVICES += mitrastar-stg212 +TARGET_DEVICES += mitrastar_stg-212 |