Hello,

I would like to build my own openwrt image for the raspberry pi 3

I am using a new .mk file under target/linux/brcm2708/bcm2710/profiles

basically, I copied the raspberry pi profile:

RecunchoRPI3.mk

define Profile/RecunchoRPI3
  NAME:=RecunchoMaker RPI 3
  PACKAGES:=brcmfmac43430-firmware-sdio kmod-brcmfmac wpad-mini
endef
define Profile/RecunchoRPI3/Description
  Recuncho Maker RPI 3
endef
$(eval $(call Profile,RecunchoRPI3))

Then, if I try to active it with "make menuconfig", I can see only the raspberry pi 3 profile

I guess that I need to do something else, to include my profile with the makefiles, but I dont see it...

what am i missing here?

Thank you very much!!!