Changeset 5a809f3


Ignore:
Timestamp:
12/05/2023 07:08:14 AM (6 months ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
12.1, ken/TL2024, lazarus, plabs/newcss, python3.11, rahul/power-profiles-daemon, trunk, xry111/llvm18
Children:
2dd6b6b
Parents:
900bdf4a
git-author:
Xi Ruoyao <xry111@…> (12/05/2023 07:07:28 AM)
git-committer:
Xi Ruoyao <xry111@…> (12/05/2023 07:08:14 AM)
Message:

kernel-config: Fix "the last config entry in a Kconfig file thrown away"

Triggered when I'm trying to add libnl test suite kernel configuration
parsing net/l3mdev/Kconfig :(.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel-config/kernel-config.py

    r900bdf4a r5a809f3  
    186186            elif line.startswith('endif'):
    187187                if_stack = if_stack[:-1]
     188
     189    if config_buf:
     190        r += [parse_config(config_buf)]
     191
    188192    return r
    189193
Note: See TracChangeset for help on using the changeset viewer.