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
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:
Should be changed to something like: