Lines Matching full:component
76 -- Creates a dialog for component selection mirroring the
77 -- traditional tarball component selection dialog.
99 for component, _ in pairs(components) do
100 table.insert(sorted_components, component)
105 for _, component in ipairs(sorted_components) do
106 if component ~= "base" and component ~= "kernel" and
107 not (component == "kernel_dbg" and options.no_kernel) and
108 #components[component] > 0 then
109 local description = descriptions[component] or "''"
110 local default = defaults[component] or "off"
111 table.insert(checklist_items, component)
139 for component in output:gmatch("[^\n]+") do
140 table.insert(selected, component)
202 for _, component in ipairs(select_components(components, options)) do
203 append_list(selected, components[component])