Bug 9366 - no link rootfs.ext4 -> rootfs.ext2
Summary: no link rootfs.ext4 -> rootfs.ext2
Status: RESOLVED INVALID
Alias: None
Product: buildroot
Classification: Unclassified
Component: Other (show other bugs)
Version: unspecified
Hardware: All Linux
: P5 normal
Target Milestone: ---
Assignee: unassigned
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-10-17 21:40 UTC by Mikhail
Modified: 2016-10-18 14:13 UTC (History)
1 user (show)

See Also:
Host:
Target:
Build:


Attachments
this is .config file which make this problem. (69.23 KB, text/plain)
2016-10-17 21:40 UTC, Mikhail
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Mikhail 2016-10-17 21:40:55 UTC
Created attachment 6766 [details]
this is .config file which make this problem.

Hi, I have compiled raspberry pi 3 image with config file attached here.  Unfortunately at the very last stage I had manually link 

ln -s rootfs.ext2 rootfs.ext4

in the images/ directory, then run make again and it assembled sdcard.img

When I used default rpi3 config it was not the case, so it is something in my 
custom config, which is default based.

It seems it is something minor.

Thank you
Mikhail
Comment 1 Arnout Vandecappelle 2016-10-18 13:51:58 UTC
You set BR2_TARGET_ROOTFS_EXT2_GZIP=y, so the symlink will be rootfs.ext4.gz -> rootfs.ext2.gz instead of rootfs.ext4 -> rootfs.ext2. If you make such a change you have to adapt the post-image script.
Comment 2 Mikhail 2016-10-18 14:13:18 UTC
Thank you very much!

Mikhail