diff options
author | sbruno <sbruno@FreeBSD.org> | 2015-10-10 19:08:34 +0000 |
---|---|---|
committer | sbruno <sbruno@FreeBSD.org> | 2015-10-10 19:08:34 +0000 |
commit | b9dc0437261f4767d12553360861c16732f6d348 (patch) | |
tree | 245c5ecdcfefb0fdc4b62e40fde812fa94bf045f /sys/mips/conf | |
parent | 504080cfeb61168407c98a0849bb09c1be36c89d (diff) | |
download | FreeBSD-src-b9dc0437261f4767d12553360861c16732f6d348.zip FreeBSD-src-b9dc0437261f4767d12553360861c16732f6d348.tar.gz |
There's no way a fbsd install + kernel will fit into 4MB of flash.
Assume and enforce the fact that this will always boot a rootfs from
usb.
Diffstat (limited to 'sys/mips/conf')
-rw-r--r-- | sys/mips/conf/TP-MR3020 | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/sys/mips/conf/TP-MR3020 b/sys/mips/conf/TP-MR3020 index f0ecb4b..a19f41b 100644 --- a/sys/mips/conf/TP-MR3020 +++ b/sys/mips/conf/TP-MR3020 @@ -50,16 +50,6 @@ device geom_uncompress # Used for the static uboot partition map device geom_map -# Boot off of the rootfs, as defined in the geom_map setup. -# Probably, this should be a USB device as the memory available -# compressed rootfs is simply too small for FreeBSD -#options ROOTDEVNAME=\"ufs:map/rootfs.uncompress\" - -# Boot off of a uboot tftp ramdisk kernel image. Because the flash -# on this unit is so small, this is the only way to do dev work. -# For full deployment, you will *have* to use a usb storage device -# as a rootfs and use the flash to hold the kernel only. -options MD_ROOT # md device usable as a potential root device -options MD_ROOT_SIZE=10240 -#makeoptions MFS_IMAGE=/tftpboot/mfsroot-tl-mr3020.img.ulzma -options ROOTDEVNAME=\"ufs:md0.uncompress\" +# With only 4MB of flash, we are stuck using USB +# for the rootfs. +options ROOTDEVNAME=\"ufs:da0\" |