blob: bcce9d5389740080a48d6c2fee129d659687b4fc (
plain)
1
2
3
4
5
6
7
8
|
inherit boot-directdisk
do_bootdirectdisk_prepend () {
import bb
fstypes = bb.data.getVar('IMAGE_FSTYPES', d, True)
if 'ext3' not in fstypes:
bb.msg.fatal(bb.msg.domain.Build, "ext3 not in IMAGE_FSTYPES")
}
|