--- elwix/build_fs.sh 2011/07/25 13:03:51 1.1.2.5 +++ elwix/build_fs.sh 2011/12/19 20:43:07 1.3.2.3 @@ -5,7 +5,7 @@ # (C) AITNET ltd - Sofia/Bulgaria # by Michael Pounov # -# $Id: build_fs.sh,v 1.1.2.5 2011/07/25 13:03:51 misho Exp $ +# $Id: build_fs.sh,v 1.3.2.3 2011/12/19 20:43:07 misho Exp $ # [ -r ./config/rc.elwix ] && . ./config/rc.elwix @@ -99,9 +99,13 @@ mkboot() InstallDir ${WORLD}/boot $1/boot install -m 644 ${CFGDIR}/boot/boot.config $1; - install -m 644 ${CFGDIR}/boot/beastie.4th $1/boot; - install -m 644 ${CFGDIR}/boot/brand.4th $1/boot; + install -m 444 ${CFGDIR}/boot/beastie.4th $1/boot; + install -m 444 ${CFGDIR}/boot/brand.4th $1/boot; + install -m 444 ${CFGDIR}/boot/menu.4th $1/boot; + + install -m 444 ${KERNDEVHINTS} $1/boot/device.hints; + if [ -r ${CFGDIR}/boot/loader_${TARGET_ARCH}.conf ]; then install -m 644 ${CFGDIR}/boot/loader_${TARGET_ARCH}.conf $1/boot/loader.conf; else @@ -175,6 +179,7 @@ mketc() chmod 0600 $1/etc/ssh/ssh_host_dsa_key; chmod 0600 $1/etc/ssh/ssh_host_key; chmod 0600 $1/etc/ssh/ssh_host_rsa_key; + chmod 0600 $1/etc/ssh/ssh_host_ecdsa_key; chmod 0440 $1/etc/sudoers; @@ -193,6 +198,10 @@ mketc() create_etc_motd $1/etc/motd; create_etc_fstab $1/etc/fstab; + + echo "+++ ELWIX clean CVS tags ..." + CleanCVS ${FS} + CleanCVS ${FS}/etc } mkbackup() @@ -227,20 +236,14 @@ install_fsdir() install -v ${REL}/${ROOTFS_KERN} ${FS}/boot/kernel - install -v ${REL}/${ROMFS_IMG} ${FS}/elwix-firmware-${VERSION}_${TARGET_ARCH} - ln -s /elwix/elwix-firmware-${VERSION}_${TARGET_ARCH} ${FS}/${ROMFS_IMG} + install -v ${REL}/${ROMFS_IMG} ${FS}/altroot/elwix-firmware-${VERSION}_${TARGET_ARCH} + ln ${FS}/altroot/elwix-firmware-${VERSION}_${TARGET_ARCH} ${FS}/altroot/${ROMFS_IMG} + ln -s /elwix/altroot/elwix-firmware-${VERSION}_${TARGET_ARCH} ${FS}/${ROMFS_IMG} cd $FS tar -czvf ${REL}/${OS} . } -cleancvs() -{ - echo "+++ ELWIX clean CVS tags ..." - - find $1 -type d -name CVS -exec rm -rf {} \; >/dev/null 2>&1 -} - ### main() if [ ! -r ${REL}/${ROOTFS_KERN} -o ! -r ${REL}/${ROMFS_IMG} ]; then echo @@ -258,7 +261,6 @@ mkboot ${FS} mkhome ${FS} mkvar ${FS} mketc ${FS} -cleancvs ${FS} mkbackup ${FS} install_fsdir