1## SPDX-License-Identifier: GPL-2.0-only 2 3bootblock-$(CONFIG_CONSOLE_NE2K) += ne2k.c 4romstage-$(CONFIG_CONSOLE_NE2K) += ne2k.c 5ramstage-$(CONFIG_CONSOLE_NE2K) += ne2k.c 6ramstage-$(CONFIG_REALTEK_8168_RESET) += r8168.c 7ramstage-$(CONFIG_ATHEROS_ATL1E_SETMAC) += atl1e.c 8 9ifneq ($(CONFIG_REALTEK_8168_MACADDRESS),"") 10$(obj)/rt8168-macaddress: $(DOTCONFIG) 11 echo " Creating a file holding the rt8168 macaddress" 12 printf %s $(CONFIG_REALTEK_8168_MACADDRESS) > $@ 13 14cbfs-files-$(CONFIG_REALTEK_8168_RESET) += rt8168-macaddress 15rt8168-macaddress-file := $(obj)/rt8168-macaddress 16rt8168-macaddress-type := raw 17endif 18 19ifneq ($(CONFIG_ATHEROS_ATL1E_MACADDRESS),"") 20$(obj)/atl1e-macaddress: $(DOTCONFIG) 21 echo " Creating a file holding the atl1e macaddress" 22 printf %s $(CONFIG_ATHEROS_ATL1E_MACADDRESS) > $@ 23 24cbfs-files-$(CONFIG_ATHEROS_ATL1E_SETMAC) += atl1e-macaddress 25atl1e-macaddress-file := $(obj)/atl1e-macaddress 26atl1e-macaddress-type := raw 27endif 28