From 5323477184cf39f4f20003142ce320ac1d626863 Mon Sep 17 00:00:00 2001 From: Pawel Dembicki Date: Thu, 1 Mar 2018 20:11:01 +0100 Subject: firmware: add JBOOT based devices config extractor Adds tool to extract MAC and pre-calibration data required for JBOOT based D-Link routers. Signed-off-by: Pawel Dembicki --- package/utils/jboot-tools/src/CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 package/utils/jboot-tools/src/CMakeLists.txt (limited to 'package/utils/jboot-tools/src/CMakeLists.txt') diff --git a/package/utils/jboot-tools/src/CMakeLists.txt b/package/utils/jboot-tools/src/CMakeLists.txt new file mode 100644 index 0000000000..98fbab38dc --- /dev/null +++ b/package/utils/jboot-tools/src/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 2.6) + +PROJECT(jboot-tools C) +ADD_DEFINITIONS(-Wall -Werror --std=gnu99 -Wmissing-declarations) + +SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") + +ADD_EXECUTABLE(jboot_config_read jboot_config_read.c) +TARGET_LINK_LIBRARIES(jboot_config_read) + +INSTALL(TARGETS jboot_config_read RUNTIME DESTINATION bin) -- cgit v1.2.3