Odroid_Multiboot
Odroid_Multiboot copied to clipboard
changing default os / boot is not working
Changing default os in boot.ini.multi does not work.
boot.ini.multi uses:
default_os=${DEFAULT_OS}
init file uses:
DEFAULTBOOT="${x#default_boot=}"
Solution: two changes in 'init':
default_boot=*)
DEFAULTBOOT="${x#default_boot=}"
default_os=*)
DEFAULTBOOT="${x#default_os=}"
But you might want to use the same variable name in all scripts for ease of coding.
I also have this issue