You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
758 B

  1. --- a/Makefile
  2. +++ b/Makefile
  3. @@ -424,15 +424,6 @@ endif
  4. override ARCH := $(strip $(call debug_shell,$(CC) $(CPPFLAGS) -E archtest.c 2>/dev/null | grep -v '^\#' | grep '"' | cut -f 2 -d'"'))
  5. override ENDIAN := $(strip $(call debug_shell,$(CC) $(CPPFLAGS) -E endiantest.c 2>/dev/null | grep -v '^\#'))
  6. -# Disable the internal programmer on unsupported architectures (everything but x86 and mipsel)
  7. -ifneq ($(ARCH)-little, $(filter $(ARCH),x86 mips)-$(ENDIAN))
  8. -ifeq ($(CONFIG_INTERNAL), yes)
  9. -UNSUPPORTED_FEATURES += CONFIG_INTERNAL=yes
  10. -else
  11. -override CONFIG_INTERNAL = no
  12. -endif
  13. -endif
  14. -
  15. # PCI port I/O support is unimplemented on PPC/MIPS/SPARC and unavailable on ARM.
  16. # Right now this means the drivers below only work on x86.
  17. ifneq ($(ARCH), x86)