Search found 2 matches

by swelch
Thu Sep 14, 2023 3:58 pm
Forum: ESP-IDF
Topic: How to use 'make menuconfig' in Docker container?
Replies: 1
Views: 1324

Re: How to use 'make menuconfig' in Docker container?

UPDATE: I discovered if I run the docker container as root user this works:

Code: Select all

docker run --rm -v $PWD:/project -w /project -u root -e HOME=/tmp -it espressif/idf:release-v3.3
Is there a way to get this to work without needing root permissions?
by swelch
Mon Sep 11, 2023 8:26 pm
Forum: ESP-IDF
Topic: How to use 'make menuconfig' in Docker container?
Replies: 1
Views: 1324

How to use 'make menuconfig' in Docker container?

I'm working with an older project that uses the GNU Make build system. The IDF Docker Image seems to use the CMake system instead. Is there a way to use commands like 'make menuconfig' within the Docker container? When I try 'make menuconfig' using the 'hello_world' project as an example from v3.3 I...