#!/tools/bin/sh # System configuration informations (entered by the user) source ../sysinfos source ../functions source ../packages-list # Some programs hard-wire paths to programs which don't exist yet. In order to # satisfy these programs, we create a number of symbolic links which will be # replaced by real files when we're installing all the software. # We must not use "-sf" to force the creation of a symlink, because we don't want # to write over a valid program if the install script needs to be re-started. # Creating the /etc/mtab symlink ln -s /proc/mounts /etc/mtab ln -s /tools/bin/{bash,cat,pwd,stty} /bin ln -s /tools/bin/perl /usr/bin ln -s /tools/lib/libgcc_s.so{,.1} /usr/lib ln -s bash /bin/sh exit 0