The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/mips/conf/PICOSTATION_M2HP

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #
    2 # Specific board setup for the Picostation M2 HP board.
    3 #
    4 # This board has the following hardware:
    5 #
    6 # + AR7241 CPU SoC
    7 # + AR9287 Wifi
    8 # + Integrated switch (XXX speed?)
    9 # + 8MB flash
   10 # + 32MB RAM
   11 # + uboot environment
   12 
   13 # $FreeBSD$
   14 
   15 include         "AR724X_BASE"
   16 ident           "PICOSTATION_M2HP"
   17 hints           "PICOSTATION_M2HP.hints"
   18 
   19 options         AR71XX_REALMEM=32*1024*1024
   20 
   21 options         AR71XX_ENV_UBOOT
   22 
   23 # Limit inlines
   24 makeoptions     INLINE_LIMIT=768
   25 
   26 # We bite the performance overhead for now; the kernel won't
   27 # fit if the mutexes are inlined.
   28 options         MUTEX_NOINLINE
   29 options         RWLOCK_NOINLINE
   30 options         SX_NOINLINE
   31 
   32 # There's no need to enable swapping on this platform.
   33 options         NO_SWAPPING
   34 
   35 # For DOS - enable if required
   36 # options       MSDOSFS
   37 
   38 # uncompress - to boot read-only lzma natively from flash
   39 device          geom_uncompress
   40 options         GEOM_UNCOMPRESS
   41 options         ROOTDEVNAME=\"ufs:/dev/map/rootfs.uncompress\"
   42 
   43 # Not enough space for these..
   44 nooptions       INVARIANTS
   45 nooptions       INVARIANT_SUPPORT
   46 nooptions       WITNESS
   47 nooptions       WITNESS_SKIPSPIN
   48 nooptions       DEBUG_REDZONE
   49 nooptions       DEBUG_MEMGUARD
   50 
   51 # Used for the static uboot partition map
   52 device          geom_map
   53 
   54 # Options needed for the EEPROM based calibration/PCI configuration data.
   55 options         AR71XX_ATH_EEPROM       # Fetch EEPROM/PCI config from flash
   56 options         ATH_EEPROM_FIRMWARE     # Use EEPROM from flash
   57 device          firmware                # Used by the above
   58 
   59 # Options required for miiproxy and mdiobus
   60 options         ARGE_MDIO               # Export an MDIO bus separate from arge
   61 device          miiproxy                # MDIO bus <-> MII PHY rendezvous
   62 
   63 device          etherswitch
   64 device          arswitch
   65 
   66 # Enable GPIO
   67 device         gpio
   68 device         gpioled

Cache object: 562e3a8040bd961aa7a72f8c3fa130a2


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.