diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/Makefile.build | 2 | ||||
| -rwxr-xr-x | scripts/checkpatch.pl | 2 | ||||
| -rwxr-xr-x | scripts/dtc/dtx_diff | 22 | ||||
| -rw-r--r-- | scripts/mkversion | 6 | ||||
| -rw-r--r-- | scripts/package/Makefile | 5 | ||||
| -rwxr-xr-x | scripts/package/builddeb | 22 | ||||
| -rwxr-xr-x | scripts/package/mkspec | 14 | ||||
| -rw-r--r-- | scripts/spelling.txt | 33 |
8 files changed, 50 insertions, 56 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 2e3a10e79ca9..061d0c3a420a 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build | |||
| @@ -265,6 +265,8 @@ objtool_args += --no-fp | |||
| 265 | endif | 265 | endif |
| 266 | ifdef CONFIG_GCOV_KERNEL | 266 | ifdef CONFIG_GCOV_KERNEL |
| 267 | objtool_args += --no-unreachable | 267 | objtool_args += --no-unreachable |
| 268 | else | ||
| 269 | objtool_args += $(call cc-ifversion, -lt, 0405, --no-unreachable) | ||
| 268 | endif | 270 | endif |
| 269 | 271 | ||
| 270 | # 'OBJECT_FILES_NON_STANDARD := y': skip objtool checking for a directory | 272 | # 'OBJECT_FILES_NON_STANDARD := y': skip objtool checking for a directory |
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index dd2c262aebbf..8b80bac055e4 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
| @@ -6390,7 +6390,7 @@ sub process { | |||
| 6390 | exit(0); | 6390 | exit(0); |
| 6391 | } | 6391 | } |
| 6392 | 6392 | ||
| 6393 | if (!$is_patch && $file !~ /cover-letter\.patch$/) { | 6393 | if (!$is_patch && $filename !~ /cover-letter\.patch$/) { |
| 6394 | ERROR("NOT_UNIFIED_DIFF", | 6394 | ERROR("NOT_UNIFIED_DIFF", |
| 6395 | "Does not appear to be a unified-diff format patch\n"); | 6395 | "Does not appear to be a unified-diff format patch\n"); |
| 6396 | } | 6396 | } |
diff --git a/scripts/dtc/dtx_diff b/scripts/dtc/dtx_diff index f9a3d8d23c64..8c4fbad2055e 100755 --- a/scripts/dtc/dtx_diff +++ b/scripts/dtc/dtx_diff | |||
| @@ -86,6 +86,7 @@ eod | |||
| 86 | compile_to_dts() { | 86 | compile_to_dts() { |
| 87 | 87 | ||
| 88 | dtx="$1" | 88 | dtx="$1" |
| 89 | dtc_include="$2" | ||
| 89 | 90 | ||
| 90 | if [ -d "${dtx}" ] ; then | 91 | if [ -d "${dtx}" ] ; then |
| 91 | 92 | ||
| @@ -113,7 +114,7 @@ compile_to_dts() { | |||
| 113 | # ----- input is DTS (source) | 114 | # ----- input is DTS (source) |
| 114 | 115 | ||
| 115 | if ( cpp ${cpp_flags} -x assembler-with-cpp ${dtx} \ | 116 | if ( cpp ${cpp_flags} -x assembler-with-cpp ${dtx} \ |
| 116 | | ${DTC} -I dts ) ; then | 117 | | ${DTC} ${dtc_include} -I dts ) ; then |
| 117 | return | 118 | return |
| 118 | fi | 119 | fi |
| 119 | 120 | ||
| @@ -320,18 +321,13 @@ fi | |||
| 320 | 321 | ||
| 321 | cpp_flags="\ | 322 | cpp_flags="\ |
| 322 | -nostdinc \ | 323 | -nostdinc \ |
| 323 | -I${srctree}/arch/${ARCH}/boot/dts \ | ||
| 324 | -I${srctree}/scripts/dtc/include-prefixes \ | 324 | -I${srctree}/scripts/dtc/include-prefixes \ |
| 325 | -I${srctree}/drivers/of/testcase-data \ | ||
| 326 | -undef -D__DTS__" | 325 | -undef -D__DTS__" |
| 327 | 326 | ||
| 328 | dtc_flags="\ | 327 | DTC="\ |
| 329 | -i ${srctree}/arch/${ARCH}/boot/dts/ \ | 328 | ${DTC} \ |
| 330 | -i ${srctree}/kernel/dts \ | 329 | -i ${srctree}/scripts/dtc/include-prefixes \ |
| 331 | ${dtx_path_1_dtc_include} \ | 330 | -O dts -qq -f ${dtc_sort} -o -" |
| 332 | ${dtx_path_2_dtc_include}" | ||
| 333 | |||
| 334 | DTC="${DTC} ${dtc_flags} -O dts -qq -f ${dtc_sort} -o -" | ||
| 335 | 331 | ||
| 336 | 332 | ||
| 337 | # ----- do the diff or decompile | 333 | # ----- do the diff or decompile |
| @@ -339,11 +335,11 @@ DTC="${DTC} ${dtc_flags} -O dts -qq -f ${dtc_sort} -o -" | |||
| 339 | if (( ${cmd_diff} )) ; then | 335 | if (( ${cmd_diff} )) ; then |
| 340 | 336 | ||
| 341 | diff ${diff_flags} --label "${dtx_file_1}" --label "${dtx_file_2}" \ | 337 | diff ${diff_flags} --label "${dtx_file_1}" --label "${dtx_file_2}" \ |
| 342 | <(compile_to_dts "${dtx_file_1}") \ | 338 | <(compile_to_dts "${dtx_file_1}" "${dtx_path_1_dtc_include}") \ |
| 343 | <(compile_to_dts "${dtx_file_2}") | 339 | <(compile_to_dts "${dtx_file_2}" "${dtx_path_2_dtc_include}") |
| 344 | 340 | ||
| 345 | else | 341 | else |
| 346 | 342 | ||
| 347 | compile_to_dts "${dtx_file_1}" | 343 | compile_to_dts "${dtx_file_1}" "${dtx_path_1_dtc_include}" |
| 348 | 344 | ||
| 349 | fi | 345 | fi |
diff --git a/scripts/mkversion b/scripts/mkversion deleted file mode 100644 index c12addc9c7ef..000000000000 --- a/scripts/mkversion +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | if [ ! -f .version ] | ||
| 2 | then | ||
| 3 | echo 1 | ||
| 4 | else | ||
| 5 | expr 0`cat .version` + 1 | ||
| 6 | fi | ||
diff --git a/scripts/package/Makefile b/scripts/package/Makefile index 71b4a8af9d4d..73f9f3192b9f 100644 --- a/scripts/package/Makefile +++ b/scripts/package/Makefile | |||
| @@ -50,8 +50,6 @@ rpm-pkg rpm: FORCE | |||
| 50 | $(MAKE) clean | 50 | $(MAKE) clean |
| 51 | $(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec | 51 | $(CONFIG_SHELL) $(MKSPEC) >$(objtree)/kernel.spec |
| 52 | $(call cmd,src_tar,$(KERNELPATH),kernel.spec) | 52 | $(call cmd,src_tar,$(KERNELPATH),kernel.spec) |
| 53 | $(CONFIG_SHELL) $(srctree)/scripts/mkversion > $(objtree)/.tmp_version | ||
| 54 | mv -f $(objtree)/.tmp_version $(objtree)/.version | ||
| 55 | rpmbuild $(RPMOPTS) --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz | 53 | rpmbuild $(RPMOPTS) --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz |
| 56 | rm $(KERNELPATH).tar.gz kernel.spec | 54 | rm $(KERNELPATH).tar.gz kernel.spec |
| 57 | 55 | ||
| @@ -60,9 +58,6 @@ rpm-pkg rpm: FORCE | |||
| 60 | binrpm-pkg: FORCE | 58 | binrpm-pkg: FORCE |
| 61 | $(MAKE) KBUILD_SRC= | 59 | $(MAKE) KBUILD_SRC= |
| 62 | $(CONFIG_SHELL) $(MKSPEC) prebuilt > $(objtree)/binkernel.spec | 60 | $(CONFIG_SHELL) $(MKSPEC) prebuilt > $(objtree)/binkernel.spec |
| 63 | $(CONFIG_SHELL) $(srctree)/scripts/mkversion > $(objtree)/.tmp_version | ||
| 64 | mv -f $(objtree)/.tmp_version $(objtree)/.version | ||
| 65 | |||
| 66 | rpmbuild $(RPMOPTS) --define "_builddir $(objtree)" --target \ | 61 | rpmbuild $(RPMOPTS) --define "_builddir $(objtree)" --target \ |
| 67 | $(UTS_MACHINE) -bb $(objtree)/binkernel.spec | 62 | $(UTS_MACHINE) -bb $(objtree)/binkernel.spec |
| 68 | rm binkernel.spec | 63 | rm binkernel.spec |
diff --git a/scripts/package/builddeb b/scripts/package/builddeb index aad67000e4dd..0bc87473f68f 100755 --- a/scripts/package/builddeb +++ b/scripts/package/builddeb | |||
| @@ -92,12 +92,10 @@ else | |||
| 92 | fi | 92 | fi |
| 93 | sourcename=$KDEB_SOURCENAME | 93 | sourcename=$KDEB_SOURCENAME |
| 94 | tmpdir="$objtree/debian/tmp" | 94 | tmpdir="$objtree/debian/tmp" |
| 95 | fwdir="$objtree/debian/fwtmp" | ||
| 96 | kernel_headers_dir="$objtree/debian/hdrtmp" | 95 | kernel_headers_dir="$objtree/debian/hdrtmp" |
| 97 | libc_headers_dir="$objtree/debian/headertmp" | 96 | libc_headers_dir="$objtree/debian/headertmp" |
| 98 | dbg_dir="$objtree/debian/dbgtmp" | 97 | dbg_dir="$objtree/debian/dbgtmp" |
| 99 | packagename=linux-image-$version | 98 | packagename=linux-image-$version |
| 100 | fwpackagename=linux-firmware-image-$version | ||
| 101 | kernel_headers_packagename=linux-headers-$version | 99 | kernel_headers_packagename=linux-headers-$version |
| 102 | libc_headers_packagename=linux-libc-dev | 100 | libc_headers_packagename=linux-libc-dev |
| 103 | dbg_packagename=$packagename-dbg | 101 | dbg_packagename=$packagename-dbg |
| @@ -126,10 +124,9 @@ esac | |||
| 126 | BUILD_DEBUG="$(grep -s '^CONFIG_DEBUG_INFO=y' $KCONFIG_CONFIG || true)" | 124 | BUILD_DEBUG="$(grep -s '^CONFIG_DEBUG_INFO=y' $KCONFIG_CONFIG || true)" |
| 127 | 125 | ||
| 128 | # Setup the directory structure | 126 | # Setup the directory structure |
| 129 | rm -rf "$tmpdir" "$fwdir" "$kernel_headers_dir" "$libc_headers_dir" "$dbg_dir" $objtree/debian/files | 127 | rm -rf "$tmpdir" "$kernel_headers_dir" "$libc_headers_dir" "$dbg_dir" $objtree/debian/files |
| 130 | mkdir -m 755 -p "$tmpdir/DEBIAN" | 128 | mkdir -m 755 -p "$tmpdir/DEBIAN" |
| 131 | mkdir -p "$tmpdir/lib" "$tmpdir/boot" | 129 | mkdir -p "$tmpdir/lib" "$tmpdir/boot" |
| 132 | mkdir -p "$fwdir/lib/firmware/$version/" | ||
| 133 | mkdir -p "$kernel_headers_dir/lib/modules/$version/" | 130 | mkdir -p "$kernel_headers_dir/lib/modules/$version/" |
| 134 | 131 | ||
| 135 | # Build and install the kernel | 132 | # Build and install the kernel |
| @@ -306,7 +303,6 @@ else | |||
| 306 | cat <<EOF >> debian/control | 303 | cat <<EOF >> debian/control |
| 307 | 304 | ||
| 308 | Package: $packagename | 305 | Package: $packagename |
| 309 | Suggests: $fwpackagename | ||
| 310 | Architecture: any | 306 | Architecture: any |
| 311 | Description: Linux kernel, version $version | 307 | Description: Linux kernel, version $version |
| 312 | This package contains the Linux kernel, modules and corresponding other | 308 | This package contains the Linux kernel, modules and corresponding other |
| @@ -345,22 +341,6 @@ Description: Linux kernel headers for $KERNELRELEASE on \${kernel:debarch} | |||
| 345 | This is useful for people who need to build external modules | 341 | This is useful for people who need to build external modules |
| 346 | EOF | 342 | EOF |
| 347 | 343 | ||
| 348 | # Do we have firmware? Move it out of the way and build it into a package. | ||
| 349 | if [ -e "$tmpdir/lib/firmware" ]; then | ||
| 350 | mv "$tmpdir/lib/firmware"/* "$fwdir/lib/firmware/$version/" | ||
| 351 | rmdir "$tmpdir/lib/firmware" | ||
| 352 | |||
| 353 | cat <<EOF >> debian/control | ||
| 354 | |||
| 355 | Package: $fwpackagename | ||
| 356 | Architecture: all | ||
| 357 | Description: Linux kernel firmware, version $version | ||
| 358 | This package contains firmware from the Linux kernel, version $version. | ||
| 359 | EOF | ||
| 360 | |||
| 361 | create_package "$fwpackagename" "$fwdir" | ||
| 362 | fi | ||
| 363 | |||
| 364 | cat <<EOF >> debian/control | 344 | cat <<EOF >> debian/control |
| 365 | 345 | ||
| 366 | Package: $libc_headers_packagename | 346 | Package: $libc_headers_packagename |
diff --git a/scripts/package/mkspec b/scripts/package/mkspec index bb43f153fd8e..f47f17aae135 100755 --- a/scripts/package/mkspec +++ b/scripts/package/mkspec | |||
| @@ -27,9 +27,7 @@ __KERNELRELEASE=`echo $KERNELRELEASE | sed -e "s/-/_/g"` | |||
| 27 | echo "Name: kernel" | 27 | echo "Name: kernel" |
| 28 | echo "Summary: The Linux Kernel" | 28 | echo "Summary: The Linux Kernel" |
| 29 | echo "Version: $__KERNELRELEASE" | 29 | echo "Version: $__KERNELRELEASE" |
| 30 | # we need to determine the NEXT version number so that uname and | 30 | echo "Release: $(cat .version 2>/dev/null || echo 1)" |
| 31 | # rpm -q will agree | ||
| 32 | echo "Release: `. $srctree/scripts/mkversion`" | ||
| 33 | echo "License: GPL" | 31 | echo "License: GPL" |
| 34 | echo "Group: System Environment/Kernel" | 32 | echo "Group: System Environment/Kernel" |
| 35 | echo "Vendor: The Linux Community" | 33 | echo "Vendor: The Linux Community" |
| @@ -77,7 +75,7 @@ fi | |||
| 77 | echo "%build" | 75 | echo "%build" |
| 78 | 76 | ||
| 79 | if ! $PREBUILT; then | 77 | if ! $PREBUILT; then |
| 80 | echo "make clean && make %{?_smp_mflags}" | 78 | echo "make clean && make %{?_smp_mflags} KBUILD_BUILD_VERSION=%{release}" |
| 81 | echo "" | 79 | echo "" |
| 82 | fi | 80 | fi |
| 83 | 81 | ||
| @@ -88,11 +86,8 @@ echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules' | |||
| 88 | echo "%else" | 86 | echo "%else" |
| 89 | echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules' | 87 | echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules' |
| 90 | echo "%endif" | 88 | echo "%endif" |
| 91 | echo 'mkdir -p $RPM_BUILD_ROOT'"/lib/firmware/$KERNELRELEASE" | ||
| 92 | 89 | ||
| 93 | echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{?_smp_mflags} KBUILD_SRC= mod-fw= modules_install' | 90 | echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{?_smp_mflags} KBUILD_SRC= modules_install' |
| 94 | echo 'INSTALL_FW_PATH=$RPM_BUILD_ROOT'"/lib/firmware/$KERNELRELEASE" | ||
| 95 | echo 'make INSTALL_FW_PATH=$INSTALL_FW_PATH' firmware_install | ||
| 96 | echo "%ifarch ia64" | 91 | echo "%ifarch ia64" |
| 97 | echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/efi/vmlinuz-$KERNELRELEASE" | 92 | echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/efi/vmlinuz-$KERNELRELEASE" |
| 98 | echo 'ln -s '"efi/vmlinuz-$KERNELRELEASE" '$RPM_BUILD_ROOT'"/boot/" | 93 | echo 'ln -s '"efi/vmlinuz-$KERNELRELEASE" '$RPM_BUILD_ROOT'"/boot/" |
| @@ -119,7 +114,7 @@ if ! $PREBUILT; then | |||
| 119 | echo 'rm -f $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE/build" | 114 | echo 'rm -f $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE/build" |
| 120 | echo 'rm -f $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE/source" | 115 | echo 'rm -f $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE/source" |
| 121 | echo "mkdir -p "'$RPM_BUILD_ROOT'"/usr/src/kernels/$KERNELRELEASE" | 116 | echo "mkdir -p "'$RPM_BUILD_ROOT'"/usr/src/kernels/$KERNELRELEASE" |
| 122 | echo "EXCLUDES=\"$RCS_TAR_IGNORE --exclude .tmp_versions --exclude=*vmlinux* --exclude=*.o --exclude=*.ko --exclude=*.cmd --exclude=Documentation --exclude=firmware --exclude .config.old --exclude .missing-syscalls.d\"" | 117 | echo "EXCLUDES=\"$RCS_TAR_IGNORE --exclude .tmp_versions --exclude=*vmlinux* --exclude=*.o --exclude=*.ko --exclude=*.cmd --exclude=Documentation --exclude .config.old --exclude .missing-syscalls.d\"" |
| 123 | echo "tar "'$EXCLUDES'" -cf- . | (cd "'$RPM_BUILD_ROOT'"/usr/src/kernels/$KERNELRELEASE;tar xvf -)" | 118 | echo "tar "'$EXCLUDES'" -cf- . | (cd "'$RPM_BUILD_ROOT'"/usr/src/kernels/$KERNELRELEASE;tar xvf -)" |
| 124 | echo 'cd $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE" | 119 | echo 'cd $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE" |
| 125 | echo "ln -sf /usr/src/kernels/$KERNELRELEASE build" | 120 | echo "ln -sf /usr/src/kernels/$KERNELRELEASE build" |
| @@ -154,7 +149,6 @@ echo '%defattr (-, root, root)' | |||
| 154 | echo "/lib/modules/$KERNELRELEASE" | 149 | echo "/lib/modules/$KERNELRELEASE" |
| 155 | echo "%exclude /lib/modules/$KERNELRELEASE/build" | 150 | echo "%exclude /lib/modules/$KERNELRELEASE/build" |
| 156 | echo "%exclude /lib/modules/$KERNELRELEASE/source" | 151 | echo "%exclude /lib/modules/$KERNELRELEASE/source" |
| 157 | echo "/lib/firmware/$KERNELRELEASE" | ||
| 158 | echo "/boot/*" | 152 | echo "/boot/*" |
| 159 | echo "" | 153 | echo "" |
| 160 | echo "%files headers" | 154 | echo "%files headers" |
diff --git a/scripts/spelling.txt b/scripts/spelling.txt index 400ef35169c5..aa0cc49ad1ad 100644 --- a/scripts/spelling.txt +++ b/scripts/spelling.txt | |||
| @@ -53,6 +53,7 @@ acumulator||accumulator | |||
| 53 | adapater||adapter | 53 | adapater||adapter |
| 54 | addional||additional | 54 | addional||additional |
| 55 | additionaly||additionally | 55 | additionaly||additionally |
| 56 | additonal||additional | ||
| 56 | addres||address | 57 | addres||address |
| 57 | adddress||address | 58 | adddress||address |
| 58 | addreses||addresses | 59 | addreses||addresses |
| @@ -67,6 +68,8 @@ adviced||advised | |||
| 67 | afecting||affecting | 68 | afecting||affecting |
| 68 | againt||against | 69 | againt||against |
| 69 | agaist||against | 70 | agaist||against |
| 71 | aggreataon||aggregation | ||
| 72 | aggreation||aggregation | ||
| 70 | albumns||albums | 73 | albumns||albums |
| 71 | alegorical||allegorical | 74 | alegorical||allegorical |
| 72 | algined||aligned | 75 | algined||aligned |
| @@ -80,6 +83,8 @@ aligment||alignment | |||
| 80 | alignement||alignment | 83 | alignement||alignment |
| 81 | allign||align | 84 | allign||align |
| 82 | alligned||aligned | 85 | alligned||aligned |
| 86 | alllocate||allocate | ||
| 87 | alloated||allocated | ||
| 83 | allocatote||allocate | 88 | allocatote||allocate |
| 84 | allocatrd||allocated | 89 | allocatrd||allocated |
| 85 | allocte||allocate | 90 | allocte||allocate |
| @@ -171,6 +176,7 @@ availale||available | |||
| 171 | availavility||availability | 176 | availavility||availability |
| 172 | availble||available | 177 | availble||available |
| 173 | availiable||available | 178 | availiable||available |
| 179 | availible||available | ||
| 174 | avalable||available | 180 | avalable||available |
| 175 | avaliable||available | 181 | avaliable||available |
| 176 | aysnc||async | 182 | aysnc||async |
| @@ -203,6 +209,7 @@ broadcat||broadcast | |||
| 203 | cacluated||calculated | 209 | cacluated||calculated |
| 204 | caculation||calculation | 210 | caculation||calculation |
| 205 | calender||calendar | 211 | calender||calendar |
| 212 | calescing||coalescing | ||
| 206 | calle||called | 213 | calle||called |
| 207 | callibration||calibration | 214 | callibration||calibration |
| 208 | calucate||calculate | 215 | calucate||calculate |
| @@ -210,6 +217,7 @@ calulate||calculate | |||
| 210 | cancelation||cancellation | 217 | cancelation||cancellation |
| 211 | cancle||cancel | 218 | cancle||cancel |
| 212 | capabilites||capabilities | 219 | capabilites||capabilities |
| 220 | capabilty||capability | ||
| 213 | capabitilies||capabilities | 221 | capabitilies||capabilities |
| 214 | capatibilities||capabilities | 222 | capatibilities||capabilities |
| 215 | capapbilities||capabilities | 223 | capapbilities||capabilities |
| @@ -302,6 +310,7 @@ containts||contains | |||
| 302 | contaisn||contains | 310 | contaisn||contains |
| 303 | contant||contact | 311 | contant||contact |
| 304 | contence||contents | 312 | contence||contents |
| 313 | continious||continuous | ||
| 305 | continous||continuous | 314 | continous||continuous |
| 306 | continously||continuously | 315 | continously||continuously |
| 307 | continueing||continuing | 316 | continueing||continuing |
| @@ -393,6 +402,7 @@ differrence||difference | |||
| 393 | diffrent||different | 402 | diffrent||different |
| 394 | diffrentiate||differentiate | 403 | diffrentiate||differentiate |
| 395 | difinition||definition | 404 | difinition||definition |
| 405 | dimesions||dimensions | ||
| 396 | diplay||display | 406 | diplay||display |
| 397 | direectly||directly | 407 | direectly||directly |
| 398 | disassocation||disassociation | 408 | disassocation||disassociation |
| @@ -449,6 +459,7 @@ equiped||equipped | |||
| 449 | equivelant||equivalent | 459 | equivelant||equivalent |
| 450 | equivilant||equivalent | 460 | equivilant||equivalent |
| 451 | eror||error | 461 | eror||error |
| 462 | errorr||error | ||
| 452 | estbalishment||establishment | 463 | estbalishment||establishment |
| 453 | etsablishment||establishment | 464 | etsablishment||establishment |
| 454 | etsbalishment||establishment | 465 | etsbalishment||establishment |
| @@ -481,6 +492,7 @@ failied||failed | |||
| 481 | faillure||failure | 492 | faillure||failure |
| 482 | failue||failure | 493 | failue||failure |
| 483 | failuer||failure | 494 | failuer||failure |
| 495 | failng||failing | ||
| 484 | faireness||fairness | 496 | faireness||fairness |
| 485 | falied||failed | 497 | falied||failed |
| 486 | faliure||failure | 498 | faliure||failure |
| @@ -493,6 +505,7 @@ fetaure||feature | |||
| 493 | fetaures||features | 505 | fetaures||features |
| 494 | fileystem||filesystem | 506 | fileystem||filesystem |
| 495 | fimware||firmware | 507 | fimware||firmware |
| 508 | firware||firmware | ||
| 496 | finanize||finalize | 509 | finanize||finalize |
| 497 | findn||find | 510 | findn||find |
| 498 | finilizes||finalizes | 511 | finilizes||finalizes |
| @@ -502,6 +515,7 @@ folloing||following | |||
| 502 | followign||following | 515 | followign||following |
| 503 | followings||following | 516 | followings||following |
| 504 | follwing||following | 517 | follwing||following |
| 518 | fonud||found | ||
| 505 | forseeable||foreseeable | 519 | forseeable||foreseeable |
| 506 | forse||force | 520 | forse||force |
| 507 | fortan||fortran | 521 | fortan||fortran |
| @@ -532,6 +546,7 @@ grabing||grabbing | |||
| 532 | grahical||graphical | 546 | grahical||graphical |
| 533 | grahpical||graphical | 547 | grahpical||graphical |
| 534 | grapic||graphic | 548 | grapic||graphic |
| 549 | grranted||granted | ||
| 535 | guage||gauge | 550 | guage||gauge |
| 536 | guarenteed||guaranteed | 551 | guarenteed||guaranteed |
| 537 | guarentee||guarantee | 552 | guarentee||guarantee |
| @@ -543,6 +558,7 @@ happend||happened | |||
| 543 | harware||hardware | 558 | harware||hardware |
| 544 | heirarchically||hierarchically | 559 | heirarchically||hierarchically |
| 545 | helpfull||helpful | 560 | helpfull||helpful |
| 561 | hybernate||hibernate | ||
| 546 | hierachy||hierarchy | 562 | hierachy||hierarchy |
| 547 | hierarchie||hierarchy | 563 | hierarchie||hierarchy |
| 548 | howver||however | 564 | howver||however |
| @@ -565,16 +581,19 @@ implemenation||implementation | |||
| 565 | implementaiton||implementation | 581 | implementaiton||implementation |
| 566 | implementated||implemented | 582 | implementated||implemented |
| 567 | implemention||implementation | 583 | implemention||implementation |
| 584 | implementd||implemented | ||
| 568 | implemetation||implementation | 585 | implemetation||implementation |
| 569 | implemntation||implementation | 586 | implemntation||implementation |
| 570 | implentation||implementation | 587 | implentation||implementation |
| 571 | implmentation||implementation | 588 | implmentation||implementation |
| 572 | implmenting||implementing | 589 | implmenting||implementing |
| 590 | incative||inactive | ||
| 573 | incomming||incoming | 591 | incomming||incoming |
| 574 | incompatabilities||incompatibilities | 592 | incompatabilities||incompatibilities |
| 575 | incompatable||incompatible | 593 | incompatable||incompatible |
| 576 | inconsistant||inconsistent | 594 | inconsistant||inconsistent |
| 577 | increas||increase | 595 | increas||increase |
| 596 | incremeted||incremented | ||
| 578 | incrment||increment | 597 | incrment||increment |
| 579 | indendation||indentation | 598 | indendation||indentation |
| 580 | indended||intended | 599 | indended||intended |
| @@ -619,6 +638,7 @@ interger||integer | |||
| 619 | intermittant||intermittent | 638 | intermittant||intermittent |
| 620 | internel||internal | 639 | internel||internal |
| 621 | interoprability||interoperability | 640 | interoprability||interoperability |
| 641 | interuupt||interrupt | ||
| 622 | interrface||interface | 642 | interrface||interface |
| 623 | interrrupt||interrupt | 643 | interrrupt||interrupt |
| 624 | interrup||interrupt | 644 | interrup||interrupt |
| @@ -638,8 +658,10 @@ intrrupt||interrupt | |||
| 638 | intterrupt||interrupt | 658 | intterrupt||interrupt |
| 639 | intuative||intuitive | 659 | intuative||intuitive |
| 640 | invaid||invalid | 660 | invaid||invalid |
| 661 | invald||invalid | ||
| 641 | invalde||invalid | 662 | invalde||invalid |
| 642 | invalide||invalid | 663 | invalide||invalid |
| 664 | invalidiate||invalidate | ||
| 643 | invalud||invalid | 665 | invalud||invalid |
| 644 | invididual||individual | 666 | invididual||individual |
| 645 | invokation||invocation | 667 | invokation||invocation |
| @@ -713,6 +735,7 @@ misformed||malformed | |||
| 713 | mispelled||misspelled | 735 | mispelled||misspelled |
| 714 | mispelt||misspelt | 736 | mispelt||misspelt |
| 715 | mising||missing | 737 | mising||missing |
| 738 | mismactch||mismatch | ||
| 716 | missmanaged||mismanaged | 739 | missmanaged||mismanaged |
| 717 | missmatch||mismatch | 740 | missmatch||mismatch |
| 718 | miximum||maximum | 741 | miximum||maximum |
| @@ -731,6 +754,7 @@ multidimensionnal||multidimensional | |||
| 731 | multple||multiple | 754 | multple||multiple |
| 732 | mumber||number | 755 | mumber||number |
| 733 | muticast||multicast | 756 | muticast||multicast |
| 757 | mutilcast||multicast | ||
| 734 | mutiple||multiple | 758 | mutiple||multiple |
| 735 | mutli||multi | 759 | mutli||multi |
| 736 | nams||names | 760 | nams||names |
| @@ -834,6 +858,7 @@ posible||possible | |||
| 834 | positon||position | 858 | positon||position |
| 835 | possibilites||possibilities | 859 | possibilites||possibilities |
| 836 | powerfull||powerful | 860 | powerfull||powerful |
| 861 | preample||preamble | ||
| 837 | preapre||prepare | 862 | preapre||prepare |
| 838 | preceeded||preceded | 863 | preceeded||preceded |
| 839 | preceeding||preceding | 864 | preceeding||preceding |
| @@ -1059,6 +1084,7 @@ sturcture||structure | |||
| 1059 | subdirectoires||subdirectories | 1084 | subdirectoires||subdirectories |
| 1060 | suble||subtle | 1085 | suble||subtle |
| 1061 | substract||subtract | 1086 | substract||subtract |
| 1087 | submition||submission | ||
| 1062 | succesfully||successfully | 1088 | succesfully||successfully |
| 1063 | succesful||successful | 1089 | succesful||successful |
| 1064 | successed||succeeded | 1090 | successed||succeeded |
| @@ -1078,6 +1104,7 @@ suppoted||supported | |||
| 1078 | suppported||supported | 1104 | suppported||supported |
| 1079 | suppport||support | 1105 | suppport||support |
| 1080 | supress||suppress | 1106 | supress||suppress |
| 1107 | surpressed||suppressed | ||
| 1081 | surpresses||suppresses | 1108 | surpresses||suppresses |
| 1082 | susbsystem||subsystem | 1109 | susbsystem||subsystem |
| 1083 | suspeneded||suspended | 1110 | suspeneded||suspended |
| @@ -1091,6 +1118,7 @@ swithced||switched | |||
| 1091 | swithcing||switching | 1118 | swithcing||switching |
| 1092 | swithed||switched | 1119 | swithed||switched |
| 1093 | swithing||switching | 1120 | swithing||switching |
| 1121 | swtich||switch | ||
| 1094 | symetric||symmetric | 1122 | symetric||symmetric |
| 1095 | synax||syntax | 1123 | synax||syntax |
| 1096 | synchonized||synchronized | 1124 | synchonized||synchronized |
| @@ -1111,7 +1139,9 @@ therfore||therefore | |||
| 1111 | thier||their | 1139 | thier||their |
| 1112 | threds||threads | 1140 | threds||threads |
| 1113 | threshhold||threshold | 1141 | threshhold||threshold |
| 1142 | thresold||threshold | ||
| 1114 | throught||through | 1143 | throught||through |
| 1144 | troughput||throughput | ||
| 1115 | thses||these | 1145 | thses||these |
| 1116 | tiggered||triggered | 1146 | tiggered||triggered |
| 1117 | tipically||typically | 1147 | tipically||typically |
| @@ -1120,6 +1150,7 @@ tmis||this | |||
| 1120 | torerable||tolerable | 1150 | torerable||tolerable |
| 1121 | tramsmitted||transmitted | 1151 | tramsmitted||transmitted |
| 1122 | tramsmit||transmit | 1152 | tramsmit||transmit |
| 1153 | tranasction||transaction | ||
| 1123 | tranfer||transfer | 1154 | tranfer||transfer |
| 1124 | transciever||transceiver | 1155 | transciever||transceiver |
| 1125 | transferd||transferred | 1156 | transferd||transferred |
| @@ -1133,6 +1164,7 @@ trasmission||transmission | |||
| 1133 | treshold||threshold | 1164 | treshold||threshold |
| 1134 | trigerring||triggering | 1165 | trigerring||triggering |
| 1135 | trun||turn | 1166 | trun||turn |
| 1167 | tunning||tuning | ||
| 1136 | ture||true | 1168 | ture||true |
| 1137 | tyep||type | 1169 | tyep||type |
| 1138 | udpate||update | 1170 | udpate||update |
| @@ -1199,6 +1231,7 @@ visiters||visitors | |||
| 1199 | vitual||virtual | 1231 | vitual||virtual |
| 1200 | wakeus||wakeups | 1232 | wakeus||wakeups |
| 1201 | wating||waiting | 1233 | wating||waiting |
| 1234 | wiat||wait | ||
| 1202 | wether||whether | 1235 | wether||whether |
| 1203 | whataver||whatever | 1236 | whataver||whatever |
| 1204 | whcih||which | 1237 | whcih||which |
