targets: add deprecated flags as appropriate

This commit is contained in:
Matthias Schiffer 2019-06-15 14:38:40 +02:00
parent 912490c026
commit 8e00149f11
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C
3 changed files with 14 additions and 2 deletions

View File

@ -1,6 +1,7 @@
config 'CONFIG_GLUON_SPECIALIZE_KERNEL=y'
no_opkg()
packages {
'-uboot-envtools',
'-kmod-usb-core',
@ -9,6 +10,10 @@ packages {
'-kmod-usb-ledtrig-usbport',
}
defaults {
deprecated = true, -- 4/32
}
-- D-Link

View File

@ -2,12 +2,16 @@ config '# CONFIG_KERNEL_KALLSYMS is not set'
-- A5
device('a5-v11', 'a5-v11')
device('a5-v11', 'a5-v11', {
deprecated = true, -- 4/32
})
-- D-Link
device('d-link-dir-615-h1', 'dir-615-h1')
device('d-link-dir-615-h1', 'dir-615-h1', {
deprecated = true, -- 4/32
})
device('d-link-dir-615-d', 'dir-615-d', {
aliases = {
@ -16,6 +20,7 @@ device('d-link-dir-615-d', 'dir-615-d', {
'd-link-dir-615-d3',
'd-link-dir-615-d4',
},
deprecated = true, -- 4/32
})

View File

@ -1,7 +1,9 @@
GLUON_WLAN_MESH_11s := $(filter 11s,$(GLUON_WLAN_MESH))
$(eval $(call GluonTarget,ar71xx,generic))
ifneq ($(GLUON_DEPRECATED),0)
$(eval $(call GluonTarget,ar71xx,tiny))
endif
$(eval $(call GluonTarget,ar71xx,nand))
$(eval $(call GluonTarget,brcm2708,bcm2708))
$(eval $(call GluonTarget,brcm2708,bcm2709))