Skip to content

Commit b6b02d9

Browse files
committed
if_impl.c / packet_plugin.c to $1/, common headers -> include/
1 parent e087f98 commit b6b02d9

22 files changed

+26
-3
lines changed

Makefile

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ PLUGIN_MODULES := \
1010

1111
#### Common bits ####
1212
APPEND := $(shell pwd)/append.mk
13-
COMMON_C_INCLUDES := . util
13+
COMMON_C_INCLUDES := include
1414
COMMON_MODULES := \
1515
util \
16-
main
16+
main \
17+
if_impl_manager \
18+
packet_plugin_manager
1719

1820
BUILD_MODULES := $(PLUGIN_MODULES) $(COMMON_MODULES)
1921

eap_state_machine.c

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include "sched_alarm.h"
1313

1414
#include <stdlib.h>
15-
#include <linux/if_ether.h> // ETH_P_PAE
1615

1716
typedef struct _state_mach_priv {
1817
int state_last_count; // Number of timeouts occured in this state

if_impl.c if_impl/if_impl.c

File renamed without changes.

if_impl/minieap.mk

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Makefile for interface implementation
2+
3+
LOCAL_PATH := $(call my-dir)
4+
5+
LOCAL_SRC_FILES := $(call all-c-files-under,.)
6+
LOCAL_C_INCLUDES :=
7+
LOCAL_CFLAGS :=
8+
LOCAL_LDFLAGS :=
9+
LOCAL_MODULE := if_impl_manager
10+
11+
include $(APPEND)

config.h include/config.h

File renamed without changes.
File renamed without changes.

eth_frame.h include/eth_frame.h

File renamed without changes.

if_impl.h include/if_impl.h

File renamed without changes.
File renamed without changes.

util/logging.h include/logging.h

File renamed without changes.

md5.h include/md5.h

File renamed without changes.
File renamed without changes.

util/misc.h include/misc.h

File renamed without changes.

util/net_util.h include/net_util.h

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

types.h include/types.h

File renamed without changes.

ustd.h include/ustd.h

File renamed without changes.

packet_plugin/minieap.mk

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Makefile for packet plugin
2+
3+
LOCAL_PATH := $(call my-dir)
4+
5+
LOCAL_SRC_FILES := $(call all-c-files-under,.)
6+
LOCAL_C_INCLUDES :=
7+
LOCAL_CFLAGS :=
8+
LOCAL_LDFLAGS :=
9+
LOCAL_MODULE := packet_plugin_manager
10+
11+
include $(APPEND)
File renamed without changes.

0 commit comments

Comments
 (0)