summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/image.bbclass9
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
215rootfs_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
215EXPORT_FUNCTIONS zap_root_password create_etc_timestamp remove_init_link do_rootfs make_zimage_symlink_relative set_image_autologin rootfs_update_timestamp 222EXPORT_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
217addtask rootfs before do_build after do_install 224addtask rootfs before do_build after do_install