mirror of
https://github.com/Fishwaldo/build.git
synced 2025-07-23 05:18:55 +00:00
Udoo quad boot script adjustments, added onboard firmware to small armbian FW package, bugfix in postinstall script for DEFAULT kernel, added environment table
This commit is contained in:
parent
f736c24bb1
commit
0695169cba
4 changed files with 37 additions and 15 deletions
BIN
bin/firmware-overlay/rt2870.bin
Normal file
BIN
bin/firmware-overlay/rt2870.bin
Normal file
Binary file not shown.
1
config/bootenv/udoo-default.txt
Normal file
1
config/bootenv/udoo-default.txt
Normal file
|
@ -0,0 +1 @@
|
|||
verbosity=1
|
|
@ -1,23 +1,44 @@
|
|||
# DO NOT EDIT THIS FILE
|
||||
#
|
||||
# Please edit /boot/armbianEnv.txt to set supported parameters
|
||||
#
|
||||
|
||||
# default values
|
||||
|
||||
setenv load_addr "0x12000000"
|
||||
setenv ramdisk_addr "0x14800000"
|
||||
setenv rootdev "/dev/mmcblk0p1"
|
||||
setenv verbosity "1"
|
||||
setenv console "both"
|
||||
setenv disp_mode "1920x1080M60"
|
||||
setenv rootfstype "ext4"
|
||||
|
||||
if ext4load mmc 0 0x00000000 /boot/.verbose
|
||||
then
|
||||
setenv verbosity 7
|
||||
else
|
||||
setenv verbosity 1
|
||||
# Print boot source
|
||||
echo "Booting from SD"
|
||||
|
||||
if ext4load mmc 0 ${load_addr} /boot/armbianEnv.txt || fatload mmc 0 ${load_addr} armbianEnv.txt; then
|
||||
env import -t ${load_addr} ${filesize}
|
||||
fi
|
||||
setenv bootargs "root=${rootdev} rootfstype=ext4 rootwait console=tty1 video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24,bpp=32 rd.dm=0 rd.luks=0 rd.lvm=0 raid=noautodetect pci=nomsi ahci_imx.hotplug=1 quiet loglevel=1 loglevel=${verbosity} consoleblank=0 ${extraargs}"
|
||||
if ext4load mmc 0 0x00000000 /boot/.next
|
||||
then
|
||||
setenv fdt_file imx6q-udoo.dtb
|
||||
|
||||
if test "${console}" = "display" || test "${console}" = "both"; then setenv consoleargs "console=tty1"; fi
|
||||
if test "${console}" = "serial" || test "${console}" = "both"; then setenv consoleargs "${consoleargs} console=ttymxc1,115200"; fi
|
||||
|
||||
|
||||
setenv bootargs "root=${rootdev} rootfstype=ext4 rootwait ${consoleargs} video=mxcfb0:dev=hdmi,${disp_mode},if=RGB24,bpp=32 rd.dm=0 rd.luks=0 rd.lvm=0 raid=noautodetect pci=nomsi ahci_imx.hotplug=1 vt.global_cursor_default=0 loglevel=${verbosity} ${extraargs}"
|
||||
|
||||
ext4load mmc 0 ${ramdisk_addr} /boot/uInitrd || fatload mmc 0 ${ramdisk_addr} uInitrd || ext4load mmc 0 ${ramdisk_addr} uInitrd
|
||||
ext4load mmc 0 ${loadaddr} /boot/zImage || fatload mmc 0 ${loadaddr} zImage
|
||||
|
||||
if load mmc 0 0x00000000 /boot/.next || load mmc 0 0x00000000 .next; then
|
||||
setenv fdt_file "imx6q-udoo.dtb"
|
||||
ext4load mmc 0 ${fdt_addr} /boot/dtb/${fdt_file} || fatload mmc 0 ${fdt_addr} dtb/${fdt_file}
|
||||
else
|
||||
setenv fdt_file imx6q-udoo-hdmi.dtb
|
||||
setenv fdt_file "imx6q-udoo-hdmi.dtb"
|
||||
ext4load mmc 0 ${fdt_addr} /boot/dtb/${fdt_file} || fatload mmc 0 ${fdt_addr} dtb/${fdt_file}
|
||||
fi
|
||||
setenv ramdisk_addr 0x14800000
|
||||
ext2load mmc 0 ${fdt_addr} /boot/dtb/${fdt_file} || fatload mmc 0 ${fdt_addr} dtb/${fdt_file}
|
||||
ext2load mmc 0 ${ramdisk_addr} /boot/uInitrd || fatload mmc 0 ${ramdisk_addr} uInitrd || ext4load mmc 0 ${ramdisk_addr} uInitrd
|
||||
ext2load mmc 0 ${loadaddr} /boot/${image} || fatload mmc 0 ${loadaddr} ${image}
|
||||
|
||||
bootz ${loadaddr} ${ramdisk_addr} ${fdt_addr}
|
||||
|
||||
# Recompile with:
|
||||
# mkimage -C none -A arm -T script -d /boot/boot.cmd /boot/boot.scr
|
||||
|
||||
|
|
|
@ -160,7 +160,7 @@ index 152d4d2..9b30ad2 100644
|
|||
+sed -e "s/exit 0//g" -i $tmpdir/DEBIAN/postinst
|
||||
+cat >> $tmpdir/DEBIAN/postinst <<EOT
|
||||
+ln -sf $(basename $kernel_tmp_version) /boot/zImage > /dev/null 2>&1 || mv /$kernel_tmp_version /boot/zImage
|
||||
+
|
||||
+rm -f /boot/.next
|
||||
+exit 0
|
||||
+EOT
|
||||
+
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue