svn commit: r291404 - head/sys/boot/usb

Zbigniew Bodek zbb at FreeBSD.org
Fri Nov 27 18:20:22 UTC 2015


Author: zbb
Date: Fri Nov 27 18:20:21 2015
New Revision: 291404
URL: https://svnweb.freebsd.org/changeset/base/291404

Log:
  Increase malloc area in loader/usb
  
  Previous value was not enough on Arndale platform.
  
  Reviewed by:   hselasky
  Submitted by:  Wojciech Macek <wma at semihalf.com>
  Obtained from: Semihalf
  Sponsored by:  Juniper Networks Inc.
  Differential Revision: https://reviews.freebsd.org/D4145

Modified:
  head/sys/boot/usb/usbcore.mk

Modified: head/sys/boot/usb/usbcore.mk
==============================================================================
--- head/sys/boot/usb/usbcore.mk	Fri Nov 27 18:19:11 2015	(r291403)
+++ head/sys/boot/usb/usbcore.mk	Fri Nov 27 18:20:21 2015	(r291404)
@@ -44,8 +44,11 @@ S=${USBCOREDIR}/../..
 	${S}/dev/usb/template
 .undef S
 
+USB_POOL_SIZE?=	131072
+
 CFLAGS+=	-DUSB_MSCTEST_BULK_SIZE=65536
-CFLAGS+=	-DUSB_POOL_SIZE=131072
+CFLAGS+=	-DUSB_POOL_SIZE=${USB_POOL_SIZE}
+
 
 #
 # BUSDMA implementation


More information about the svn-src-head mailing list