Date: Thu, 30 Oct 2014 23:47:29 +0000 (UTC) From: Hiren Panchasara <hiren@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r273876 - head/sys/mips/conf Message-ID: <201410302347.s9UNlTY5026157@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: hiren Date: Thu Oct 30 23:47:28 2014 New Revision: 273876 URL: https://svnweb.freebsd.org/changeset/base/273876 Log: Use search method instead of fixed offsets for finding rootfs. This unbreaks recent images for picostation by allowing to find rootfs at correct location. Suggested by: loos MFC after: 1 month Modified: head/sys/mips/conf/PICOSTATION_M2HP.hints Modified: head/sys/mips/conf/PICOSTATION_M2HP.hints ============================================================================== --- head/sys/mips/conf/PICOSTATION_M2HP.hints Thu Oct 30 22:47:32 2014 (r273875) +++ head/sys/mips/conf/PICOSTATION_M2HP.hints Thu Oct 30 23:47:28 2014 (r273876) @@ -80,13 +80,13 @@ hint.map.1.readonly=1 hint.map.2.at="flash/spi0" hint.map.2.start=0x00050000 -hint.map.2.end=0x00130000 # 896k kernel +hint.map.2.end="search:0x00100000:0x10000:.!/bin/sh" hint.map.2.name="kernel" hint.map.2.readonly=1 hint.map.3.at="flash/spi0" -hint.map.3.start=0x130000 -hint.map.3.end=0x007b0000 # 6656k rootfs +hint.map.3.start="search:0x00100000:0x10000:.!/bin/sh" +hint.map.3.end=0x007b0000 hint.map.3.name="rootfs" hint.map.3.readonly=0
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410302347.s9UNlTY5026157>