Skip to content

CONFIG_IMAGE_NAME is not (menu)configurable #28

@mcondarelli

Description

@mcondarelli

It seems image name (the actual name of the image to load) is not configurable.
I do not know if this is intentional or not, but forces to rename the actual Image to a standard name without format (e.g.: uImage vs. zImage) or content information (e.g.: tinyImage vs. FullBlownLinux).

This is due to CONFIG_IMAGE_NAME (at Config.in#83) having an empty string value and thus not showing in "make menuconfig"; the following change would resolve the problem:

config CONFIG_IMAGE_NAME
    string
    default "Image" if CONFIG_LINUX_IMAGE

Should be changed to something like:

config CONFIG_IMAGE_NAME
    string "Image name"
    default "Image" if CONFIG_LINUX_IMAGE

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions