2013-06-08 20:21:17 +00:00
|
|
|
#
|
|
|
|
# Carambola 2 - an AR933x based SoC wifi device.
|
|
|
|
#
|
|
|
|
# http://shop.8devices.com/wifi4things/carambola2
|
|
|
|
#
|
|
|
|
# * AR9330 SoC
|
|
|
|
# * 64MB RAM
|
|
|
|
# * 16MB flash
|
|
|
|
# * Integrated 1x1 2GHz wifi and 10/100 bridge
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2015-11-19 01:58:12 +00:00
|
|
|
#NO_UNIVERSE
|
|
|
|
|
2013-06-08 20:21:17 +00:00
|
|
|
# Include the default AR933x parameters
|
2016-08-03 19:18:53 +00:00
|
|
|
include "std.AR933X"
|
2013-06-08 20:21:17 +00:00
|
|
|
|
|
|
|
ident CARAMBOLA2
|
|
|
|
|
|
|
|
# Override hints with board values
|
|
|
|
hints "CARAMBOLA2.hints"
|
|
|
|
|
|
|
|
# Board memory - 64MB
|
|
|
|
options AR71XX_REALMEM=(64*1024*1024)
|
|
|
|
|
|
|
|
# i2c GPIO bus
|
|
|
|
#device gpioiic
|
|
|
|
#device iicbb
|
|
|
|
#device iicbus
|
|
|
|
#device iic
|
|
|
|
|
|
|
|
# Options required for miiproxy and mdiobus
|
2016-08-28 04:06:57 +00:00
|
|
|
options ARGE_DEBUG
|
2013-06-08 20:21:17 +00:00
|
|
|
options ARGE_MDIO # Export an MDIO bus separate from arge
|
|
|
|
device miiproxy # MDIO bus <-> MII PHY rendezvous
|
|
|
|
|
|
|
|
device etherswitch
|
|
|
|
device arswitch
|
|
|
|
|
|
|
|
# read MSDOS formatted disks - USB
|
2014-03-18 14:41:18 +00:00
|
|
|
#options MSDOSFS
|
2013-06-08 20:21:17 +00:00
|
|
|
|
|
|
|
# Enable the uboot environment stuff rather then the
|
|
|
|
# redboot stuff.
|
2014-03-18 14:41:18 +00:00
|
|
|
options AR71XX_ENV_UBOOT
|
2013-06-08 20:21:17 +00:00
|
|
|
|
|
|
|
# uzip - to boot natively from flash
|
2016-02-24 00:39:36 +00:00
|
|
|
device geom_uzip
|
|
|
|
options GEOM_UZIP
|
2013-06-08 20:21:17 +00:00
|
|
|
|
|
|
|
# Used for the static uboot partition map
|
|
|
|
device geom_map
|
|
|
|
|
|
|
|
# Boot off of the rootfs, as defined in the geom_map setup.
|
2016-02-24 00:39:36 +00:00
|
|
|
options ROOTDEVNAME=\"ufs:map/rootfs.uzip\"
|