diff options
-rw-r--r-- | Makefile | 21 | ||||
-rw-r--r-- | build/artifacts/main.o | bin | 0 -> 1440 bytes | |||
-rwxr-xr-x | build/osm-thermald | bin | 0 -> 20352 bytes | |||
-rw-r--r-- | log | 4 | ||||
-rw-r--r-- | src/main.c | 13 |
5 files changed, 38 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b3ce19a --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ + +SRC_DIR = src +BUILD_DIR = build +OBJ_DIR = $(BUILD_DIR)/artifacts +INCLUDE_DIR = ./include + +SRCS = $(notdir $(wildcard $(SRC_DIR)/*.c)) +OBJS = $(addsuffix .o, $(basename $(SRCS))) + +CFLAGS ?= -Werror -Wall + +build: build_dir $(OBJS) + $(CC) -lopensmarts -o $(BUILD_DIR)/osm-thermald $(addprefix $(OBJ_DIR)/, $(OBJS)) + +%.o: $(SRC_DIR)/%.c + $(CC) $(CFLAGS) -c -I$(INCLUDE_DIR) -o $(BUILD_DIR)/artifacts/$@ $< + +build_dir: + mkdir -p $(BUILD_DIR) + mkdir -p $(OBJ_DIR) + diff --git a/build/artifacts/main.o b/build/artifacts/main.o Binary files differnew file mode 100644 index 0000000..5a4750b --- /dev/null +++ b/build/artifacts/main.o diff --git a/build/osm-thermald b/build/osm-thermald Binary files differnew file mode 100755 index 0000000..c61aa94 --- /dev/null +++ b/build/osm-thermald @@ -0,0 +1,4 @@ +bind: Address already in use +bind: Success +-1 /run/osm/onboard/0 +Bound! diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..8b9582c --- /dev/null +++ b/src/main.c @@ -0,0 +1,13 @@ +#include <stddef.h> +#include <unistd.h> +#include <osm/bind.h> + +int main(int argc, char **argv) +{ + int fd = osm_open_onboard(NULL); + if (fd >= 0) + { + close(fd); + } + return 0; +} |