Changes in / [7c0efc5:9f61be5]
- Files:
-
- 5 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/boot/common/e2fsprogs.xml
r7c0efc5 r9f61be5 75 75 <para os="ad">Create needed symlinks for a bootable system:</para> 76 76 77 <screen os="ae"><userinput>ln -sv /tools/sbin/{fsck.ext2,fsck.ext3, e2fsck} ${CLFS}/sbin</userinput></screen>77 <screen os="ae"><userinput>ln -sv /tools/sbin/{fsck.ext2,fsck.ext3,fsck.ext4,e2fsck} ${CLFS}/sbin</userinput></screen> 78 78 79 79 </sect2> -
scripts/patch/binutils-patch.sh
r7c0efc5 r9f61be5 16 16 fi 17 17 18 # 18 # Set Patch Directory 19 # 20 PATCH_DIR=$(pwd -P)/binutils 21 19 22 # Download Binutils Source 20 23 # … … 111 114 # 112 115 cd ~/tmp 113 if [ -e ${PATCH_DIR}/${ VERSION} ]; then116 if [ -e ${PATCH_DIR}/${SOURCEVERSION} ]; then 114 117 rm -rf binutils-${SOURCEVERSION}.orig 115 118 cp -ar binutils-${SOURCEVERSION} binutils-${SOURCEVERSION}.orig … … 118 121 # 119 122 cd ~/tmp/binutils-${SOURCEVERSION} 120 PATCH_FILES=$(ls ${PATCH_DIR}/${ VERSION}/*.patch)123 PATCH_FILES=$(ls ${PATCH_DIR}/${SOURCEVERSION}/*.patch) 121 124 if [ "${PATCH_FILES}" != "" ]; then 122 125 for pfile in ${PATCH_FILES}; do
Note:
See TracChangeset
for help on using the changeset viewer.