[Buildroot] [Bug 16009] New: 'select' does not work with 'choice'

bugzilla at busybox.net bugzilla at busybox.net
Wed Mar 27 15:55:30 UTC 2024


https://bugs.busybox.net/show_bug.cgi?id=16009

            Bug ID: 16009
           Summary: 'select' does not work with 'choice'
           Product: buildroot
           Version: 2024.02.1
          Hardware: All
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P5
         Component: Other
          Assignee: unassigned at buildroot.uclibc.org
          Reporter: achpile at gmail.com
                CC: buildroot at uclibc.org
  Target Milestone: ---

If we have something like this in Config.in

choice
        prompt "TEST"
        config BR2_TEST_1
                bool "1"
        config BR2_TEST_2
                bool "2"
endchoice

config BR2_TEST_BOOL_D1
        bool "Depends on 1"
        depends on BR2_TEST_1

config BR2_TEST_BOOL_S1
        bool "Selects 1"
        select BR2_TEST_1

config BR2_TEST_BOOL_D2
        bool "Depends on 2"
        depends on BR2_TEST_2

config BR2_TEST_BOOL_S2
        bool "Selects 2"
        select BR2_TEST_2


Then selecting BR2_TEST_BOOL_S1 or BR2_TEST_BOOL_S2 does not select BR2_TEST_1
or BR2_TEST_2. I am not sure if it is expected behavior but seems like a bug to
me.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the buildroot mailing list