Remove drivers/gpio/spec directory

Issue #2190
This commit is contained in:
Norman Feske 2020-08-14 12:16:10 +02:00
parent 3c78265e66
commit 1aed881313
15 changed files with 17 additions and 17 deletions

View File

@ -7,8 +7,8 @@ include/gpio:
cp -r $(REP_DIR)/include/gpio $@
src/drivers:
mkdir -p $@/framebuffer $@/gpio/spec
cp -r $(REP_DIR)/src/drivers/gpio/spec/imx $@/gpio/spec/
cp -r $(REP_DIR)/src/drivers/gpio/spec/imx53 $@/gpio/spec/
mkdir -p $@/framebuffer $@/gpio
cp -r $(REP_DIR)/src/drivers/gpio/imx $@/gpio/
cp -r $(REP_DIR)/src/drivers/gpio/imx53 $@/gpio/
cp -r $(REP_DIR)/src/drivers/framebuffer/imx53 $@/framebuffer/
cp -r $(REP_DIR)/include/spec/imx53/imx_framebuffer_session $@/framebuffer/imx53/

View File

@ -0,0 +1,7 @@
TARGET = imx53_gpio_drv
REQUIRES = arm_v7
SRC_CC = main.cc
LIBS = base
INC_DIR += $(PRG_DIR) $(REP_DIR)/src/drivers/gpio/imx
vpath main.cc $(REP_DIR)/src/drivers/gpio/imx

View File

@ -0,0 +1,7 @@
TARGET = imx6_gpio_drv
REQUIRES = arm_v7
SRC_CC = main.cc
LIBS = base
INC_DIR += $(PRG_DIR) $(REP_DIR)/src/drivers/gpio/imx
vpath main.cc $(REP_DIR)/src/drivers/gpio/imx

View File

@ -1,7 +0,0 @@
TARGET = imx53_gpio_drv
REQUIRES = arm_v7
SRC_CC = main.cc
LIBS = base
INC_DIR += $(PRG_DIR) $(REP_DIR)/src/drivers/gpio/spec/imx
vpath main.cc $(REP_DIR)/src/drivers/gpio/spec/imx

View File

@ -1,7 +0,0 @@
TARGET = imx6_gpio_drv
REQUIRES = arm_v7
SRC_CC = main.cc
LIBS = base
INC_DIR += $(PRG_DIR) $(REP_DIR)/src/drivers/gpio/spec/imx
vpath main.cc $(REP_DIR)/src/drivers/gpio/spec/imx