From 468fd86664970eee13817a5f38dfdd74d27ad102 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 15:55:15 +0000 Subject: [PATCH] PR #491: Address review comments - Remove autogen.sh and configure commands - Fix path to ../../../../ for cmake - Remove redundant build dir creation - Add sudo make install for wolfSSL Co-Authored-By: daniele@wolfssl.com --- fullstack/freertos-wolfip-wolfssl-https/README.md | 2 +- fullstack/freertos-wolfip-wolfssl-https/setup.sh | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/fullstack/freertos-wolfip-wolfssl-https/README.md b/fullstack/freertos-wolfip-wolfssl-https/README.md index afebb444..9bccffcc 100644 --- a/fullstack/freertos-wolfip-wolfssl-https/README.md +++ b/fullstack/freertos-wolfip-wolfssl-https/README.md @@ -32,7 +32,7 @@ sudo ./setup_network.sh 3. Build the example: ```bash -mkdir -p build && cd build && cmake .. && make +cd build && cmake .. && make ``` 4. Run the example (requires root): diff --git a/fullstack/freertos-wolfip-wolfssl-https/setup.sh b/fullstack/freertos-wolfip-wolfssl-https/setup.sh index 64d15964..0d0e94c5 100755 --- a/fullstack/freertos-wolfip-wolfssl-https/setup.sh +++ b/fullstack/freertos-wolfip-wolfssl-https/setup.sh @@ -17,21 +17,18 @@ if [ ! -d "FreeRTOS" ]; then fi # Clone wolfSSL and wolfIP if they don't exist -cd ../../../ +cd ../../../../ if [ ! -d "wolfssl" ]; then git clone --depth=1 https://github.com/wolfSSL/wolfssl.git cd wolfssl - ./autogen.sh - ./configure make + sudo make install cd .. fi if [ ! -d "wolfip" ]; then git clone --depth=1 https://github.com/wolfSSL/wolfip.git cd wolfip - ./autogen.sh - ./configure make cd .. fi