Raman

Results 26 comments of Raman

Dear NuttX Community, Greetings! So sorry about the delay in my response. I have squashed the review commits. Can you please check if these changes are OK? Please let me...

Dear @xiaoxiang781216, Dear @acassis, Greetings! I didn't have a chance to visit the NuttX code OR rebase it for a while. I revisited the files pertaining to AVR32 today. I...

I tried pushing another commit moments ago but this problem persists: ``` Error: buildx failed with: ERROR: failed to solve: nuttx-toolchain-avr32: failed to resolve source metadata for docker.io/library/nuttx-toolchain-avr32:latest: pull access...

Am I missing a similar step for AVR32 within Dockerfile? I am unable to wrap my head around this part. ``` # Download the latest ARM GCC toolchain prebuilt by...

Dear @simbit18, Dear @acassis, Greetings! Firstly, so sorry about the delay in my response. Many thanks for your suggestions. I have pushed another test commit which amends the Dockerfile recipe...

Dear @simbit18, Dear @acassis, Aren't the tests for nsh and ostest for avr32dev1 performed by default? Not sure why they are skipped. I notice that the tests are not being...

Dear @simbit18, ``` RUN apt-get update -qq && DEBIAN_FRONTEND="noninteractive" TZ=Etc/UTC apt-get install -y -qq --no-install-recommends \ -o APT::Immediate-Configure=0 \ avr-libc \ ccache \ clang \ clang-tidy \ g++-12-multilib \ gcc-avr...

> Aren't the tests for nsh and ostest for avr32dev1 performed by > default? Not sure why they are skipped ``` # We do not have a toolchain for avr32...

Can you please point at where in the Docker recipe (from the logs) the code is looking for avr32-gcc? I am finding it a bit tough to navigate.

``` avr32_gcc_toolchain() { add_path "${NUTTXTOOLS}"/avr32-gnu-toolchain-linux_x86/bin if [ ! -f "${NUTTXTOOLS}/avr32-gnu-toolchain-linux_x86/bin/avr32-gcc" ]; then local basefile basefile=avr32-gnu-toolchain-linux_x86 cd "${NUTTXTOOLS}" # Download the AVR32 GCC toolchain git clone https://github.com/ramangopalan/${basefile} fi command avr32-gcc --version...