Bashpromt erweitert und FTP Upload wieder funktionierend gemacht...

git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@397 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
ms
2007-01-25 19:04:11 +00:00
parent 0b59f25c65
commit 71e323840b
16 changed files with 191 additions and 61 deletions

View File

@@ -109,6 +109,7 @@ ifeq "$(ROOT)" ""
echo '#!/bin/bash' > /bin/uname
echo '/bin/uname.bak $$* | sed 's/i.86/$(MACHINE)/g'' >> /bin/uname
chmod 755 /bin/uname
dircolors -p > /etc/dircolors
else
rm /tools/bin/hostname
mv -f /tools/bin/uname /tools/bin/uname.bak

View File

@@ -97,6 +97,9 @@ $(TARGET) :
ln -sf ../init.d/network /etc/rc.d/rc0.d/K80network
ln -sf ../init.d/network /etc/rc.d/rc3.d/S20network
ln -sf ../init.d/network /etc/rc.d/rc6.d/K80network
ln -sf ../init.d/random /etc/rc.d/rc0.d/K45random
ln -sf ../init.d/random /etc/rc.d/rc3.d/S25random
ln -sf ../init.d/random /etc/rc.d/rc6.d/K45random
ln -sf ../init.d/mountkernfs /etc/rc.d/rcsysinit.d/S00mountkernfs
ln -sf ../init.d/modules /etc/rc.d/rcsysinit.d/S05modules

View File

@@ -79,6 +79,11 @@ $(TARGET) :
echo "===============================" >> /etc/issue
echo "\n running on \s \r \m" >> /etc/issue
# Bash startup files
install --directory --mode=0755 --owner=root --group=root /etc/profile.d
for i in $(DIR_SRC)/config/profile.d/*; do \
[ -f $$i ] && cp $$i /etc/profile.d; \
done
# Scripts
for i in `find $(DIR_SRC)/src/scripts -maxdepth 1 -type f`; do \