From 308fb98220633e29c7cd7f54e9d7d64ef3f066f8 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Fri, 26 Feb 2016 13:46:57 +0100 Subject: Update PowerPC (qppc) platform to build with Ubuntu cross-tools Standard Ubuntu PowerPC toolchain can be installed with: apt-get install crossbuild-essential-powerpc And code can be built with: make PLATFORM=qppc TAG=qppc ... Change-Id: I247355fc89fd61aedb8693156e84c454ca86eb75 Signed-off-by: Damjan Marion --- vpp/vnet/main.c | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'vpp/vnet') diff --git a/vpp/vnet/main.c b/vpp/vnet/main.c index 08e8813f..290b5c03 100644 --- a/vpp/vnet/main.c +++ b/vpp/vnet/main.c @@ -268,32 +268,6 @@ u32 vlib_app_num_thread_stacks_needed (void) * messages! */ -#if IPV6SR == 0 -#define foreach_ipv6_sr_stub_node \ -_(ipsec-output, ipsec_output) -#else -#define foreach_ipv6_sr_stub_node -#endif - -#define _(n,m) \ -static uword \ -m##_node_fn (vlib_main_t *vm, \ - vlib_node_runtime_t *node, \ - vlib_frame_t *frame) \ -{ \ - clib_warning("unimplemented, leaking buffers..."); \ - return 0; \ -} \ - \ -VLIB_REGISTER_NODE(m##_node) = { \ - .function = m##_node_fn, \ - .name = #n, \ - .vector_size = sizeof(u32), \ - .type = VLIB_NODE_TYPE_INTERNAL, \ -}; -foreach_ipv6_sr_stub_node; -#undef _ - #if CLIB_DEBUG > 0 static clib_error_t * -- cgit 1.2.3-korg