mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
bump version to 2022.02.9
add miyoo_defconfig
This commit is contained in:
34
board/orangepi/common/post-build.sh
Executable file
34
board/orangepi/common/post-build.sh
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/bin/sh
|
||||
|
||||
linux_image()
|
||||
{
|
||||
if grep -Eq "^BR2_LINUX_KERNEL_UIMAGE=y$" ${BR2_CONFIG}; then
|
||||
echo "uImage"
|
||||
elif grep -Eq "^BR2_LINUX_KERNEL_IMAGE=y$" ${BR2_CONFIG}; then
|
||||
echo "Image"
|
||||
elif grep -Eq "^BR2_LINUX_KERNEL_IMAGEGZ=y$" ${BR2_CONFIG}; then
|
||||
echo "Image.gz"
|
||||
else
|
||||
echo "zImage"
|
||||
fi
|
||||
}
|
||||
|
||||
generic_getty()
|
||||
{
|
||||
if grep -Eq "^BR2_TARGET_GENERIC_GETTY=y$" ${BR2_CONFIG}; then
|
||||
echo ""
|
||||
else
|
||||
echo "s/\s*console=\S*//"
|
||||
fi
|
||||
}
|
||||
|
||||
PARTUUID="$($HOST_DIR/bin/uuidgen)"
|
||||
|
||||
install -d "$TARGET_DIR/boot/extlinux/"
|
||||
|
||||
sed -e "$(generic_getty)" \
|
||||
-e "s/%LINUXIMAGE%/$(linux_image)/g" \
|
||||
-e "s/%PARTUUID%/$PARTUUID/g" \
|
||||
"board/orangepi/common/extlinux.conf" > "$TARGET_DIR/boot/extlinux/extlinux.conf"
|
||||
|
||||
sed "s/%PARTUUID%/$PARTUUID/g" "board/orangepi/common/genimage.cfg" > "$BINARIES_DIR/genimage.cfg"
|
||||
Reference in New Issue
Block a user