Changeset 8d6c1f1 in mainline for uspace/Makefile.common


Ignore:
Timestamp:
2011-06-07T21:31:35Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
75608143
Parents:
ff4f073 (diff), eb522e8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge USB support.

Changes from bzr://helenos-usb.bzr.sourceforge.net/bzrroot/helenos-usb/mainline:

  • replaced '-' with '_' in new driver names
  • USB libs are built for each architecture
  • devman starts early
  • sys_thread_udelay() uses generic delay()
  • sys_as_create_area() now creates cacheable areas by default
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile.common

    rff4f073 r8d6c1f1  
    110110LIBEXT2_PREFIX = $(LIB_PREFIX)/ext2
    111111
     112LIBUSB_PREFIX = $(LIB_PREFIX)/usb
     113LIBUSBHOST_PREFIX = $(LIB_PREFIX)/usbhost
     114LIBUSBDEV_PREFIX = $(LIB_PREFIX)/usbdev
     115LIBUSBHID_PREFIX = $(LIB_PREFIX)/usbhid
     116LIBUSBVIRT_PREFIX = $(LIB_PREFIX)/usbvirt
     117
    112118LIBDRV_PREFIX = $(LIB_PREFIX)/drv
    113119LIBPACKET_PREFIX = $(LIB_PREFIX)/packet
     
    127133        endif
    128134endif
     135# Build static whenever we use libusb because that library uses
     136# thread local variables
     137ifneq ($(findstring usb, $(LIBS)),)
     138        STATIC_BUILD = y
     139endif
    129140
    130141ifeq ($(STATIC_BUILD), y)
Note: See TracChangeset for help on using the changeset viewer.