blob: d5a540574295fe71ff095ae87214c18854879e0f (
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
|
#
# Routerstation Pro: boot from on-board flash
#
# $FreeBSD$
#
include "AR71XX_BASE"
ident "RSPRO"
hints "RSPRO.hints"
# RTC - requires hackery in the spibus code to work
device pcf2123_rtc
# GEOM modules
device geom_redboot # to get access to the SPI flash partitions
device geom_uzip # compressed in-memory filesystem support
options GEOM_UZIP
# For DOS
options MSDOSFS
# For etherswitch support
options ARGE_MDIO
device miiproxy
device etherswitch
device arswitch
# Boot off of flash
options ROOTDEVNAME=\"ufs:redboot/rootfs.uzip\"
|