svn commit: r319100 - head/sys/mips/conf

Adrian Chadd adrian at FreeBSD.org
Mon May 29 07:27:09 UTC 2017


Author: adrian
Date: Mon May 29 07:27:08 2017
New Revision: 319100
URL: https://svnweb.freebsd.org/changeset/base/319100

Log:
  Update AP93 support to the new world order.
  
  * Map change: create a combined kernel+rootfs image.  The instructions I'll post
    on the wiki (which will be for a very outdated dev board, but at least will
    explain the what/why for posterity) will include how to reset the boot command.
  
  Tested:
  
  * AP93 dev board (AR7240 + AR9280)

Modified:
  head/sys/mips/conf/AP93.hints

Modified: head/sys/mips/conf/AP93.hints
==============================================================================
--- head/sys/mips/conf/AP93.hints	Mon May 29 07:15:28 2017	(r319099)
+++ head/sys/mips/conf/AP93.hints	Mon May 29 07:27:08 2017	(r319100)
@@ -94,29 +94,15 @@ hint.map.1.readonly=1
 
 hint.map.2.at="flash/spi0"
 hint.map.2.start=0x00080000
-# hint.map.2.end=0x00380000
-hint.map.2.end=0x00780000
-# hint.map.2.name="spare-rootfs"
-hint.map.2.name="rootfs"
-hint.map.2.readonly=1
-
-#hint.map.3.at="flash/spi0"
-#hint.map.3.start=0x00380000
-#hint.map.3.end=0x00480000
-#hint.map.3.name="spare-uImage"
-#hint.map.3.readonly=1
-
-#hint.map.4.at="flash/spi0"
-#hint.map.4.start=0x00480000
-#hint.map.4.end=0x00780000
-#hint.map.4.name="rootfs"
-#hint.map.4.readonly=1
+hint.map.2.end="search:0x00080000:0x10000:.!/bin/sh"
+hint.map.2.name="kernel"
+hint.map.2.readonly=0
 
 hint.map.3.at="flash/spi0"
-hint.map.3.start=0x00780000
+hint.map.3.start="search:0x00080000:0x10000:.!/bin/sh"
 hint.map.3.end=0x00880000
-hint.map.3.name="uImage"
-hint.map.3.readonly=1
+hint.map.3.name="rootfs"
+hint.map.3.readonly=0
 
 hint.map.4.at="flash/spi0"
 hint.map.4.start=0x00880000


More information about the svn-src-all mailing list