Fix for "mkfs.ext4 not found" error

Unfortunately some Gitian installation need this fix, some not, so I mention this on the documentation and do not fix make-base-vm.

In theory /sbin/ should *always* be in $PATH...
This commit is contained in:
crowning- 2015-05-30 12:05:06 +02:00
parent 06a0928482
commit 2c58dac8dc

View File

@ -309,6 +309,12 @@ There will be a lot of warnings printed during build of the images. These can be
**Note**: Repeat this step when you have upgraded to a newer version of Gitian.
**Note**: if you get the error message *"bin/make-base-vm: mkfs.ext4: not found"* during this process you have to make the following change in file *"gitian-builder/bin/make-base-vm"* at line 117:
```bash
# mkfs.ext4 -F $OUT-lxc
/sbin/mkfs.ext4 -F $OUT-lxc # (some Gitian environents do NOT find mkfs.ext4. Some do...)
```
Getting and building the inputs
--------------------------------