console-server: Add UART Mux Support

This commit adds support for uart-muxes which can be controlled via
gpios.

Change-Id: I91a4de1962554adf4302a2a59d2b371f492dc21d
Signed-off-by: Alexander Hansen <alexander.hansen@9elements.com>
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/meson.build b/meson.build
index c0a600d..27ac968 100644
--- a/meson.build
+++ b/meson.build
@@ -59,6 +59,7 @@
            'console-dbus.c',
            'console-server.c',
            'console-socket.c',
+           'console-mux.c',
            'log-handler.c',
            'ringbuffer.c',
            'socket-handler.c',
@@ -71,6 +72,7 @@
            dependencies: [
              dependency('libsystemd'),
              iniparser_dep,
+             dependency('libgpiod'),
              meson.get_compiler('c').find_library('rt')
            ],
            install_dir: get_option('sbindir'),