Related to the previous commit - fixed the '*.txt' in '/src'.

This commit is contained in:
Ivan Davidov 2016-05-04 01:43:12 +03:00
parent 29b1c3aab7
commit 6b656d1cdb
2 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,7 @@ rm -f linuxrc
cp ../../*.sh src cp ../../*.sh src
cp ../../.config src cp ../../.config src
cp ../../README src cp ../../README src
cp ../../*.txt src
cp -r ../../08_generate_rootfs src cp -r ../../08_generate_rootfs src
cp -r ../../11_generate_iso src cp -r ../../11_generate_iso src
@ -30,6 +31,7 @@ cp -r ../../11_generate_iso src
chmod -R +rx **/*.sh chmod -R +rx **/*.sh
chmod -R +r **/.config chmod -R +r **/.config
chmod -R +r **/README chmod -R +r **/README
chmod -R +r **/*.txt
# Copy all necessary 'glibc' libraries to '/lib' BEGIN. # Copy all necessary 'glibc' libraries to '/lib' BEGIN.

View File

@ -42,9 +42,11 @@ mkdir src
cp ../../*.sh src cp ../../*.sh src
cp ../../.config src cp ../../.config src
cp ../../README src cp ../../README src
cp ../../*.txt src
chmod +rx src/*.sh chmod +rx src/*.sh
chmod +r src/.config chmod +r src/.config
chmod +r src/README chmod +r src/README
chmod +r src/*.txt
# Read the 'OVERLAY_TYPE' property from '.config' # Read the 'OVERLAY_TYPE' property from '.config'
OVERLAY_TYPE="$(grep -i OVERLAY_TYPE $SRC_DIR/.config | cut -f2 -d'=')" OVERLAY_TYPE="$(grep -i OVERLAY_TYPE $SRC_DIR/.config | cut -f2 -d'=')"