With an initial ramdisk you can boot with a LABEL or UUID. You can create a ramdisk with the following instructions:
X1000:
First, you need to copy the kernel modules directory to /lib/modules. For example:
Code: Select all
# cp -R 5.3.0-rc1_A-EON_X1000_Nemo /lib/modulesCode: Select all
mkinitramfs -o initrd-5.3.img 5.3.0-rc1_A-EON_X1000_NemoCode: Select all
ramdisk -z -addr=0x2400000 -fatfs cf0:initrd-5.3.imgCode: Select all
setenv bootargs "root=LABEL=Fedora"Code: Select all
boot -elf -noints -fatfs cf0:vmlinux-5.3First, you need to copy the kernel modules directory to /lib/modules. For example:
Code: Select all
# cp -R 5.3.0-rc1_A-EON_X5000 /lib/modulesCode: Select all
mkinitramfs -o initrd-5.3.img 5.3.0-rc1_A-EON_X5000Code: Select all
mkimage -T ramdisk -C gzip -n 'Kernel 5.3-rc1 uInitrd' -d initrd-5.3.img uInitrd-5.3You can boot the X5000 with a LABEL and the uInitrd-5.3 with the following commands:
Code: Select all
setenv bootargs root=LABEL=FedoraCode: Select all
load sata 0:1 1000000 uImage-5.3Code: Select all
load sata 0:1 1c00000 cyrus.dtbCode: Select all
load sata 0:1 2000000 uInitrd-5.3Code: Select all
bootm 1000000 2000000 1c00000Code: Select all
tune2fs -L Fedora /dev/sda3Christian
