- All boot partitions are now ext2.

- All installer configurations updated for new partition system.
This commit is contained in:
Jeffrey Townsend
2016-04-13 18:51:57 -07:00
parent 937c8b4e60
commit 0df7559793
2 changed files with 4 additions and 9 deletions

View File

@@ -19,14 +19,10 @@
# </bsn.cl>
############################################################
# The loader must be written raw to the first partition.
platform_loader_raw=1
# The bootcommand is to read the loader directly from the first partition and execute it.
platform_bootcmd="diskboot 0x10000000 0:1 ; setenv bootargs console=\$consoledev,\$baudrate onl_platform=$ONL_PLATFORM; bootm 0x10000000#$ONL_PLATFORM"
platform_bootcmd="ext2load ide 0:1 0x10000000 powerpc-quanta-lb9-r0.itb; setenv bootargs console=\$consoledev,\$baudrate onl_platform=$ONL_PLATFORM; bootm 0x10000000#$ONL_PLATFORM"
platform_installer() {
# Standard installation on the CF card.
installer_standard_blockdev_install sda 128M 128M ""
installer_standard_blockdev_install sda 128M 128M 1024M ""
}

View File

@@ -20,10 +20,9 @@
############################################################
# The bootcommand is to read the loader directly from the first partition and execute it.
platform_bootcmd="mmc part 0; fatload mmc 0:1 0x10000000 $ONL_PLATFORM.itb; setenv bootargs console=\$consoledev,\$baudrate onl_platform=$ONL_PLATFORM; bootm 0x10000000#$ONL_PLATFORM"
platform_bootcmd="mmc part 0; ext2load mmc 0:1 0x10000000 $ONL_PLATFORM.itb; setenv bootargs console=\$consoledev,\$baudrate onl_platform=$ONL_PLATFORM; bootm 0x10000000#$ONL_PLATFORM"
platform_installer() {
# Standard installation on the CF card.
installer_standard_blockdev_install mmcblk0 128M 128M ""
installer_standard_blockdev_install mmcblk0 128M 128M 1024M ""
}