Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Two small patches for build system and fatfs (IDFGH-10849) #12052

Merged
merged 2 commits into from
Aug 18, 2023

Commits on Aug 11, 2023

  1. idf.py: gdb action incorrectly generated EOL gdbinit scripts

    GDB on Windows incorrectly reads EOL in the script files causing 'gdb'
    action to fail.
    
    (gdb) source .../build/gdbinit/py_extensions
    (gdb) source .../build\gdbinit\symbols
    add symbol table from file "...\build\bootloader\bootloader.elf"
    .../build\gdbinit\symbols:6: Error in sourced command file:
    Undefined command: "".  Try "help".
    
    Forcing line separator to '\n' resolved the issue
    
    Signed-off-by: Michal Jenikovsky <jendo@jmsystems.sk>
    jendo42 committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    e9bb336 View commit details
    Browse the repository at this point in the history
  2. fatfs: raw diskio: Fixed handling read-only filesystem

    ff_ routines incorrectly reported disk state and caused whole fatfs
    to lock-up when trying to write to read-only device.
    
    Signed-off-by: Michal Jenikovsky <jendo@jmsystems.sk>
    jendo42 committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    bcda40f View commit details
    Browse the repository at this point in the history