Changeset 09178b7f in mainline for uspace


Ignore:
Timestamp:
2010-12-25T17:21:51Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3750c06, 973ef9fc
Parents:
3ac66f69 (diff), 092e4f1 (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 from lp:~jakub/helenos/net.

Location:
uspace
Files:
2 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile

    r3ac66f69 r09178b7f  
    9494#
    9595
    96 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)
    97         LIBN = \
    98                 srv/net/nil/eth \
    99                 srv/net/nil/nildummy
    100 else
    101         DIRS += \
    102                 srv/net/nil/eth \
    103                 srv/net/nil/nildummy
    104 endif
     96DIRS += \
     97        srv/net/nil/eth \
     98        srv/net/nil/nildummy
    10599
    106100## Platform-specific hardware support
  • uspace/srv/hw/netif/dp8390/Makefile

    r3ac66f69 r09178b7f  
    3939-include $(CONFIG_MAKEFILE)
    4040
    41 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)
    42         LIBS += $(USPACE_PREFIX)/srv/net/nil/eth/libeth.a
    43 endif
    44 
    4541BINARY = dp8390
    4642
  • uspace/srv/net/cfg/Makefile

    r3ac66f69 r09178b7f  
    3636-include $(CONFIG_MAKEFILE)
    3737
    38 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)
    39         LO_SOURCE = lo.netif_nil_bundle
    40         NE2K_SOURCE = ne2k.netif_nil_bundle
    41 else
    42         LO_SOURCE = lo.netif_standalone
    43         NE2K_SOURCE = ne2k.netif_standalone
    44 endif
     38LO_SOURCE = lo.netif_standalone
     39NE2K_SOURCE = ne2k.netif_standalone
    4540
    4641LO_TARGET = lo
  • uspace/srv/net/netif/lo/Makefile

    r3ac66f69 r09178b7f  
    3939-include $(CONFIG_MAKEFILE)
    4040
    41 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)
    42         LIBS += $(USPACE_PREFIX)/srv/net/nil/nildummy/libnildummy.a
    43 endif
    44 
    4541BINARY = lo
    4642
  • uspace/srv/net/nil/eth/Makefile

    r3ac66f69 r09178b7f  
    3939-include $(CONFIG_MAKEFILE)
    4040
    41 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)
    42         LIBRARY = libeth
    43 else
    44         BINARY = eth
    45 endif
     41BINARY = eth
    4642
    4743SOURCES = \
  • uspace/srv/net/nil/nildummy/Makefile

    r3ac66f69 r09178b7f  
    3939-include $(CONFIG_MAKEFILE)
    4040
    41 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)
    42         LIBRARY = libnildummy
    43 else
    44         BINARY = nildummy
    45 endif
     41BINARY = nildummy
    4642
    4743SOURCES = \
  • uspace/srv/net/tl/tcp/tcp.c

    r3ac66f69 r09178b7f  
    453453
    454454has_error_service:
    455         fibril_rwlock_read_unlock(&tcp_globals.lock);
     455        fibril_rwlock_write_unlock(&tcp_globals.lock);
    456456
    457457        /* TODO error reporting/handling */
Note: See TracChangeset for help on using the changeset viewer.