1
0
mirror of https://github.com/lxsang/meta-rpi-diya.git synced 2025-07-13 14:14:23 +02:00

Compare commits

...

1 Commits

Author SHA1 Message Date
d39686df00 add system update tools 2023-08-02 18:28:34 +02:00

View File

@ -71,7 +71,9 @@ kernel()
return 1
fi
echo "Update kernel"
cp "$path" /boot/kernel8.img
cp -v "$path" /boot/kernel8.img
cd /boot
sync
echo "Done"
return 0
}
@ -89,7 +91,7 @@ initramfs()
return 1
fi
echo "Update recovery intramfs"
cp "$path" /boot/$DEFAULT_INITRAMFS_NAME
cp -v "$path" /boot/$DEFAULT_INITRAMFS_NAME
cd /boot
sync
echo "Done"