Changeset 1c6b3a2 in mainline for kernel/arch/ia32/Makefile.inc


Ignore:
Timestamp:
2009-03-07T20:36:15Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9482bf0b
Parents:
1515522
Message:

Improve the configuration file.

  • Support for easy configuration with sane defaults.
  • Fix the ambiguous MACHINE variable by introducing the PROCESSOR variable.
  • Eliminate some unnecessarily detailed questions by providing defaults for the Serengeti machine.
  • Introduce CONFIG_HID_IN and CONFIG_HID_OUT variables. They help to limit the number of offered HID devices. In the future, they can be also used to configure the way how the serial controller devices are connected to the keyboard / serial line modules on some platforms where we can't autodetect.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/Makefile.inc

    r1515522 r1c6b3a2  
    4646#
    4747
    48 ifeq ($(MACHINE),athlon_xp)
     48ifeq ($(PROCESSOR),athlon_xp)
    4949        CMN2 = -march=athlon-xp
    5050        SUNCC_CFLAGS += -xarch=ssea
    5151endif
    52 ifeq ($(MACHINE),athlon_mp)
     52ifeq ($(PROCESSOR),athlon_mp)
    5353        CMN2 = -march=athlon-mp
    5454        SUNCC_CFLAGS += xarch=ssea
    5555endif
    56 ifeq ($(MACHINE),pentium3)
     56ifeq ($(PROCESSOR),pentium3)
    5757        CMN2 = -march=pentium3
    5858        SUNCC_CFLAGS += -xarch=sse
    5959endif
    60 ifeq ($(MACHINE),pentium4)
     60ifeq ($(PROCESSOR),pentium4)
    6161        CMN2 = -march=pentium4
    6262        SUNCC_CFLAGS += -xarch=sse2
    6363endif
    64 ifeq ($(MACHINE),core)
     64ifeq ($(PROCESSOR),core)
    6565        CMN2 = -march=prescott
    6666        SUNCC_CFLAGS += -xarch=sse3
Note: See TracChangeset for help on using the changeset viewer.