|
since version 28.4 (i think for a month that i did not build any new versions) I am getting this error at the end of build
401136 bytes (401 kB, 392 KiB) copied, 0.0220665 s, 18.2 MB/s
image: copying files to part1...
image: extracting part2 from image...
image: creating filesystem on part2...
image: populating filesystem on part2...
image: error happen...
Error: [Filesystem error] /tmp/tmp.UazE1J1AaZ/part2.ext4 cannot be opened.
image: cleanup...
If i comment out the lines in scripts/mkimage
# add resize mark
if [ "$BOOTLOADER" != "syslinux" ]; then
mkdir "$OE_TMP/part2.fs"
touch "$OE_TMP/part2.fs/.please_resize_me"
echo "image: populating filesystem on part2..."
populatefs -U -d "$OE_TMP/part2.fs" "$OE_TMP/part2.ext4" >"$SAVE_ERROR" 2>&1 || show_error
sync
e2fsck -n "$OE_TMP/part2.ext4" >"$SAVE_ERROR" 2>&1 || show_error
fi
the build is sucessfully made, but i can not boot the image
i do
PROJECT=H3 SYSTEM=opipc ARCH=arm make image
for opipc system as root-. |
|