Changeset 1d4262e in mainline
- Timestamp:
- 2012-04-20T08:08:25Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dfac604
- Parents:
- e6f6260 (diff), 606c369 (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. - Files:
-
- 1 added
- 2 deleted
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
re6f6260 r1d4262e 112 112 $(USPACE_PATH)/srv/net/ethip/ethip \ 113 113 $(USPACE_PATH)/srv/net/inet/inet \ 114 $(USPACE_PATH)/srv/net/loopip/loopip \ 114 115 $(USPACE_PATH)/srv/net/tcp/tcp \ 115 116 $(USPACE_PATH)/srv/net/udp/udp \ … … 123 124 test/test2 \ 124 125 test/test3 \ 125 nic/lo \126 126 nic/ne2k \ 127 127 nic/e1k \ -
uspace/Makefile
re6f6260 r1d4262e 78 78 srv/net/ethip \ 79 79 srv/net/inet \ 80 srv/net/loopip \ 80 81 srv/net/tcp \ 81 82 srv/net/udp \ … … 121 122 drv/bus/usb/usbmid \ 122 123 drv/bus/usb/vhc \ 123 drv/nic/lo \124 124 drv/nic/ne2k \ 125 125 drv/nic/e1k \ -
uspace/app/init/init.c
re6f6260 r1d4262e 305 305 srv_start("/srv/s3c24ts"); 306 306 307 spawn("/srv/loopip"); 307 308 spawn("/srv/ethip"); 308 309 spawn("/srv/inet"); -
uspace/drv/infrastructure/rootvirt/devices.def
re6f6260 r1d4262e 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 },12 6 13 7 #ifdef CONFIG_TEST_DRIVERS -
uspace/srv/net/loopip/Makefile
re6f6260 r1d4262e 1 1 # 2 # Copyright (c) 201 1 Radim Vansa2 # Copyright (c) 2012 Jiri Svoboda 3 3 # All rights reserved. 4 4 # … … 28 28 29 29 USPACE_PREFIX = ../../.. 30 LIBS = $(LIBDRV_PREFIX)/libdrv.a $(LIBNIC_PREFIX)/libnic.a 31 EXTRA_CFLAGS += -I$(LIBDRV_PREFIX)/include -I$(LIBNIC_PREFIX)/include 32 BINARY = lo 30 BINARY = loopip 33 31 34 32 SOURCES = \ 35 lo .c33 loopip.c 36 34 37 35 include $(USPACE_PREFIX)/Makefile.common
Note:
See TracChangeset
for help on using the changeset viewer.