diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-08-22 16:14:59 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-08-22 16:14:59 +0000 |
commit | 681a42f0f9ed259fa6d1747f9282044d5b799ef4 (patch) | |
tree | 1d2998abeb9bb2f6ed7d49ec5455f3d87b2bf9bb | |
parent | f7d6eaeca1606cccf35ac2e39ee78891be028ff5 (diff) |
image.bbclass: Add the mkdir back in a different form. This proves nobody uses USE_DEVFS and we should consider removing it,
-rw-r--r-- | classes/image.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/classes/image.bbclass b/classes/image.bbclass index aa0c73adb7..91e63262cd 100644 --- a/classes/image.bbclass +++ b/classes/image.bbclass @@ -69,6 +69,7 @@ do_build[nostamp] = "1" fakeroot do_rootfs () { set -x rm -rf ${IMAGE_ROOTFS} + mkdir -p ${IMAGE_ROOTFS} if [ "${USE_DEVFS}" != "1" ]; then for devtable in ${@get_devtable_list(d)}; do |