|
@@ -36,7 +36,7 @@ endef
|
|
|
define Build/boot-img
|
|
|
rm -f [email protected]
|
|
|
mkfs.fat -C [email protected] 16384
|
|
|
- $(foreach dts,$(DEVICE_DTS), mcopy -i [email protected] $(DTS_DIR)/$(dts).dtb ::$(dts).dtb)
|
|
|
+ $(foreach dts,$(DEVICE_DTS), mcopy -i [email protected] $(DTS_DIR)/$(dts).dtb ::$(dts).dtb;)
|
|
|
mcopy -i [email protected] $(IMAGE_KERNEL) ::zImage
|
|
|
mcopy -i [email protected] [email protected] ::boot.scr
|
|
|
endef
|
|
@@ -178,18 +178,19 @@ TARGET_DEVICES += armada-388-rd
|
|
|
|
|
|
define Device/armada-388-clearfog-pro
|
|
|
KERNEL_INSTALL := 1
|
|
|
- KERNEL := dtb | kernel-bin
|
|
|
+ KERNEL := kernel-bin
|
|
|
DEVICE_TITLE := SolidRun ClearFog Pro
|
|
|
DEVICE_PACKAGES := mkf2fs e2fsprogs swconfig kmod-fs-vfat kmod-nls-cp437 kmod-nls-iso8859-1
|
|
|
IMAGES := sdcard.img.gz
|
|
|
IMAGE/sdcard.img.gz := boot-scr-cfpro | boot-img | sdcard-img | gzip | append-metadata
|
|
|
IMAGE_NAME = $$(IMAGE_PREFIX)-$$(2)
|
|
|
+ DEVICE_DTS := armada-388-clearfog-pro armada-388-clearfog-base
|
|
|
endef
|
|
|
TARGET_DEVICES += armada-388-clearfog-pro
|
|
|
|
|
|
define Device/armada-388-clearfog-base
|
|
|
KERNEL_INSTALL := 1
|
|
|
- KERNEL := dtb | kernel-bin
|
|
|
+ KERNEL := kernel-bin
|
|
|
DEVICE_TITLE := SolidRun ClearFog Base
|
|
|
DEVICE_PACKAGES := \
|
|
|
kmod-nls-cp437 kmod-nls-iso8859-1 \
|
|
@@ -199,6 +200,7 @@ define Device/armada-388-clearfog-base
|
|
|
IMAGES := sdcard.img.gz
|
|
|
IMAGE/sdcard.img.gz := boot-scr-cfbase | boot-img | sdcard-img | gzip
|
|
|
IMAGE_NAME = $$(IMAGE_PREFIX)-$$(2)
|
|
|
+ DEVICE_DTS := armada-388-clearfog-pro armada-388-clearfog-base
|
|
|
endef
|
|
|
TARGET_DEVICES += armada-388-clearfog-base
|
|
|
|