stm32cube: Update build system to support stm32l0xx

Get stm32l0xx support ready in build system.
Provide minimal file inclusion to support stm32l0 based board
port.

Change-Id: Ieb572389955e9e79a6100a6b1df35d9d08322789
Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
diff --git a/ext/hal/st/stm32cube/Kbuild b/ext/hal/st/stm32cube/Kbuild
index 3d33109..dfe23f8 100644
--- a/ext/hal/st/stm32cube/Kbuild
+++ b/ext/hal/st/stm32cube/Kbuild
@@ -25,6 +25,11 @@
 obj-y += stm32f7xx/soc/system_stm32f7xx.o
 endif
 
+ifdef CONFIG_SOC_SERIES_STM32L0X
+obj-y += stm32l0xx/drivers/src/stm32l0xx_hal.o
+obj-y += stm32l0xx/soc/system_stm32l0xx.o
+endif
+
 ifdef CONFIG_SOC_SERIES_STM32L4X
 obj-y += stm32l4xx/drivers/src/stm32l4xx_hal.o
 obj-y += stm32l4xx/soc/system_stm32l4xx.o
diff --git a/ext/hal/st/stm32cube/Makefile b/ext/hal/st/stm32cube/Makefile
index ff3284d..4187680 100644
--- a/ext/hal/st/stm32cube/Makefile
+++ b/ext/hal/st/stm32cube/Makefile
@@ -56,6 +56,12 @@
 ZEPHYRINCLUDE += -I$(srctree)/ext/hal/st/stm32cube/stm32f7xx/drivers/include/Legacy/
 endif
 
+ifdef CONFIG_SOC_SERIES_STM32L0X
+ZEPHYRINCLUDE += -I$(srctree)/ext/hal/st/stm32cube/stm32l0xx/soc/
+ZEPHYRINCLUDE += -I$(srctree)/ext/hal/st/stm32cube/stm32l0xx/drivers/include/
+ZEPHYRINCLUDE += -I$(srctree)/ext/hal/st/stm32cube/stm32l0xx/drivers/include/Legacy/
+endif
+
 ifdef CONFIG_SOC_SERIES_STM32L4X
 ZEPHYRINCLUDE += -I$(srctree)/ext/hal/st/stm32cube/stm32l4xx/soc/
 ZEPHYRINCLUDE += -I$(srctree)/ext/hal/st/stm32cube/stm32l4xx/drivers/include/