Starting beta6 - fixing eudev and docker imgs

This commit is contained in:
Fabio Belavenuto
2022-11-30 13:39:07 -03:00
parent f7c0b4fcd5
commit aa0976ca4f
17 changed files with 8 additions and 35 deletions

View File

@@ -15,7 +15,7 @@ BOARD_PATH="${CONFIG_DIR}/board/arpl"
echo "Creating image file"
# Create image zeroed
dd if="/dev/zero" of="${IMAGE_FILE}" bs=1M count=500 conv=sync 2>/dev/null
dd if="/dev/zero" of="${IMAGE_FILE}" bs=1M count=1024 conv=sync 2>/dev/null
# Copy grub stage1 to image
dd if="${BOARD_PATH}/grub.bin" of="${IMAGE_FILE}" conv=notrunc,sync 2>/dev/null
# Create partitions on image

View File

@@ -1,5 +1,5 @@
ARPL_VERSION="1.0-beta5"
ARPL_VERSION="1.0-beta6"
# Define paths
TMP_PATH="/tmp"