Skip to content

Commit 468fd86

Browse files
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 <daniele@wolfssl.com>
1 parent ced6ae7 commit 468fd86

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

fullstack/freertos-wolfip-wolfssl-https/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ sudo ./setup_network.sh
3232

3333
3. Build the example:
3434
```bash
35-
mkdir -p build && cd build && cmake .. && make
35+
cd build && cmake .. && make
3636
```
3737

3838
4. Run the example (requires root):

fullstack/freertos-wolfip-wolfssl-https/setup.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,18 @@ if [ ! -d "FreeRTOS" ]; then
1717
fi
1818

1919
# Clone wolfSSL and wolfIP if they don't exist
20-
cd ../../../
20+
cd ../../../../
2121
if [ ! -d "wolfssl" ]; then
2222
git clone --depth=1 https://github.com/wolfSSL/wolfssl.git
2323
cd wolfssl
24-
./autogen.sh
25-
./configure
2624
make
25+
sudo make install
2726
cd ..
2827
fi
2928

3029
if [ ! -d "wolfip" ]; then
3130
git clone --depth=1 https://github.com/wolfSSL/wolfip.git
3231
cd wolfip
33-
./autogen.sh
34-
./configure
3532
make
3633
cd ..
3734
fi

0 commit comments

Comments
 (0)