diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/image.bbclass | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 35b7e12498..3678459380 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -211,7 +211,14 @@ rootfs_update_timestamp () { | |||
211 | date "+%m%d%H%M%Y" >${IMAGE_ROOTFS}/etc/timestamp | 211 | date "+%m%d%H%M%Y" >${IMAGE_ROOTFS}/etc/timestamp |
212 | } | 212 | } |
213 | 213 | ||
214 | # Prevent X from being started | ||
215 | rootfs_no_x_startup () { | ||
216 | if [ -f ${IMAGE_ROOTFS}/etc/init.d/xserver-nodm ]; then | ||
217 | chmod a-x ${IMAGE_ROOTFS}/etc/init.d/xserver-nodm | ||
218 | fi | ||
219 | } | ||
220 | |||
214 | # export the zap_root_password, create_etc_timestamp and remote_init_link | 221 | # export the zap_root_password, create_etc_timestamp and remote_init_link |
215 | EXPORT_FUNCTIONS zap_root_password create_etc_timestamp remove_init_link do_rootfs make_zimage_symlink_relative set_image_autologin rootfs_update_timestamp | 222 | EXPORT_FUNCTIONS zap_root_password create_etc_timestamp remove_init_link do_rootfs make_zimage_symlink_relative set_image_autologin rootfs_update_timestamp rootfs_no_x_startup |
216 | 223 | ||
217 | addtask rootfs before do_build after do_install | 224 | addtask rootfs before do_build after do_install |