svn commit: r194285 - head/tools/tools/nanobsd
Edwin Groothuis
edwin at FreeBSD.org
Tue Jun 16 12:05:05 UTC 2009
Author: edwin
Date: Tue Jun 16 12:05:04 2009
New Revision: 194285
URL: http://svn.freebsd.org/changeset/base/194285
Log:
Add support for 256MB Hitachi CF card and 256MB Silicon Systems CF card
This patch against RELENG_6 adds two more entries to
src/tools/tools/nanobsd/FlashDevice.sub - one for a 256MB
Hitachi CF card and one for a 256MB Silicon Systems CF card.
Both entries have been verified to work with a Soekris net4801.
PR: kern/101228
Submitted by: Henrik Brix Andersen <henrik at brixandersen.dk>
MFC after: 1 week
Modified:
head/tools/tools/nanobsd/FlashDevice.sub
Modified: head/tools/tools/nanobsd/FlashDevice.sub
==============================================================================
--- head/tools/tools/nanobsd/FlashDevice.sub Tue Jun 16 05:10:21 2009 (r194284)
+++ head/tools/tools/nanobsd/FlashDevice.sub Tue Jun 16 12:05:04 2009 (r194285)
@@ -41,6 +41,19 @@ sub_FlashDevice () {
a1=`echo $1 | tr '[:upper:]' '[:lower:]'`
a2=`echo $2 | tr '[:upper:]' '[:lower:]'`
case $a1 in
+ hitachi)
+ case $a2 in
+ 256|256mb)
+ NANO_MEDIASIZE=`expr 256204800 / 512`
+ NANO_HEADS=15
+ NANO_SECTS=48
+ ;;
+ *)
+ echo "Unknown Hitachi Flash capacity"
+ exit 2
+ ;;
+ esac
+ ;;
integral)
# Source: mich at FreeBSD.org
case $a2 in
@@ -129,6 +142,11 @@ sub_FlashDevice () {
;;
siliconsystems)
case $a2 in
+ 256|256mb)
+ NANO_MEDIASIZE=`expr 260571136 / 512`
+ NANO_HEADS=16
+ NANO_SECTS=32
+ ;;
4096|4g)
NANO_MEDIASIZE=`expr -e 4224761856 / 512`
NANO_HEADS=16
More information about the svn-src-head
mailing list