Changes in / [e6f6260:1d4262e] in mainline


Ignore:
Files:
2 added
3 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.common

    re6f6260 r1d4262e  
    112112        $(USPACE_PATH)/srv/net/ethip/ethip \
    113113        $(USPACE_PATH)/srv/net/inet/inet \
     114        $(USPACE_PATH)/srv/net/loopip/loopip \
    114115        $(USPACE_PATH)/srv/net/tcp/tcp \
    115116        $(USPACE_PATH)/srv/net/udp/udp \
     
    123124        test/test2 \
    124125        test/test3 \
    125         nic/lo \
    126126        nic/ne2k \
    127127        nic/e1k \
  • uspace/Makefile

    re6f6260 r1d4262e  
    7878        srv/net/ethip \
    7979        srv/net/inet \
     80        srv/net/loopip \
    8081        srv/net/tcp \
    8182        srv/net/udp \
     
    121122        drv/bus/usb/usbmid \
    122123        drv/bus/usb/vhc \
    123         drv/nic/lo \
    124124        drv/nic/ne2k \
    125125        drv/nic/e1k \
  • uspace/app/init/init.c

    re6f6260 r1d4262e  
    305305        srv_start("/srv/s3c24ts");
    306306       
     307        spawn("/srv/loopip");
    307308        spawn("/srv/ethip");
    308309        spawn("/srv/inet");
  • uspace/drv/infrastructure/rootvirt/devices.def

    re6f6260 r1d4262e  
    44 * Unless the list is empty, the last item shall be followed by a comma.
    55 */
    6 
    7 /* Loopback network interface */
    8 {
    9     .name = "lo",
    10     .match_id = "virtual&loopback"
    11 },
    126
    137#ifdef CONFIG_TEST_DRIVERS
Note: See TracChangeset for help on using the changeset viewer.