blob: f00640592e7c4db0d57033985d716d8fa937846d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#
# Atheros PB47 reference board.
#
# * one MiniPCI+ slot (modified to allow two idsel lines
# on the one slot, for a specific kind of internal-only
# NIC;
# * one XMII slot
# * One ethernet PHY
# * Akros Silicon AS1834
# * 8MB NOR SPI flash
# * 64MB RAM
#
# $FreeBSD$
#
include "AR71XX_BASE"
ident "PB47"
hints "PB47.hints"
# Enable the uboot environment stuff rather then the
# redboot stuff.
options AR71XX_ENV_UBOOT
# XXX TODO: add uboot boot parameter parsing to extract MAC, RAM.
# Right now it will just detect 32mb out of 64mb, as well as
# return a garbage MAC address.
options AR71XX_REALMEM=64*1024*1024
# For DOS - enable if required
options MSDOSFS
# uncompress - to boot read-only lzma natively from flash
device geom_uncompress
options GEOM_UNCOMPRESS
# Used for the static uboot partition map
device geom_map
# Boot off of the rootfs, as defined in the geom_map setup.
options ROOTDEVNAME=\"ufs:map/rootfs.uncompress\"
|