From d5341fb7968108615da58d127655c8238a3e19b0 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 28 Aug 2009 17:11:57 +0100 Subject: Add poky-trim-schemas post install script to remove unneeded schema locale translations from images (credit to Ross Burton for the initial script) Signed-off-by: Richard Purdie --- meta/classes/image.bbclass | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'meta') diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 8225980f7..6b0a14d9a 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -225,6 +225,18 @@ rootfs_no_x_startup () { fi } +rootfs_trim_schemas () { + for schema in ${IMAGE_ROOTFS}/etc/gconf/schemas/*.schemas + do + # Need this in case no files exist + if [ -e $schema ]; then + poky-trim-schemas $schema > $schema.new + mv $schema.new $schema + fi + done +} + + # export the zap_root_password, create_etc_timestamp and remote_init_link 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 -- cgit v1.2.3