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# 16 17#NO_UNIVERSE 18 19# Include the default AR933x parameters 20include "std.AR933X" 21 22ident ALFA_HORNET_UB 23 24# Override hints with board values 25hints "ALFA_HORNET_UB.hints" 26 27# Board memory - 64MB 28options AR71XX_REALMEM=(64*1024*1024) 29 30# i2c GPIO bus 31#device gpioiic 32#device iicbb 33#device iicbus 34#device iic 35 36# Options required for miiproxy and mdiobus 37options ARGE_MDIO # Export an MDIO bus separate from arge 38device miiproxy # MDIO bus <-> MII PHY rendezvous 39 40device etherswitch 41device arswitch 42 43# read MSDOS formatted disks - USB 44#options MSDOSFS 45 46# Enable the uboot environment stuff rather then the 47# redboot stuff. 48options AR71XX_ENV_UBOOT 49 50# uzip - to boot natively from flash 51device xz 52options GEOM_UZIP 53 54# Used for the static uboot partition map 55device geom_map 56 57# Boot off of the rootfs, as defined in the geom_map setup. 58options ROOTDEVNAME=\"ufs:map/rootfs.uzip\" 59