blob: cef41aae27d2febcaeb817a10bf7247a23187ddd [file] [log] [blame]
Matt DeVillier2677e2d2020-03-14 16:22:01 -05001# SPDX-License-Identifier: GPL-2.0-or-later
Matt DeVillier2677e2d2020-03-14 16:22:01 -05002
3ifeq ($(CONFIG_EC_51NB_NPCE985LA0DX),y)
4
5files_added::
6ifeq ($(CONFIG_EC_51NB_NPCE985LA0DX_FIRMWARE),y)
7 $(CBFSTOOL) $(obj)/coreboot.rom write -r EC -f $(CONFIG_EC_51NB_NPCE985LA0DX_FW) --fill-upward
8endif
9
Martin Roth372503f2023-12-08 00:43:23 -070010show_notices::
Matt DeVillier2677e2d2020-03-14 16:22:01 -050011ifeq ($(CONFIG_EC_51NB_NPCE985LA0DX_FIRMWARE),)
12 printf "\n** WARNING **\n"
13 printf "You haven't added the firmware blobs for 51NB EC.\n"
14 printf "You may be unable to power on your laptop without these blobs.\n"
15 printf "Please select the following option to add them:\n\n"
16 printf " Chipset --->\n"
17 printf " [*] Add firmware images for 51NB EC\n\n"
18endif
19
20ramstage-y += npce985la0dx.c
21
22endif