Changeset 59e9398b in mainline
- Timestamp:
- 2010-12-18T19:07:51Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b2d06fa
- Parents:
- cc274f5a
- Files:
-
- 2 deleted
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
rcc274f5a r59e9398b 100 100 $(USPACE_PATH)/srv/hw/netif/dp8390/dp8390 \ 101 101 $(USPACE_PATH)/srv/net/netif/lo/lo \ 102 $(USPACE_PATH)/srv/net/nil/eth/eth \ 103 $(USPACE_PATH)/srv/net/nil/nildummy/nildummy \ 102 104 $(USPACE_PATH)/srv/net/il/arp/arp \ 103 105 $(USPACE_PATH)/srv/net/il/ip/ip \ … … 115 117 116 118 RD_DRV_CFG = 117 118 ifneq ($(CONFIG_NETIF_NIL_BUNDLE),y)119 RD_SRVS_NON_ESSENTIAL += \120 $(USPACE_PATH)/srv/net/nil/eth/eth \121 $(USPACE_PATH)/srv/net/nil/nildummy/nildummy122 endif123 119 124 120 RD_APPS_ESSENTIAL = \ -
defaults/amd64/Makefile.config
rcc274f5a r59e9398b 65 65 CONFIG_MOUNT_DATA = n 66 66 67 # Bundle netif/nil network layer68 CONFIG_NETIF_NIL_BUNDLE = n -
defaults/arm32/Makefile.config
rcc274f5a r59e9398b 41 41 CONFIG_MOUNT_DATA = n 42 42 43 # Bundle netif/nil network layer44 CONFIG_NETIF_NIL_BUNDLE = n -
defaults/ia32/Makefile.config
rcc274f5a r59e9398b 71 71 CONFIG_MOUNT_DATA = n 72 72 73 # Bundle netif/nil network layer74 CONFIG_NETIF_NIL_BUNDLE = n -
defaults/ia64/Makefile.config
rcc274f5a r59e9398b 53 53 CONFIG_MOUNT_DATA = n 54 54 55 # Bundle netif/nil network layer56 CONFIG_NETIF_NIL_BUNDLE = n -
defaults/mips32/Makefile.config
rcc274f5a r59e9398b 47 47 CONFIG_MOUNT_DATA = n 48 48 49 # Bundle netif/nil network layer50 CONFIG_NETIF_NIL_BUNDLE = n -
defaults/ppc32/Makefile.config
rcc274f5a r59e9398b 47 47 CONFIG_MOUNT_DATA = n 48 48 49 # Bundle netif/nil network layer50 CONFIG_NETIF_NIL_BUNDLE = n -
defaults/sparc64/Makefile.config
rcc274f5a r59e9398b 62 62 CONFIG_MOUNT_DATA = n 63 63 64 # Bundle netif/nil network layer65 CONFIG_NETIF_NIL_BUNDLE = n -
defaults/special/Makefile.config
rcc274f5a r59e9398b 32 32 CONFIG_START_BD = n 33 33 34 # Bundle netif/nil network layer35 CONFIG_NETIF_NIL_BUNDLE = n -
uspace/Makefile
rcc274f5a r59e9398b 93 93 # 94 94 95 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y) 96 LIBN = \ 97 srv/net/nil/eth \ 98 srv/net/nil/nildummy 99 else 100 DIRS += \ 101 srv/net/nil/eth \ 102 srv/net/nil/nildummy 103 endif 95 DIRS += \ 96 srv/net/nil/eth \ 97 srv/net/nil/nildummy 104 98 105 99 ## Platform-specific hardware support -
uspace/srv/hw/netif/dp8390/Makefile
rcc274f5a r59e9398b 39 39 -include $(CONFIG_MAKEFILE) 40 40 41 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)42 LIBS += $(USPACE_PREFIX)/srv/net/nil/eth/libeth.a43 endif44 45 41 BINARY = dp8390 46 42 -
uspace/srv/net/cfg/Makefile
rcc274f5a r59e9398b 36 36 -include $(CONFIG_MAKEFILE) 37 37 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 38 LO_SOURCE = lo.netif_standalone 39 NE2K_SOURCE = ne2k.netif_standalone 45 40 46 41 LO_TARGET = lo -
uspace/srv/net/netif/lo/Makefile
rcc274f5a r59e9398b 39 39 -include $(CONFIG_MAKEFILE) 40 40 41 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)42 LIBS += $(USPACE_PREFIX)/srv/net/nil/nildummy/libnildummy.a43 endif44 45 41 BINARY = lo 46 42 -
uspace/srv/net/nil/eth/Makefile
rcc274f5a r59e9398b 39 39 -include $(CONFIG_MAKEFILE) 40 40 41 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y) 42 LIBRARY = libeth 43 else 44 BINARY = eth 45 endif 41 BINARY = eth 46 42 47 43 SOURCES = \ -
uspace/srv/net/nil/nildummy/Makefile
rcc274f5a r59e9398b 39 39 -include $(CONFIG_MAKEFILE) 40 40 41 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y) 42 LIBRARY = libnildummy 43 else 44 BINARY = nildummy 45 endif 41 BINARY = nildummy 46 42 47 43 SOURCES = \
Note:
See TracChangeset
for help on using the changeset viewer.