diff options
author | Phil Blundell <philb@gnu.org> | 2004-07-10 14:55:15 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-07-10 14:55:15 +0000 |
commit | 5f230ae1b32d4f8fa7e962b8d0faed9c94afd8a2 (patch) | |
tree | 6c7cbfcc7b2c599e23becb5294740208eb2975b5 /classes | |
parent | 166b04b66872ed310eb33a6e53a03935508c4142 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into workhouse.nexus.co.uk:/home/pb/oe/oe-packages
2004/07/10 15:08:51+02:00 (none)!ich
Merge bk://openembedded@openembedded.bkbits.net/packages
into debian.(none):/home/ich/programming/oe/oe-packages-exported
2004/07/10 15:07:39+02:00 (none)!ich
Move zapping of passwords from gpe-image.oe to image_ipk.oeclass so that all images
can use this function.
Currently gpe uses it and in the opie-image.oe it is still commented out
BKrev: 40f00353lvCZEyW1qeOLzClEQDO2JQ
Diffstat (limited to 'classes')
-rw-r--r-- | classes/image_ipk.oeclass | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/classes/image_ipk.oeclass b/classes/image_ipk.oeclass index 7821aa6c6d..f0fb5ec483 100644 --- a/classes/image_ipk.oeclass +++ b/classes/image_ipk.oeclass @@ -69,4 +69,16 @@ EOF oeimage -t ${IMAGE_FSTYPE} -e ${FILE} fi } + +# set '*' as the rootpassword so the images +# can decide if they want it or not + +zap_root_password () { + sed 's%^root:[^:]*:%root:*:%' < ${IMAGE_ROOTFS}/etc/passwd >${IMAGE_ROOTFS}/etc/passwd.new + mv ${IMAGE_ROOTFS}/etc/passwd.new ${IMAGE_ROOTFS}/etc/passwd +} + +# export the zap_root_password +EXPORT_FUNCTIONS zap_root_password + addtask images before do_build after do_install |