Changes in / [1d4262e:e6f6260] in mainline
- Files:
-
- 3 added
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
r1d4262e re6f6260 112 112 $(USPACE_PATH)/srv/net/ethip/ethip \ 113 113 $(USPACE_PATH)/srv/net/inet/inet \ 114 $(USPACE_PATH)/srv/net/loopip/loopip \115 114 $(USPACE_PATH)/srv/net/tcp/tcp \ 116 115 $(USPACE_PATH)/srv/net/udp/udp \ … … 124 123 test/test2 \ 125 124 test/test3 \ 125 nic/lo \ 126 126 nic/ne2k \ 127 127 nic/e1k \ -
uspace/Makefile
r1d4262e re6f6260 78 78 srv/net/ethip \ 79 79 srv/net/inet \ 80 srv/net/loopip \81 80 srv/net/tcp \ 82 81 srv/net/udp \ … … 122 121 drv/bus/usb/usbmid \ 123 122 drv/bus/usb/vhc \ 123 drv/nic/lo \ 124 124 drv/nic/ne2k \ 125 125 drv/nic/e1k \ -
uspace/app/init/init.c
r1d4262e re6f6260 305 305 srv_start("/srv/s3c24ts"); 306 306 307 spawn("/srv/loopip");308 307 spawn("/srv/ethip"); 309 308 spawn("/srv/inet"); -
uspace/drv/infrastructure/rootvirt/devices.def
r1d4262e re6f6260 4 4 * Unless the list is empty, the last item shall be followed by a comma. 5 5 */ 6 7 /* Loopback network interface */ 8 { 9 .name = "lo", 10 .match_id = "virtual&loopback" 11 }, 6 12 7 13 #ifdef CONFIG_TEST_DRIVERS
Note:
See TracChangeset
for help on using the changeset viewer.