1# 2# Alfa Networks Hornet UB - an AR933x based SoC wifi device. 3# 4# http://www.alfa.com.tw/products_show.php?pc=99&ps=50 5# 6# This is for the 64MB RAM/16MB flash part. They also 7# do various other versions; they have different RAM/flash 8# configurations. 9# 10# * AR9330 SoC 11# * 64MB RAM 12# * 16MB flash 13# * Integrated 1x1 2GHz wifi and 10/100 bridge 14# 15# $FreeBSD$ 16# 17 18# Include the default AR933x parameters 19include "AR933X_BASE" 20 21ident ALFA_HORNET_UB 22 23# Override hints with board values 24hints "ALFA_HORNET_UB.hints" 25 26# Board memory - 64MB 27options AR71XX_REALMEM=(64*1024*1024) 28 29# i2c GPIO bus 30#device gpioiic 31#device iicbb 32#device iicbus 33#device iic 34 35# Options required for miiproxy and mdiobus 36options ARGE_MDIO # Export an MDIO bus separate from arge 37device miiproxy # MDIO bus <-> MII PHY rendezvous 38 39device etherswitch 40device arswitch 41 42# read MSDOS formatted disks - USB 43#options MSDOSFS 44 45# Enable the uboot environment stuff rather then the 46# redboot stuff. 47options AR71XX_ENV_UBOOT 48 49# uzip - to boot natively from flash 50device geom_uncompress 51options GEOM_UNCOMPRESS 52 53# Used for the static uboot partition map 54device geom_map 55 56# Boot off of the rootfs, as defined in the geom_map setup. 57options ROOTDEVNAME=\"ufs:map/rootfs.uncompress\" 58