From 2b82c87b1f029aad159231c0f76c24372fd13e1f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pawe=C5=82=20Owoc?= Date: Tue, 16 Jan 2024 23:14:58 +0100 Subject: [PATCH] qualcommax: ipq807x: fix variable definition MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fix variable definition, prevent displaying warnings: - warning: overriding recipe for target - warning: ignoring old recipe for target Signed-off-by: Paweł Owoc --- target/linux/qualcommax/image/Makefile | 2 +- target/linux/qualcommax/image/ipq807x.mk | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/target/linux/qualcommax/image/Makefile b/target/linux/qualcommax/image/Makefile index 6841693194..8d3f16755b 100644 --- a/target/linux/qualcommax/image/Makefile +++ b/target/linux/qualcommax/image/Makefile @@ -25,7 +25,7 @@ define Device/FitImageLzma endef define Device/EmmcImage - IMAGES += factory.bin sysupgrade.bin + IMAGES := factory.bin sysupgrade.bin IMAGE/factory.bin := append-rootfs | pad-rootfs | pad-to 64k IMAGE/sysupgrade.bin/squashfs := append-rootfs | pad-to 64k | sysupgrade-tar rootfs=$$$$@ | append-metadata endef diff --git a/target/linux/qualcommax/image/ipq807x.mk b/target/linux/qualcommax/image/ipq807x.mk index 3bbd0b3d11..e68b53b0ef 100644 --- a/target/linux/qualcommax/image/ipq807x.mk +++ b/target/linux/qualcommax/image/ipq807x.mk @@ -144,7 +144,7 @@ define Device/netgear_rax120v2 NETGEAR_HW_ID := 29765589+0+512+1024+4x4+8x8 DEVICE_PACKAGES := ipq-wifi-netgear_rax120v2 kmod-spi-gpio \ kmod-spi-bitbang kmod-gpio-nxp-74hc164 kmod-hwmon-g761 - IMAGES = web-ui-factory.img sysupgrade.bin + IMAGES := web-ui-factory.img sysupgrade.bin IMAGE/web-ui-factory.img := append-image initramfs-uImage.itb | \ pad-offset $$$$(BLOCKSIZE) 64 | append-uImage-fakehdr filesystem | \ netgear-dni @@ -182,7 +182,7 @@ define Device/netgear_wax620 BLOCKSIZE := 128k PAGESIZE := 2048 SOC := ipq8072 - DEVICE_PACKAGES += kmod-spi-gpio kmod-gpio-nxp-74hc164 \ + DEVICE_PACKAGES := kmod-spi-gpio kmod-gpio-nxp-74hc164 \ ipq-wifi-netgear_wax620 endef TARGET_DEVICES += netgear_wax620 @@ -198,7 +198,7 @@ define Device/netgear_wax630 SOC := ipq8074 IMAGES := ui-factory.tar factory.ubi sysupgrade.bin IMAGE/ui-factory.tar := append-ubi | wax6xx-netgear-tar - DEVICE_PACKAGES += kmod-spi-gpio ipq-wifi-netgear_wax630 + DEVICE_PACKAGES := kmod-spi-gpio ipq-wifi-netgear_wax630 endef TARGET_DEVICES += netgear_wax630 @@ -209,7 +209,7 @@ define Device/prpl_haze DEVICE_MODEL := Haze DEVICE_DTS_CONFIG := config@hk09 SOC := ipq8072 - DEVICE_PACKAGES += ath11k-firmware-qcn9074 ipq-wifi-prpl_haze kmod-ath11k-pci \ + DEVICE_PACKAGES := ath11k-firmware-qcn9074 ipq-wifi-prpl_haze kmod-ath11k-pci \ mkf2fs f2fsck kmod-fs-f2fs kmod-leds-lp5562 endef TARGET_DEVICES += prpl_haze @@ -222,7 +222,7 @@ define Device/qnap_301w DEVICE_DTS_CONFIG := config@hk01 KERNEL_SIZE := 16384k SOC := ipq8072 - DEVICE_PACKAGES += ipq-wifi-qnap_301w + DEVICE_PACKAGES := ipq-wifi-qnap_301w endef TARGET_DEVICES += qnap_301w @@ -263,7 +263,7 @@ define Device/xiaomi_ax9000 SOC := ipq8072 KERNEL_SIZE := 57344k DEVICE_PACKAGES := ipq-wifi-xiaomi_ax9000 kmod-ath11k-pci ath11k-firmware-qcn9074 \ - kmod-ath10k-ct ath10k-firmware-qca9887-ct + kmod-ath10k-ct ath10k-firmware-qca9887-ct ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),) ARTIFACTS := initramfs-factory.ubi ARTIFACT/initramfs-factory.ubi := append-image-stage initramfs-uImage.itb | ubinize-kernel @@ -307,7 +307,7 @@ define Device/zyxel_nbg7815 DEVICE_MODEL := NBG7815 DEVICE_DTS_CONFIG := config@nbg7815 SOC := ipq8074 - DEVICE_PACKAGES += ipq-wifi-zyxel_nbg7815 kmod-ath11k-pci \ + DEVICE_PACKAGES := ipq-wifi-zyxel_nbg7815 kmod-ath11k-pci \ kmod-bluetooth kmod-hwmon-tmp103 endef TARGET_DEVICES += zyxel_nbg7815 -- 2.30.2