| 1 | # |
|---|
| 2 | # This file is part of the flashrom project. |
|---|
| 3 | # |
|---|
| 4 | # Copyright (C) 2005 coresystems GmbH <stepan@coresystems.de> |
|---|
| 5 | # Copyright (C) 2009,2010 Carl-Daniel Hailfinger |
|---|
| 6 | # |
|---|
| 7 | # This program is free software; you can redistribute it and/or modify |
|---|
| 8 | # it under the terms of the GNU General Public License as published by |
|---|
| 9 | # the Free Software Foundation; version 2 of the License. |
|---|
| 10 | # |
|---|
| 11 | # This program is distributed in the hope that it will be useful, |
|---|
| 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 14 | # GNU General Public License for more details. |
|---|
| 15 | # |
|---|
| 16 | # You should have received a copy of the GNU General Public License |
|---|
| 17 | # along with this program; if not, write to the Free Software |
|---|
| 18 | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| 19 | # |
|---|
| 20 | |
|---|
| 21 | PROGRAM = flashrom |
|---|
| 22 | |
|---|
| 23 | CC ?= gcc |
|---|
| 24 | STRIP ?= strip |
|---|
| 25 | INSTALL = install |
|---|
| 26 | DIFF = diff |
|---|
| 27 | PREFIX ?= /usr/local |
|---|
| 28 | MANDIR ?= $(PREFIX)/share/man |
|---|
| 29 | CFLAGS ?= -Os -Wall -Wshadow |
|---|
| 30 | EXPORTDIR ?= . |
|---|
| 31 | AR ?= ar |
|---|
| 32 | RANLIB ?= ranlib |
|---|
| 33 | |
|---|
| 34 | WARNERROR ?= yes |
|---|
| 35 | |
|---|
| 36 | ifeq ($(WARNERROR), yes) |
|---|
| 37 | CFLAGS += -Werror |
|---|
| 38 | endif |
|---|
| 39 | |
|---|
| 40 | # HOST_OS is only used to work around local toolchain issues. |
|---|
| 41 | HOST_OS ?= $(shell uname) |
|---|
| 42 | ifeq ($(HOST_OS), MINGW32_NT-5.1) |
|---|
| 43 | # Explicitly set CC = gcc on MinGW, otherwise: "cc: command not found". |
|---|
| 44 | CC = gcc |
|---|
| 45 | endif |
|---|
| 46 | ifneq ($(HOST_OS), SunOS) |
|---|
| 47 | STRIP_ARGS = -s |
|---|
| 48 | endif |
|---|
| 49 | |
|---|
| 50 | # Determine the destination processor architecture. |
|---|
| 51 | # IMPORTANT: The following line must be placed before TARGET_OS is ever used |
|---|
| 52 | # (of course), but should come after any lines setting CC because the line |
|---|
| 53 | # below uses CC itself. |
|---|
| 54 | override TARGET_OS := $(strip $(shell LC_ALL=C $(CC) $(CPPFLAGS) -E os.h 2>/dev/null | grep -v '^\#' | grep '"' | cut -f 2 -d'"')) |
|---|
| 55 | |
|---|
| 56 | ifeq ($(TARGET_OS), Darwin) |
|---|
| 57 | CPPFLAGS += -I/opt/local/include -I/usr/local/include |
|---|
| 58 | # DirectHW framework can be found in the DirectHW library. |
|---|
| 59 | LDFLAGS += -framework IOKit -framework DirectHW -L/opt/local/lib -L/usr/local/lib |
|---|
| 60 | endif |
|---|
| 61 | ifeq ($(TARGET_OS), FreeBSD) |
|---|
| 62 | CPPFLAGS += -I/usr/local/include |
|---|
| 63 | LDFLAGS += -L/usr/local/lib |
|---|
| 64 | endif |
|---|
| 65 | ifeq ($(TARGET_OS), OpenBSD) |
|---|
| 66 | CPPFLAGS += -I/usr/local/include |
|---|
| 67 | LDFLAGS += -L/usr/local/lib |
|---|
| 68 | endif |
|---|
| 69 | ifeq ($(TARGET_OS), DOS) |
|---|
| 70 | EXEC_SUFFIX := .exe |
|---|
| 71 | CPPFLAGS += -I../libgetopt -I../libpci/include |
|---|
| 72 | # DJGPP has odd uint*_t definitions which cause lots of format string warnings. |
|---|
| 73 | CPPFLAGS += -Wno-format |
|---|
| 74 | # FIXME Check if we can achieve the same effect with -L../libgetopt -lgetopt |
|---|
| 75 | LIBS += ../libgetopt/libgetopt.a |
|---|
| 76 | # Bus Pirate and Serprog are not supported under DOS (missing serial support). |
|---|
| 77 | ifeq ($(CONFIG_BUSPIRATE_SPI), yes) |
|---|
| 78 | UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes |
|---|
| 79 | else |
|---|
| 80 | override CONFIG_BUSPIRATE_SPI = no |
|---|
| 81 | endif |
|---|
| 82 | ifeq ($(CONFIG_SERPROG), yes) |
|---|
| 83 | UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes |
|---|
| 84 | else |
|---|
| 85 | override CONFIG_SERPROG = no |
|---|
| 86 | endif |
|---|
| 87 | # Dediprog and FT2232 are not supported under DOS (missing USB support). |
|---|
| 88 | ifeq ($(CONFIG_DEDIPROG), yes) |
|---|
| 89 | UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes |
|---|
| 90 | else |
|---|
| 91 | override CONFIG_DEDIPROG = no |
|---|
| 92 | endif |
|---|
| 93 | ifeq ($(CONFIG_FT2232_SPI), yes) |
|---|
| 94 | UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes |
|---|
| 95 | else |
|---|
| 96 | override CONFIG_FT2232_SPI = no |
|---|
| 97 | endif |
|---|
| 98 | endif |
|---|
| 99 | |
|---|
| 100 | # FIXME: Should we check for Cygwin/MSVC as well? |
|---|
| 101 | ifeq ($(TARGET_OS), MinGW) |
|---|
| 102 | EXEC_SUFFIX := .exe |
|---|
| 103 | # MinGW doesn't have the ffs() function, but we can use gcc's __builtin_ffs(). |
|---|
| 104 | CFLAGS += -Dffs=__builtin_ffs |
|---|
| 105 | # libusb-win32/libftdi stuff is usually installed in /usr/local. |
|---|
| 106 | CPPFLAGS += -I/usr/local/include |
|---|
| 107 | LDFLAGS += -L/usr/local/lib |
|---|
| 108 | # Serprog is not supported under Windows/MinGW (missing sockets support). |
|---|
| 109 | ifeq ($(CONFIG_SERPROG), yes) |
|---|
| 110 | UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes |
|---|
| 111 | else |
|---|
| 112 | override CONFIG_SERPROG = no |
|---|
| 113 | endif |
|---|
| 114 | # For now we disable all PCI-based programmers on Windows/MinGW (no libpci). |
|---|
| 115 | ifeq ($(CONFIG_INTERNAL), yes) |
|---|
| 116 | UNSUPPORTED_FEATURES += CONFIG_INTERNAL=yes |
|---|
| 117 | else |
|---|
| 118 | override CONFIG_INTERNAL = no |
|---|
| 119 | endif |
|---|
| 120 | ifeq ($(CONFIG_RAYER_SPI), yes) |
|---|
| 121 | UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes |
|---|
| 122 | else |
|---|
| 123 | override CONFIG_RAYER_SPI = no |
|---|
| 124 | endif |
|---|
| 125 | ifeq ($(CONFIG_NIC3COM), yes) |
|---|
| 126 | UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes |
|---|
| 127 | else |
|---|
| 128 | override CONFIG_NIC3COM = no |
|---|
| 129 | endif |
|---|
| 130 | ifeq ($(CONFIG_GFXNVIDIA), yes) |
|---|
| 131 | UNSUPPORTED_FEATURES += CONFIG_GFXNVIDIA=yes |
|---|
| 132 | else |
|---|
| 133 | override CONFIG_GFXNVIDIA = no |
|---|
| 134 | endif |
|---|
| 135 | ifeq ($(CONFIG_SATASII), yes) |
|---|
| 136 | UNSUPPORTED_FEATURES += CONFIG_SATASII=yes |
|---|
| 137 | else |
|---|
| 138 | override CONFIG_SATASII = no |
|---|
| 139 | endif |
|---|
| 140 | ifeq ($(CONFIG_ATAHPT), yes) |
|---|
| 141 | UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes |
|---|
| 142 | else |
|---|
| 143 | override CONFIG_ATAHPT = no |
|---|
| 144 | endif |
|---|
| 145 | ifeq ($(CONFIG_DRKAISER), yes) |
|---|
| 146 | UNSUPPORTED_FEATURES += CONFIG_DRKAISER=yes |
|---|
| 147 | else |
|---|
| 148 | override CONFIG_DRKAISER = no |
|---|
| 149 | endif |
|---|
| 150 | ifeq ($(CONFIG_NICREALTEK), yes) |
|---|
| 151 | UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes |
|---|
| 152 | else |
|---|
| 153 | override CONFIG_NICREALTEK = no |
|---|
| 154 | endif |
|---|
| 155 | ifeq ($(CONFIG_NICNATSEMI), yes) |
|---|
| 156 | UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes |
|---|
| 157 | else |
|---|
| 158 | override CONFIG_NICNATSEMI = no |
|---|
| 159 | endif |
|---|
| 160 | ifeq ($(CONFIG_NICINTEL), yes) |
|---|
| 161 | UNSUPPORTED_FEATURES += CONFIG_NICINTEL=yes |
|---|
| 162 | else |
|---|
| 163 | override CONFIG_NICINTEL = no |
|---|
| 164 | endif |
|---|
| 165 | ifeq ($(CONFIG_NICINTEL_SPI), yes) |
|---|
| 166 | UNSUPPORTED_FEATURES += CONFIG_NICINTEL_SPI=yes |
|---|
| 167 | else |
|---|
| 168 | override CONFIG_NICINTEL_SPI = no |
|---|
| 169 | endif |
|---|
| 170 | ifeq ($(CONFIG_OGP_SPI), yes) |
|---|
| 171 | UNSUPPORTED_FEATURES += CONFIG_OGP_SPI=yes |
|---|
| 172 | else |
|---|
| 173 | override CONFIG_OGP_SPI = no |
|---|
| 174 | endif |
|---|
| 175 | ifeq ($(CONFIG_SATAMV), yes) |
|---|
| 176 | UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes |
|---|
| 177 | else |
|---|
| 178 | override CONFIG_SATAMV = no |
|---|
| 179 | endif |
|---|
| 180 | endif |
|---|
| 181 | |
|---|
| 182 | ifeq ($(TARGET_OS), libpayload) |
|---|
| 183 | CPPFLAGS += -DSTANDALONE |
|---|
| 184 | ifeq ($(CONFIG_DUMMY), yes) |
|---|
| 185 | UNSUPPORTED_FEATURES += CONFIG_DUMMY=yes |
|---|
| 186 | else |
|---|
| 187 | override CONFIG_DUMMY = no |
|---|
| 188 | endif |
|---|
| 189 | ifeq ($(CONFIG_BUSPIRATE_SPI), yes) |
|---|
| 190 | UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes |
|---|
| 191 | else |
|---|
| 192 | override CONFIG_BUSPIRATE_SPI = no |
|---|
| 193 | endif |
|---|
| 194 | ifeq ($(CONFIG_SERPROG), yes) |
|---|
| 195 | UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes |
|---|
| 196 | else |
|---|
| 197 | override CONFIG_SERPROG = no |
|---|
| 198 | endif |
|---|
| 199 | # Dediprog and FT2232 are not supported with libpayload (missing libusb support) |
|---|
| 200 | ifeq ($(CONFIG_DEDIPROG), yes) |
|---|
| 201 | UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes |
|---|
| 202 | else |
|---|
| 203 | override CONFIG_DEDIPROG = no |
|---|
| 204 | endif |
|---|
| 205 | ifeq ($(CONFIG_FT2232_SPI), yes) |
|---|
| 206 | UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes |
|---|
| 207 | else |
|---|
| 208 | override CONFIG_FT2232_SPI = no |
|---|
| 209 | endif |
|---|
| 210 | endif |
|---|
| 211 | |
|---|
| 212 | ifneq ($(TARGET_OS), Linux) |
|---|
| 213 | ifeq ($(CONFIG_LINUX_SPI), yes) |
|---|
| 214 | UNSUPPORTED_FEATURES += CONFIG_LINUX_SPI=yes |
|---|
| 215 | else |
|---|
| 216 | override CONFIG_LINUX_SPI = no |
|---|
| 217 | endif |
|---|
| 218 | endif |
|---|
| 219 | |
|---|
| 220 | # Determine the destination processor architecture. |
|---|
| 221 | # IMPORTANT: The following line must be placed before ARCH is ever used |
|---|
| 222 | # (of course), but should come after any lines setting CC because the line |
|---|
| 223 | # below uses CC itself. |
|---|
| 224 | override ARCH := $(strip $(shell LC_ALL=C $(CC) $(CPPFLAGS) -E arch.h 2>/dev/null | grep -v '^\#' | grep '"' | cut -f 2 -d'"')) |
|---|
| 225 | |
|---|
| 226 | # PCI port I/O support is unimplemented on PPC/MIPS and unavailable on ARM. |
|---|
| 227 | # Right now this means the drivers below only work on x86. |
|---|
| 228 | ifneq ($(ARCH), x86) |
|---|
| 229 | ifeq ($(CONFIG_NIC3COM), yes) |
|---|
| 230 | UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes |
|---|
| 231 | else |
|---|
| 232 | override CONFIG_NIC3COM = no |
|---|
| 233 | endif |
|---|
| 234 | ifeq ($(CONFIG_NICREALTEK), yes) |
|---|
| 235 | UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes |
|---|
| 236 | else |
|---|
| 237 | override CONFIG_NICREALTEK = no |
|---|
| 238 | endif |
|---|
| 239 | ifeq ($(CONFIG_NICNATSEMI), yes) |
|---|
| 240 | UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes |
|---|
| 241 | else |
|---|
| 242 | override CONFIG_NICNATSEMI = no |
|---|
| 243 | endif |
|---|
| 244 | ifeq ($(CONFIG_RAYER_SPI), yes) |
|---|
| 245 | UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes |
|---|
| 246 | else |
|---|
| 247 | override CONFIG_RAYER_SPI = no |
|---|
| 248 | endif |
|---|
| 249 | ifeq ($(CONFIG_ATAHPT), yes) |
|---|
| 250 | UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes |
|---|
| 251 | else |
|---|
| 252 | override CONFIG_ATAHPT = no |
|---|
| 253 | endif |
|---|
| 254 | ifeq ($(CONFIG_SATAMV), yes) |
|---|
| 255 | UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes |
|---|
| 256 | else |
|---|
| 257 | override CONFIG_SATAMV = no |
|---|
| 258 | endif |
|---|
| 259 | endif |
|---|
| 260 | |
|---|
| 261 | CHIP_OBJS = jedec.o stm50flw0x0x.o w39.o w29ee011.o \ |
|---|
| 262 | sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \ |
|---|
| 263 | sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o \ |
|---|
| 264 | a25.o at25.o opaque.o sfdp.o en29lv640b.o |
|---|
| 265 | |
|---|
| 266 | LIB_OBJS = layout.o |
|---|
| 267 | |
|---|
| 268 | CLI_OBJS = flashrom.o cli_classic.o cli_output.o print.o |
|---|
| 269 | |
|---|
| 270 | PROGRAMMER_OBJS = udelay.o programmer.o |
|---|
| 271 | |
|---|
| 272 | all: pciutils features $(PROGRAM)$(EXEC_SUFFIX) |
|---|
| 273 | |
|---|
| 274 | # Set the flashrom version string from the highest revision number |
|---|
| 275 | # of the checked out flashrom files. |
|---|
| 276 | # Note to packagers: Any tree exported with "make export" or "make tarball" |
|---|
| 277 | # will not require subversion. The downloadable snapshots are already exported. |
|---|
| 278 | SVNVERSION := $(shell LC_ALL=C svnversion -cn . 2>/dev/null | sed -e "s/.*://" -e "s/\([0-9]*\).*/\1/" | grep "[0-9]" || LC_ALL=C svn info . 2>/dev/null | awk '/^Revision:/ {print $$2 }' | grep "[0-9]" || LC_ALL=C git svn info . 2>/dev/null | awk '/^Revision:/ {print $$2 }' | grep "[0-9]" || echo unknown) |
|---|
| 279 | |
|---|
| 280 | RELEASE := 0.9.5.2 |
|---|
| 281 | VERSION := $(RELEASE)-r$(SVNVERSION) |
|---|
| 282 | RELEASENAME ?= $(VERSION) |
|---|
| 283 | |
|---|
| 284 | SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"' |
|---|
| 285 | |
|---|
| 286 | # Always enable internal/onboard support for now. |
|---|
| 287 | CONFIG_INTERNAL ?= yes |
|---|
| 288 | |
|---|
| 289 | # Always enable serprog for now. Needs to be disabled on Windows. |
|---|
| 290 | CONFIG_SERPROG ?= yes |
|---|
| 291 | |
|---|
| 292 | # RayeR SPIPGM hardware support |
|---|
| 293 | CONFIG_RAYER_SPI ?= yes |
|---|
| 294 | |
|---|
| 295 | # PonyProg2000 SPI hardware support |
|---|
| 296 | CONFIG_PONY_SPI ?= yes |
|---|
| 297 | |
|---|
| 298 | # Always enable 3Com NICs for now. |
|---|
| 299 | CONFIG_NIC3COM ?= yes |
|---|
| 300 | |
|---|
| 301 | # Enable NVIDIA graphics cards. Note: write and erase do not work properly. |
|---|
| 302 | CONFIG_GFXNVIDIA ?= yes |
|---|
| 303 | |
|---|
| 304 | # Always enable SiI SATA controllers for now. |
|---|
| 305 | CONFIG_SATASII ?= yes |
|---|
| 306 | |
|---|
| 307 | # Highpoint (HPT) ATA/RAID controller support. |
|---|
| 308 | # IMPORTANT: This code is not yet working! |
|---|
| 309 | CONFIG_ATAHPT ?= no |
|---|
| 310 | |
|---|
| 311 | # Always enable FT2232 SPI dongles for now. |
|---|
| 312 | CONFIG_FT2232_SPI ?= yes |
|---|
| 313 | |
|---|
| 314 | # Always enable dummy tracing for now. |
|---|
| 315 | CONFIG_DUMMY ?= yes |
|---|
| 316 | |
|---|
| 317 | # Always enable Dr. Kaiser for now. |
|---|
| 318 | CONFIG_DRKAISER ?= yes |
|---|
| 319 | |
|---|
| 320 | # Always enable Realtek NICs for now. |
|---|
| 321 | CONFIG_NICREALTEK ?= yes |
|---|
| 322 | |
|---|
| 323 | # Disable National Semiconductor NICs until support is complete and tested. |
|---|
| 324 | CONFIG_NICNATSEMI ?= no |
|---|
| 325 | |
|---|
| 326 | # Always enable Intel NICs for now. |
|---|
| 327 | CONFIG_NICINTEL ?= yes |
|---|
| 328 | |
|---|
| 329 | # Always enable SPI on Intel NICs for now. |
|---|
| 330 | CONFIG_NICINTEL_SPI ?= yes |
|---|
| 331 | |
|---|
| 332 | # Always enable SPI on OGP cards for now. |
|---|
| 333 | CONFIG_OGP_SPI ?= yes |
|---|
| 334 | |
|---|
| 335 | # Always enable Bus Pirate SPI for now. |
|---|
| 336 | CONFIG_BUSPIRATE_SPI ?= yes |
|---|
| 337 | |
|---|
| 338 | # Disable Dediprog SF100 until support is complete and tested. |
|---|
| 339 | CONFIG_DEDIPROG ?= no |
|---|
| 340 | |
|---|
| 341 | # Always enable Marvell SATA controllers for now. |
|---|
| 342 | CONFIG_SATAMV ?= yes |
|---|
| 343 | |
|---|
| 344 | # Enable Linux spidev interface by default. We disable it on non-Linux targets. |
|---|
| 345 | CONFIG_LINUX_SPI ?= yes |
|---|
| 346 | |
|---|
| 347 | # Disable wiki printing by default. It is only useful if you have wiki access. |
|---|
| 348 | CONFIG_PRINT_WIKI ?= no |
|---|
| 349 | |
|---|
| 350 | # Bitbanging SPI infrastructure, default off unless needed. |
|---|
| 351 | ifeq ($(CONFIG_RAYER_SPI), yes) |
|---|
| 352 | override CONFIG_BITBANG_SPI = yes |
|---|
| 353 | else |
|---|
| 354 | ifeq ($(CONFIG_PONY_SPI), yes) |
|---|
| 355 | override CONFIG_BITBANG_SPI = yes |
|---|
| 356 | else |
|---|
| 357 | ifeq ($(CONFIG_INTERNAL), yes) |
|---|
| 358 | override CONFIG_BITBANG_SPI = yes |
|---|
| 359 | else |
|---|
| 360 | ifeq ($(CONFIG_NICINTEL_SPI), yes) |
|---|
| 361 | override CONFIG_BITBANG_SPI = yes |
|---|
| 362 | else |
|---|
| 363 | ifeq ($(CONFIG_OGP_SPI), yes) |
|---|
| 364 | override CONFIG_BITBANG_SPI = yes |
|---|
| 365 | else |
|---|
| 366 | CONFIG_BITBANG_SPI ?= no |
|---|
| 367 | endif |
|---|
| 368 | endif |
|---|
| 369 | endif |
|---|
| 370 | endif |
|---|
| 371 | endif |
|---|
| 372 | |
|---|
| 373 | ifeq ($(CONFIG_INTERNAL), yes) |
|---|
| 374 | FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1' |
|---|
| 375 | PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o dmi.o internal.o |
|---|
| 376 | ifeq ($(ARCH), x86) |
|---|
| 377 | PROGRAMMER_OBJS += it87spi.o it85spi.o sb600spi.o wbsio_spi.o mcp6x_spi.o |
|---|
| 378 | PROGRAMMER_OBJS += ichspi.o ich_descriptors.o |
|---|
| 379 | else |
|---|
| 380 | endif |
|---|
| 381 | NEED_PCI := yes |
|---|
| 382 | endif |
|---|
| 383 | |
|---|
| 384 | ifeq ($(CONFIG_SERPROG), yes) |
|---|
| 385 | FEATURE_CFLAGS += -D'CONFIG_SERPROG=1' |
|---|
| 386 | PROGRAMMER_OBJS += serprog.o |
|---|
| 387 | NEED_SERIAL := yes |
|---|
| 388 | NEED_NET := yes |
|---|
| 389 | endif |
|---|
| 390 | |
|---|
| 391 | ifeq ($(CONFIG_RAYER_SPI), yes) |
|---|
| 392 | FEATURE_CFLAGS += -D'CONFIG_RAYER_SPI=1' |
|---|
| 393 | PROGRAMMER_OBJS += rayer_spi.o |
|---|
| 394 | # Actually, NEED_PCI is wrong. NEED_IOPORT_ACCESS would be more correct. |
|---|
| 395 | NEED_PCI := yes |
|---|
| 396 | endif |
|---|
| 397 | |
|---|
| 398 | ifeq ($(CONFIG_PONY_SPI), yes) |
|---|
| 399 | FEATURE_CFLAGS += -D'CONFIG_PONY_SPI=1' |
|---|
| 400 | PROGRAMMER_OBJS += pony_spi.o |
|---|
| 401 | NEED_SERIAL := yes |
|---|
| 402 | endif |
|---|
| 403 | |
|---|
| 404 | ifeq ($(CONFIG_BITBANG_SPI), yes) |
|---|
| 405 | FEATURE_CFLAGS += -D'CONFIG_BITBANG_SPI=1' |
|---|
| 406 | PROGRAMMER_OBJS += bitbang_spi.o |
|---|
| 407 | endif |
|---|
| 408 | |
|---|
| 409 | ifeq ($(CONFIG_NIC3COM), yes) |
|---|
| 410 | FEATURE_CFLAGS += -D'CONFIG_NIC3COM=1' |
|---|
| 411 | PROGRAMMER_OBJS += nic3com.o |
|---|
| 412 | NEED_PCI := yes |
|---|
| 413 | endif |
|---|
| 414 | |
|---|
| 415 | ifeq ($(CONFIG_GFXNVIDIA), yes) |
|---|
| 416 | FEATURE_CFLAGS += -D'CONFIG_GFXNVIDIA=1' |
|---|
| 417 | PROGRAMMER_OBJS += gfxnvidia.o |
|---|
| 418 | NEED_PCI := yes |
|---|
| 419 | endif |
|---|
| 420 | |
|---|
| 421 | ifeq ($(CONFIG_SATASII), yes) |
|---|
| 422 | FEATURE_CFLAGS += -D'CONFIG_SATASII=1' |
|---|
| 423 | PROGRAMMER_OBJS += satasii.o |
|---|
| 424 | NEED_PCI := yes |
|---|
| 425 | endif |
|---|
| 426 | |
|---|
| 427 | ifeq ($(CONFIG_ATAHPT), yes) |
|---|
| 428 | FEATURE_CFLAGS += -D'CONFIG_ATAHPT=1' |
|---|
| 429 | PROGRAMMER_OBJS += atahpt.o |
|---|
| 430 | NEED_PCI := yes |
|---|
| 431 | endif |
|---|
| 432 | |
|---|
| 433 | ifeq ($(CONFIG_FT2232_SPI), yes) |
|---|
| 434 | FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb") |
|---|
| 435 | # This is a totally ugly hack. |
|---|
| 436 | FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'CONFIG_FT2232_SPI=1'") |
|---|
| 437 | FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)") |
|---|
| 438 | PROGRAMMER_OBJS += ft2232_spi.o |
|---|
| 439 | endif |
|---|
| 440 | |
|---|
| 441 | ifeq ($(CONFIG_DUMMY), yes) |
|---|
| 442 | FEATURE_CFLAGS += -D'CONFIG_DUMMY=1' |
|---|
| 443 | PROGRAMMER_OBJS += dummyflasher.o |
|---|
| 444 | endif |
|---|
| 445 | |
|---|
| 446 | ifeq ($(CONFIG_DRKAISER), yes) |
|---|
| 447 | FEATURE_CFLAGS += -D'CONFIG_DRKAISER=1' |
|---|
| 448 | PROGRAMMER_OBJS += drkaiser.o |
|---|
| 449 | NEED_PCI := yes |
|---|
| 450 | endif |
|---|
| 451 | |
|---|
| 452 | ifeq ($(CONFIG_NICREALTEK), yes) |
|---|
| 453 | FEATURE_CFLAGS += -D'CONFIG_NICREALTEK=1' |
|---|
| 454 | PROGRAMMER_OBJS += nicrealtek.o |
|---|
| 455 | NEED_PCI := yes |
|---|
| 456 | endif |
|---|
| 457 | |
|---|
| 458 | ifeq ($(CONFIG_NICNATSEMI), yes) |
|---|
| 459 | FEATURE_CFLAGS += -D'CONFIG_NICNATSEMI=1' |
|---|
| 460 | PROGRAMMER_OBJS += nicnatsemi.o |
|---|
| 461 | NEED_PCI := yes |
|---|
| 462 | endif |
|---|
| 463 | |
|---|
| 464 | ifeq ($(CONFIG_NICINTEL), yes) |
|---|
| 465 | FEATURE_CFLAGS += -D'CONFIG_NICINTEL=1' |
|---|
| 466 | PROGRAMMER_OBJS += nicintel.o |
|---|
| 467 | NEED_PCI := yes |
|---|
| 468 | endif |
|---|
| 469 | |
|---|
| 470 | ifeq ($(CONFIG_NICINTEL_SPI), yes) |
|---|
| 471 | FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1' |
|---|
| 472 | PROGRAMMER_OBJS += nicintel_spi.o |
|---|
| 473 | NEED_PCI := yes |
|---|
| 474 | endif |
|---|
| 475 | |
|---|
| 476 | ifeq ($(CONFIG_OGP_SPI), yes) |
|---|
| 477 | FEATURE_CFLAGS += -D'CONFIG_OGP_SPI=1' |
|---|
| 478 | PROGRAMMER_OBJS += ogp_spi.o |
|---|
| 479 | NEED_PCI := yes |
|---|
| 480 | endif |
|---|
| 481 | |
|---|
| 482 | ifeq ($(CONFIG_BUSPIRATE_SPI), yes) |
|---|
| 483 | FEATURE_CFLAGS += -D'CONFIG_BUSPIRATE_SPI=1' |
|---|
| 484 | PROGRAMMER_OBJS += buspirate_spi.o |
|---|
| 485 | NEED_SERIAL := yes |
|---|
| 486 | endif |
|---|
| 487 | |
|---|
| 488 | ifeq ($(CONFIG_DEDIPROG), yes) |
|---|
| 489 | FEATURE_CFLAGS += -D'CONFIG_DEDIPROG=1' |
|---|
| 490 | FEATURE_LIBS += -lusb |
|---|
| 491 | PROGRAMMER_OBJS += dediprog.o |
|---|
| 492 | endif |
|---|
| 493 | |
|---|
| 494 | ifeq ($(CONFIG_SATAMV), yes) |
|---|
| 495 | FEATURE_CFLAGS += -D'CONFIG_SATAMV=1' |
|---|
| 496 | PROGRAMMER_OBJS += satamv.o |
|---|
| 497 | NEED_PCI := yes |
|---|
| 498 | endif |
|---|
| 499 | |
|---|
| 500 | ifeq ($(CONFIG_LINUX_SPI), yes) |
|---|
| 501 | # This is a totally ugly hack. |
|---|
| 502 | FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "LINUX_SPI_SUPPORT := yes" .features && printf "%s" "-D'CONFIG_LINUX_SPI=1'") |
|---|
| 503 | PROGRAMMER_OBJS += linux_spi.o |
|---|
| 504 | endif |
|---|
| 505 | |
|---|
| 506 | ifeq ($(NEED_SERIAL), yes) |
|---|
| 507 | LIB_OBJS += serial.o |
|---|
| 508 | endif |
|---|
| 509 | |
|---|
| 510 | ifeq ($(NEED_NET), yes) |
|---|
| 511 | ifeq ($(TARGET_OS), SunOS) |
|---|
| 512 | LIBS += -lsocket |
|---|
| 513 | endif |
|---|
| 514 | endif |
|---|
| 515 | |
|---|
| 516 | ifeq ($(NEED_PCI), yes) |
|---|
| 517 | CHECK_LIBPCI = yes |
|---|
| 518 | FEATURE_CFLAGS += -D'NEED_PCI=1' |
|---|
| 519 | PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o |
|---|
| 520 | ifeq ($(TARGET_OS), NetBSD) |
|---|
| 521 | # The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci. |
|---|
| 522 | LIBS += -lpciutils -lpci |
|---|
| 523 | # For (i386|x86_64)_iopl(2). |
|---|
| 524 | LIBS += -l$(shell uname -p) |
|---|
| 525 | else |
|---|
| 526 | ifeq ($(TARGET_OS), DOS) |
|---|
| 527 | # FIXME There needs to be a better way to do this |
|---|
| 528 | LIBS += ../libpci/lib/libpci.a |
|---|
| 529 | else |
|---|
| 530 | LIBS += -lpci |
|---|
| 531 | ifeq ($(TARGET_OS), OpenBSD) |
|---|
| 532 | # For (i386|amd64)_iopl(2). |
|---|
| 533 | LIBS += -l$(shell uname -m) |
|---|
| 534 | endif |
|---|
| 535 | endif |
|---|
| 536 | endif |
|---|
| 537 | endif |
|---|
| 538 | |
|---|
| 539 | ifeq ($(CONFIG_PRINT_WIKI), yes) |
|---|
| 540 | FEATURE_CFLAGS += -D'CONFIG_PRINT_WIKI=1' |
|---|
| 541 | CLI_OBJS += print_wiki.o |
|---|
| 542 | endif |
|---|
| 543 | |
|---|
| 544 | FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "UTSNAME := yes" .features && printf "%s" "-D'HAVE_UTSNAME=1'") |
|---|
| 545 | |
|---|
| 546 | # We could use PULLED_IN_LIBS, but that would be ugly. |
|---|
| 547 | FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz") |
|---|
| 548 | |
|---|
| 549 | LIBFLASHROM_OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS) |
|---|
| 550 | OBJS = $(CLI_OBJS) $(LIBFLASHROM_OBJS) |
|---|
| 551 | |
|---|
| 552 | $(PROGRAM)$(EXEC_SUFFIX): $(OBJS) |
|---|
| 553 | $(CC) $(LDFLAGS) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(FEATURE_LIBS) $(LIBS) |
|---|
| 554 | |
|---|
| 555 | libflashrom.a: $(LIBFLASHROM_OBJS) |
|---|
| 556 | $(AR) rcs $@ $^ |
|---|
| 557 | $(RANLIB) $@ |
|---|
| 558 | |
|---|
| 559 | # TAROPTIONS reduces information leakage from the packager's system. |
|---|
| 560 | # If other tar programs support command line arguments for setting uid/gid of |
|---|
| 561 | # stored files, they can be handled here as well. |
|---|
| 562 | TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root") |
|---|
| 563 | |
|---|
| 564 | %.o: %.c .features |
|---|
| 565 | $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $< |
|---|
| 566 | |
|---|
| 567 | # Make sure to add all names of generated binaries here. |
|---|
| 568 | # This includes all frontends and libflashrom. |
|---|
| 569 | # We don't use EXEC_SUFFIX here because we want to clean everything. |
|---|
| 570 | clean: |
|---|
| 571 | rm -f $(PROGRAM) $(PROGRAM).exe libflashrom.a *.o *.d |
|---|
| 572 | |
|---|
| 573 | distclean: clean |
|---|
| 574 | rm -f .features .libdeps |
|---|
| 575 | |
|---|
| 576 | strip: $(PROGRAM)$(EXEC_SUFFIX) |
|---|
| 577 | $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX) |
|---|
| 578 | |
|---|
| 579 | # to define test programs we use verbatim variables, which get exported |
|---|
| 580 | # to environment variables and are referenced with $$<varname> later |
|---|
| 581 | |
|---|
| 582 | define COMPILER_TEST |
|---|
| 583 | int main(int argc, char **argv) |
|---|
| 584 | { |
|---|
| 585 | (void) argc; |
|---|
| 586 | (void) argv; |
|---|
| 587 | return 0; |
|---|
| 588 | } |
|---|
| 589 | endef |
|---|
| 590 | export COMPILER_TEST |
|---|
| 591 | |
|---|
| 592 | compiler: featuresavailable |
|---|
| 593 | @printf "Checking for a C compiler... " |
|---|
| 594 | @echo "$$COMPILER_TEST" > .test.c |
|---|
| 595 | @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test$(EXEC_SUFFIX) >/dev/null 2>&1 && \ |
|---|
| 596 | echo "found." || ( echo "not found."; \ |
|---|
| 597 | rm -f .test.c .test$(EXEC_SUFFIX); exit 1) |
|---|
| 598 | @rm -f .test.c .test$(EXEC_SUFFIX) |
|---|
| 599 | @printf "Target arch is " |
|---|
| 600 | @# FreeBSD wc will output extraneous whitespace. |
|---|
| 601 | @echo $(ARCH)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \ |
|---|
| 602 | ( echo "unknown. Aborting."; exit 1) |
|---|
| 603 | @printf "%s\n" '$(ARCH)' |
|---|
| 604 | @printf "Target OS is " |
|---|
| 605 | @# FreeBSD wc will output extraneous whitespace. |
|---|
| 606 | @echo $(TARGET_OS)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \ |
|---|
| 607 | ( echo "unknown. Aborting."; exit 1) |
|---|
| 608 | @printf "%s\n" '$(TARGET_OS)' |
|---|
| 609 | |
|---|
| 610 | define LIBPCI_TEST |
|---|
| 611 | /* Avoid a failing test due to libpci header symbol shadowing breakage */ |
|---|
| 612 | #define index shadow_workaround_index |
|---|
| 613 | #include <pci/pci.h> |
|---|
| 614 | struct pci_access *pacc; |
|---|
| 615 | int main(int argc, char **argv) |
|---|
| 616 | { |
|---|
| 617 | (void) argc; |
|---|
| 618 | (void) argv; |
|---|
| 619 | pacc = pci_alloc(); |
|---|
| 620 | return 0; |
|---|
| 621 | } |
|---|
| 622 | endef |
|---|
| 623 | export LIBPCI_TEST |
|---|
| 624 | |
|---|
| 625 | ifeq ($(CHECK_LIBPCI), yes) |
|---|
| 626 | pciutils: compiler |
|---|
| 627 | @printf "Checking for libpci headers... " |
|---|
| 628 | @echo "$$LIBPCI_TEST" > .test.c |
|---|
| 629 | @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null 2>&1 && \ |
|---|
| 630 | echo "found." || ( echo "not found."; echo; \ |
|---|
| 631 | echo "Please install libpci headers (package pciutils-devel)."; \ |
|---|
| 632 | echo "See README for more information."; echo; \ |
|---|
| 633 | rm -f .test.c .test.o; exit 1) |
|---|
| 634 | @printf "Checking if libpci is present and sufficient... " |
|---|
| 635 | @printf "" > .libdeps |
|---|
| 636 | @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) >/dev/null 2>&1 && \ |
|---|
| 637 | echo "yes." || ( echo "no."; \ |
|---|
| 638 | printf "Checking if libz+libpci are present and sufficient..."; \ |
|---|
| 639 | $(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) -lz >/dev/null 2>&1 && \ |
|---|
| 640 | ( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo; \ |
|---|
| 641 | echo "Please install libpci (package pciutils) and/or libz."; \ |
|---|
| 642 | echo "See README for more information."; echo; \ |
|---|
| 643 | rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1) ) |
|---|
| 644 | @rm -f .test.c .test.o .test$(EXEC_SUFFIX) |
|---|
| 645 | else |
|---|
| 646 | pciutils: compiler |
|---|
| 647 | @printf "" > .libdeps |
|---|
| 648 | endif |
|---|
| 649 | |
|---|
| 650 | .features: features |
|---|
| 651 | |
|---|
| 652 | # If a user does not explicitly request a non-working feature, we should |
|---|
| 653 | # silently disable it. However, if a non-working (does not compile) feature |
|---|
| 654 | # is explicitly requested, we should bail out with a descriptive error message. |
|---|
| 655 | ifeq ($(UNSUPPORTED_FEATURES), ) |
|---|
| 656 | featuresavailable: |
|---|
| 657 | else |
|---|
| 658 | featuresavailable: |
|---|
| 659 | @echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)" |
|---|
| 660 | @false |
|---|
| 661 | endif |
|---|
| 662 | |
|---|
| 663 | define FTDI_TEST |
|---|
| 664 | #include <ftdi.h> |
|---|
| 665 | struct ftdi_context *ftdic = NULL; |
|---|
| 666 | int main(int argc, char **argv) |
|---|
| 667 | { |
|---|
| 668 | (void) argc; |
|---|
| 669 | (void) argv; |
|---|
| 670 | return ftdi_init(ftdic); |
|---|
| 671 | } |
|---|
| 672 | endef |
|---|
| 673 | export FTDI_TEST |
|---|
| 674 | |
|---|
| 675 | define UTSNAME_TEST |
|---|
| 676 | #include <sys/utsname.h> |
|---|
| 677 | struct utsname osinfo; |
|---|
| 678 | int main(int argc, char **argv) |
|---|
| 679 | { |
|---|
| 680 | (void) argc; |
|---|
| 681 | (void) argv; |
|---|
| 682 | uname (&osinfo); |
|---|
| 683 | return 0; |
|---|
| 684 | } |
|---|
| 685 | endef |
|---|
| 686 | export UTSNAME_TEST |
|---|
| 687 | |
|---|
| 688 | define LINUX_SPI_TEST |
|---|
| 689 | #include <linux/types.h> |
|---|
| 690 | #include <linux/spi/spidev.h> |
|---|
| 691 | |
|---|
| 692 | int main(int argc, char **argv) |
|---|
| 693 | { |
|---|
| 694 | (void) argc; |
|---|
| 695 | (void) argv; |
|---|
| 696 | return 0; |
|---|
| 697 | } |
|---|
| 698 | endef |
|---|
| 699 | export LINUX_SPI_TEST |
|---|
| 700 | |
|---|
| 701 | features: compiler |
|---|
| 702 | @echo "FEATURES := yes" > .features.tmp |
|---|
| 703 | ifeq ($(CONFIG_FT2232_SPI), yes) |
|---|
| 704 | @printf "Checking for FTDI support... " |
|---|
| 705 | @echo "$$FTDI_TEST" > .featuretest.c |
|---|
| 706 | @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \ |
|---|
| 707 | ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \ |
|---|
| 708 | ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp ) |
|---|
| 709 | endif |
|---|
| 710 | ifeq ($(CONFIG_LINUX_SPI), yes) |
|---|
| 711 | @printf "Checking if Linux SPI headers are present... " |
|---|
| 712 | @echo "$$LINUX_SPI_TEST" > .featuretest.c |
|---|
| 713 | @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \ |
|---|
| 714 | ( echo "yes."; echo "LINUX_SPI_SUPPORT := yes" >> .features.tmp ) || \ |
|---|
| 715 | ( echo "no."; echo "LINUX_SPI_SUPPORT := no" >> .features.tmp ) |
|---|
| 716 | endif |
|---|
| 717 | @printf "Checking for utsname support... " |
|---|
| 718 | @echo "$$UTSNAME_TEST" > .featuretest.c |
|---|
| 719 | @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \ |
|---|
| 720 | ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \ |
|---|
| 721 | ( echo "not found."; echo "UTSNAME := no" >> .features.tmp ) |
|---|
| 722 | @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features |
|---|
| 723 | @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX) |
|---|
| 724 | |
|---|
| 725 | install: $(PROGRAM)$(EXEC_SUFFIX) |
|---|
| 726 | mkdir -p $(DESTDIR)$(PREFIX)/sbin |
|---|
| 727 | mkdir -p $(DESTDIR)$(MANDIR)/man8 |
|---|
| 728 | $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin |
|---|
| 729 | $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8 |
|---|
| 730 | |
|---|
| 731 | export: |
|---|
| 732 | @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME) |
|---|
| 733 | @svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME) |
|---|
| 734 | @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile |
|---|
| 735 | @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog |
|---|
| 736 | @echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/ |
|---|
| 737 | |
|---|
| 738 | tarball: export |
|---|
| 739 | @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/ |
|---|
| 740 | @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME) |
|---|
| 741 | @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 |
|---|
| 742 | |
|---|
| 743 | djgpp-dos: clean |
|---|
| 744 | make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip |
|---|
| 745 | libpayload: clean |
|---|
| 746 | make CC="CC=i386-elf-gcc lpgcc" AR=i386-elf-ar RANLIB=i386-elf-ranlib |
|---|
| 747 | |
|---|
| 748 | .PHONY: all clean distclean compiler pciutils features export tarball dos featuresavailable |
|---|
| 749 | |
|---|
| 750 | -include $(OBJS:.o=.d) |
|---|