eal: no more bare metal environment
authorDavid Marchand <david.marchand@6wind.com>
Fri, 26 Sep 2014 14:04:00 +0000 (16:04 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 27 Nov 2014 12:09:51 +0000 (13:09 +0100)
Signed-off-by: David Marchand <david.marchand@6wind.com>
Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
lib/Makefile
lib/librte_eal/Makefile
lib/librte_eal/common/Makefile
lib/librte_eal/common/include/rte_eal.h
lib/librte_eal/common/include/rte_log.h

index 8fad8a3..0ffc982 100644 (file)
@@ -31,7 +31,6 @@
 
 include $(RTE_SDK)/mk/rte.vars.mk
 
-DIRS-$(CONFIG_RTE_LIBC) += libc
 DIRS-$(CONFIG_RTE_LIBRTE_EAL) += librte_eal
 DIRS-$(CONFIG_RTE_LIBRTE_MALLOC) += librte_malloc
 DIRS-$(CONFIG_RTE_LIBRTE_RING) += librte_ring
index 3e1441b..69003cf 100644 (file)
@@ -35,7 +35,5 @@ DIRS-$(CONFIG_RTE_LIBRTE_EAL_LINUXAPP) += common
 DIRS-$(CONFIG_RTE_LIBRTE_EAL_LINUXAPP) += linuxapp
 DIRS-$(CONFIG_RTE_LIBRTE_EAL_BSDAPP) += common
 DIRS-$(CONFIG_RTE_LIBRTE_EAL_BSDAPP) += bsdapp
-DIRS-$(CONFIG_RTE_LIBRTE_EAL_BAREMETAL) += baremetal
-DIRS-$(CONFIG_RTE_LIBRTE_EAL_BAREMETAL) += common
 
 include $(RTE_SDK)/mk/rte.subdir.mk
index 499ba4d..52c1a5f 100644 (file)
@@ -58,7 +58,4 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_EAL)-include += \
 SYMLINK-$(CONFIG_RTE_LIBRTE_EAL)-include/generic := \
        $(addprefix include/generic/,$(GENERIC_INC))
 
-# add libc if configured
-DEPDIRS-$(CONFIG_RTE_LIBC) += lib/libc
-
 include $(RTE_SDK)/mk/rte.install.mk
index f2c4b7d..f4ecd2e 100644 (file)
@@ -129,9 +129,8 @@ int rte_eal_iopl_init(void);
  * This function is to be executed on the MASTER lcore only, as soon
  * as possible in the application's main() function.
  *
- * The function finishes the initialization process that was started
- * during boot (in case of baremetal) or before main() is called (in
- * case of linuxapp). It puts the SLAVE lcores in the WAIT state.
+ * The function finishes the initialization process before main() is called.
+ * It puts the SLAVE lcores in the WAIT state.
  *
  * When the multi-partition feature is supported, depending on the
  * configuration (if CONFIG_RTE_EAL_MAIN_PARTITION is disabled), this
index 02cbb14..db1ea08 100644 (file)
@@ -106,8 +106,7 @@ extern FILE *eal_default_log_stream;
  *
  * This can be done at any time. The f argument represents the stream
  * to be used to send the logs. If f is NULL, the default output is
- * used, which is the serial line in case of bare metal, or directly
- * sent to syslog in case of linux application.
+ * used (stderr).
  *
  * @param f
  *   Pointer to the stream.