文件系统的制作遇到的问题(genext2fs: couldn't allocate a block (no free space))

转载请注明:http://blog.csdn.net/u011046042/article/details/73936247
通过系列的配置并且进行了make -j8的操作终于在
output/image 下面有了文件系统了
如下图所示
文件系统的制作遇到的问题(genext2fs: couldn't allocate a block (no free space))
but 在后面的是进行执行
genext2fs -b 1024 -d rootfs ramdisk.image
报错误了: genext2fs: couldn’t allocate a block (no free space)
经过多次查找发现这个是空间分配不对
只要改成
genext2fs -b 102400 -d rootfs ramdisk.image
这样就通过了
貌似这个是空间大小太小了,这种先使用大的后面使用小的
有图为证确实解决了
文件系统的制作遇到的问题(genext2fs: couldn't allocate a block (no free space))

转载请注明:http://blog.csdn.net/u011046042/article/details/73936247