code
stringlengths
3
1.03M
repo_name
stringlengths
5
84
path
stringlengths
4
233
language
stringclasses
1 value
license
stringclasses
15 values
size
int32
3
1.03M
@ECHO OFF SET ThisScriptsDirectory=%~dp0 SET PowerShellScriptPath=%ThisScriptsDirectory%%1 PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& {Start-Process PowerShell -ArgumentList '-NoProfile -ExecutionPolicy Bypass -File ""%PowerShellScriptPath%""' -Verb RunAs}";
shaleh/dark-salvation
psrunas.bat
bat
mit
274
@ECHO OFF SET CODEGENTOOL="tools\codegen\protobuf\google\protoc.exe" FOR %%i IN (Tests\Redola.Rpc.TestContracts\*.proto) DO (CALL :codegen %%i) GOTO :done :codegen SET protofile=%1 ECHO %CODEGENTOOL% --python_out=. %protofile% %CODEGENTOOL% --python_out=. %protofile% GOTO :EOF :done ECHO DONE!
gaochundong/Redola
tools/protobuf-codegen-python.bat
bat
mit
308
@echo off REM All an Android device to connect by ADB. Run this command once your device has been connected by USB. Then you can connect to it by its IP address. setlocal enabledelayedexpansion call "%~dp0\choose_device.bat" if not exist "%~dp0\chosendevice.temp" ( echo "No device was chosen. Aborting." exit /b ) set /p chosendevice=< "%~dp0\chosendevice.temp" del "%~dp0\chosendevice.temp" echo Setting TCPIP to 5555 for !chosendevice! adb -s "!chosendevice!" tcpip 5555 > "%~dp0\wifi_adb.temp" set /p result=< "%~dp0\wifi_adb.temp" del "%~dp0\wifi_adb.temp" echo RESULT IS : !result! timeout 2 goto :cleanup
DavidEdwards/AndroidDevTools
wifi_adb.bat
bat
mit
645
@echo off rem echo check param values - for _set_param.bat rem local val set rtdir=%~dp0 set tsfm=_set_param.bat set elvl=0 set debug_on=1 rem 1 :call %rtdir%%tsfm% -nm UbuntuTest -iso my-ubuntu-preseed.iso rem 2 :call %rtdir%%tsfm% -mn ubuntu -iso dummy-ubuntu.iso -l -nm myUbuntu rem 3 :call %rtdir%%tsfm% -iso my-ubuntu-preseed.iso rem 4 :call %rtdir%%tsfm% call %rtdir%%tsfm% -d %debug_on% set kickshell=createbox.bat set isonm=ubuntu14.04-preseed.iso call %rtdir%%tsfm% -kickrt %rtdir% -iso %isonm% -d %debug_on% rem echo In stub rem echo BOXNM=%BOXNM% rem echo ISONM=%ISONM% rem echo. rem echo fdef=%fdef% rem echo. rem echo e-level=%elvl%
kotaro-dev/ubuntu-installer
unit/_stub_sprm.bat
bat
mit
692
@echo off @set SDL_STDIO_REDIRECT=0 if exist "%USERPROFILE%\.xboot\sdcard.img" goto RunQemu mkdir "%USERPROFILE%\.xboot" unzip.exe sdcard.zip -d "%USERPROFILE%\.xboot" :RunQemu qemu-system-arm.exe -M realview-pbx-a9 -m 256M -smp 4 -name "ARM RealView Platform Baseboard Explore for Cortex-A9" -rtc base=localtime -serial stdio -sd "%USERPROFILE%\.xboot\sdcard.img" -net nic,netdev=net0,macaddr=88:88:88:11:22:33,model=lan9118 -netdev user,id=net0,hostfwd=tcp::8080-:80 -kernel ..\..\..\output\xboot
xboot/xboot
tools/qemu-system/windows/realview-run.bat
bat
mit
518
setlocal set EXAMPDIR=%~d0%~p0 if exist %EXAMPDIR%\..\..\..\platform\win64x86. ( set PLATFORM=%EXAMPDIR%\..\..\..\platform\win64x86 ) else ( set PLATFORM=%EXAMPDIR%\..\..\..\platform\win32x86 ) java -d64 -Djava.library.path="%PLATFORM%\bin;c:\windows" -classpath "%PLATFORM%\bin\mosek.jar;examples.jar" com.mosek.fusion.examples.%1
edljk/Mosek.jl
deps/src/mosek/7/tools/examples/fusion/java/run.bat
bat
mit
353
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pydhs.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pydhs.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
00krishna-tools/pydhs
docs/make.bat
bat
mit
6,457
#!/bin/sh rem (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved. rem rem This file contains confidential and proprietary information rem of Xilinx, Inc. and is protected under U.S. and rem international copyright and other intellectual property rem laws. rem rem DISCLAIMER rem This disclaimer is not a license and does not grant any rem rights to the materials distributed herewith. Except as rem otherwise provided in a valid license issued to you by rem Xilinx, and to the maximum extent permitted by applicable rem law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND rem WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES rem AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING rem BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- rem INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and rem (2) Xilinx shall not be liable (whether in contract or tort, rem including negligence, or under any other theory of rem liability) for any loss or damage of any kind or nature rem related to, arising under or in connection with these rem materials, including for any direct, or any indirect, rem special, incidental, or consequential loss or damage rem (including loss of data, profits, goodwill, or any type of rem loss or damage suffered as a result of any action brought rem by a third party) even if such damage or loss was rem reasonably foreseeable or Xilinx had been advised of the rem possibility of the same. rem rem CRITICAL APPLICATIONS rem Xilinx products are not designed or intended to be fail- rem safe, or for use in any application requiring fail-safe rem performance, such as life-support or safety devices or rem systems, Class III medical devices, nuclear facilities, rem applications related to the deployment of airbags, or any rem other applications that could lead to death, personal rem injury, or severe property or environmental damage rem (individually and collectively, "Critical rem Applications"). Customer assumes the sole risk and rem liability of any use of Xilinx products in Critical rem Applications, subject only to applicable laws and rem regulations governing limitations on product liability. rem rem THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS rem PART OF THIS FILE AT ALL TIMES. rem ----------------------------------------------------------------------------- rem Script to synthesize and implement the Coregen FIFO Generator rem ----------------------------------------------------------------------------- rmdir /S /Q results mkdir results cd results copy ..\..\..\fifo_138x512.ngc . planAhead -mode batch -source ..\planAhead_rdn.tcl
kevintownsend/R3
coregen/fifo_138x512/implement/planAhead_rdn.bat
bat
mit
2,634
copy ..\style\base.css . saxon dyn.xml ../style/module.xsl cd functions cd evaluate copy ..\..\..\style\base.css . saxon dyn.evaluate.xml ../../../style/function.xsl wzzip -P -o dyn.evaluate.zip @dyn.evaluate.package.txt wzzip -P -o dyn.evaluate.use-cases.zip @dyn.evaluate.use-cases.txt cd .. cd .. cd functions cd min copy ..\..\..\style\base.css . saxon dyn.min.xml ../../../style/function.xsl wzzip -P -o dyn.min.zip @dyn.min.package.txt wzzip -P -o dyn.min.use-cases.zip @dyn.min.use-cases.txt cd .. cd .. cd functions cd max copy ..\..\..\style\base.css . saxon dyn.max.xml ../../../style/function.xsl wzzip -P -o dyn.max.zip @dyn.max.package.txt wzzip -P -o dyn.max.use-cases.zip @dyn.max.use-cases.txt cd .. cd .. cd functions cd sum copy ..\..\..\style\base.css . saxon dyn.sum.xml ../../../style/function.xsl wzzip -P -o dyn.sum.zip @dyn.sum.package.txt wzzip -P -o dyn.sum.use-cases.zip @dyn.sum.use-cases.txt cd .. cd .. cd functions cd map copy ..\..\..\style\base.css . saxon dyn.map.xml ../../../style/function.xsl wzzip -P -o dyn.map.zip @dyn.map.package.txt wzzip -P -o dyn.map.use-cases.zip @dyn.map.use-cases.txt cd .. cd .. cd functions cd closure copy ..\..\..\style\base.css . saxon dyn.closure.xml ../../../style/function.xsl wzzip -P -o dyn.closure.zip @dyn.closure.package.txt wzzip -P -o dyn.closure.use-cases.zip @dyn.closure.use-cases.txt cd .. cd .. wzzip -P -o dyn.zip @dyn.package.txt cd .. saxon modules.xml style/home.xsl saxon modules.xml style/package.xsl wzzip -P -o all-exslt.zip @package.txt saxon modules.xml style/xml-package.xsl wzzip -P -o exslt.zip @xml-package.txt cd dyn
exslt/exslt.github.io
dyn/update.bat
bat
mit
1,616
sc create WinLIRC-Transmitter binPath ="WinLIRC.Transmitter.Daemon.exe"
parameshg/WinLIRC.NET
WinLIRC.Setup/Batch/Install Transmitter.bat
bat
mit
71
REM ×¢ÊÍ @echo off set ocd=%cd% cd /d %~dp0 cd .. echo ##### Ìáʾ£º¶ÁÈ¡ÅäÖÃÎļþ ##### if exist ..\config.bat call ..\config.bat if exist ..\..\config.bat call ..\..\config.bat if exist ..\..\..\config.bat call ..\..\..\config.bat if exist ..\..\..\..\config.bat call ..\..\..\..\config.bat if exist ..\..\..\..\..\config.bat call ..\..\..\..\..\config.bat if exist ..\..\..\..\..\..\config.bat call ..\..\..\..\..\..\config.bat if exist ..\..\..\..\..\..\..\config.bat call ..\..\..\..\..\..\..\config.bat echo ##### Ìáʾ£º±äÁ¿ÅäÖà ##### SET cocos2dx_sln=%DXM_COCOS_PATH%\build\cocos2d-win32.sln SET DXM_PREBUILT=%cd%\prebuilt SET DXM_PLATFORM=win_x86 echo ##### Ìáʾ£º´ò²¹¶¡ ##### rem rmdir /s/Q %DXM_COCOS_PATH%\extensions\spine rem xcopy /y/s patch\* %DXM_COCOS_PATH%\ echo ##### Ìáʾ£º±àÒë Cocos ##### cd %DXM_COCOS_PATH% BuildConsole.exe %cocos2dx_sln% /prj=libluacocos2d /Silent /Cfg="Debug|WIN32,Release|WIN32" BuildConsole.exe %cocos2dx_sln% /prj=libsimulator /Silent /Cfg="Debug|WIN32,Release|WIN32" echo ##### Ìáʾ£º°²×° Cocos ##### rem lib&dll xcopy /y/s build\Release.win32\*.lib %DXM_PREBUILT%\lib\%DXM_PLATFORM%\release\ xcopy /y/s build\Debug.win32\*.lib %DXM_PREBUILT%\lib\%DXM_PLATFORM%\debug\ xcopy /y/s build\Release.win32\*.dll %DXM_PREBUILT%\bin\%DXM_PLATFORM%\release\ xcopy /y/s build\Debug.win32\*.dll %DXM_PREBUILT%\bin\%DXM_PLATFORM%\debug\ rem cocos xcopy /y/s cocos\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s cocos\*.inl %DXM_PREBUILT%\inc\cocos\ xcopy /y/s cocos\base\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s cocos\storage\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s cocos\audio\include\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s cocos\network\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s cocos\editor-support\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s cocos\platform\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s cocos\platform\desktop\*.h %DXM_PREBUILT%\inc\cocos\ rem extensions xcopy /y/s extensions\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s extensions\*.h %DXM_PREBUILT%\inc\cocos\extensions\ rem external xcopy /y/s external\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s external\chipmunk\include\chipmunk\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s external\curl\include\win32\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s external\websockets\include\win32\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s external\glfw3\include\win32\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s external\win32-specific\gles\include\OGLES\GL\*.h %DXM_PREBUILT%\inc\cocos\GL\ xcopy /y/s external\freetype2\include\win32\freetype2\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s external\freetype2\include\win32\*.h %DXM_PREBUILT%\inc\cocos\ rem lua xcopy /y/s cocos\scripting\lua-bindings\auto\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s cocos\scripting\lua-bindings\manual\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s cocos\scripting\lua-bindings\auto\*.hpp %DXM_PREBUILT%\inc\cocos\ xcopy /y/s cocos\scripting\lua-bindings\manual\*.hpp %DXM_PREBUILT%\inc\cocos\ xcopy /y/s cocos\audio\include\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s external\lua\lua\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s external\lua\tolua\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s external\lua\luajit\include\*.h %DXM_PREBUILT%\inc\cocos\ rem simulator xcopy /y/s tools\simulator\libsimulator\lib\*.h %DXM_PREBUILT%\inc\cocos\ xcopy /y/s tools\simulator\libsimulator\lib\protobuf-lite\*.h %DXM_PREBUILT%\inc\cocos\ cd /d %~dp0 cd .. setlocal enabledelayedexpansion call :GET_PATH_NAME %cd% set project=%PATH_NAME% if not exist proj.win32 md proj.win32 cd proj.win32 echo #####Ìáʾ£º¿ªÊ¼¹¹½¨##### cmake -DDXM_CMAKE_PLATFORM=WIN32 .. echo %errorlevel% if %errorlevel% neq 0 goto :cmEnd cmake -DDXM_CMAKE_PLATFORM=WIN32 .. echo %errorlevel% if %errorlevel% neq 0 goto :cmEnd echo #####Ìáʾ£º¹¹½¨½áÊø##### echo #####Ìáʾ£º¿ªÊ¼±àÒë##### rem BuildConsole.exe %project%.sln /prj=ALL_BUILD /Silent /OpenMonitor /Cfg="Debug|WIN32,Release|WIN32" rem BuildConsole.exe %project%.sln /prj=ALL_BUILD /Silent /Cfg="Debug|WIN32,Release|WIN32" rem if %errorlevel% neq 0 goto :cmEnd echo #####Ìáʾ£º±àÒë½áÊø##### echo #####Ìáʾ£º¿ªÊ¼°²×°##### cmake -DBUILD_TYPE="Debug" -P cmake_install.cmake if %errorlevel% neq 0 goto :cmEnd cmake -DBUILD_TYPE="Release" -P cmake_install.cmake if %errorlevel% neq 0 goto :cmEnd echo #####Ìáʾ£º°²×°½áÊø##### goto cmDone :cmEnd echo setup failed pause exit :cmDone cmake -P dxm_cmake_compile_succeeded.cmake cmake -P dxm_cmake_install_succeeded.cmake cd /d %ocd% goto :eof :GET_PATH_NAME set PATH_NAME=%~n1 :eof
dxmgame/dxm-cocos
src/oslibs/cocos/cocos-lua/build/setup.win32.bat
bat
mit
4,626
@%~dp0\busybox.exe yes %*
witwall/busybox-w32
yes.bat
bat
gpl-2.0
26
cmd_sound/soc/fsl/snd-soc-imx-sgtl5000.o := arm-poky-linux-gnueabi-ld -EL -r -o sound/soc/fsl/snd-soc-imx-sgtl5000.o sound/soc/fsl/imx-sgtl5000.o
heyoufei2/yocto3.14.38_kernel
sound/soc/fsl/.snd-soc-imx-sgtl5000.o.cmd
bat
gpl-2.0
150
cmd_sound/core/built-in.o := ld -m elf_x86_64 -r -o sound/core/built-in.o sound/core/snd.o sound/core/snd-hwdep.o sound/core/snd-timer.o sound/core/snd-hrtimer.o sound/core/snd-pcm.o sound/core/snd-page-alloc.o sound/core/oss/built-in.o sound/core/seq/built-in.o
Existed/kernel-2.6.35.14
sound/core/.built-in.o.cmd
bat
gpl-2.0
267
cmd_arch/arm/kernel/built-in.o := /home/adam/android/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ld -EL -r -o arch/arm/kernel/built-in.o arch/arm/kernel/compat.o arch/arm/kernel/elf.o arch/arm/kernel/entry-armv.o arch/arm/kernel/entry-common.o arch/arm/kernel/irq.o arch/arm/kernel/process.o arch/arm/kernel/ptrace.o arch/arm/kernel/return_address.o arch/arm/kernel/setup.o arch/arm/kernel/signal.o arch/arm/kernel/sys_arm.o arch/arm/kernel/stacktrace.o arch/arm/kernel/time.o arch/arm/kernel/traps.o arch/arm/kernel/armksyms.o arch/arm/kernel/module.o arch/arm/kernel/sys_oabi-compat.o arch/arm/kernel/unwind.o arch/arm/kernel/io.o
damageless/linux-kernel-ican-tab
arch/arm/kernel/.built-in.o.cmd
bat
gpl-2.0
668
cmd_lib/ts_kmp.o := arm-eabi-gcc -Wp,-MD,lib/.ts_kmp.o.d -nostdinc -isystem /usr/bin/../lib/gcc/arm-eabi/4.5.0/include -Iinclude -I/home/jacob/source/wildfire-kernel/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=6 -march=armv6 -mtune=arm1136j-s -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -fno-dwarf2-cfi-asm -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(ts_kmp)" -D"KBUILD_MODNAME=KBUILD_STR(ts_kmp)" -c -o lib/ts_kmp.o lib/ts_kmp.c deps_lib/ts_kmp.o := \ lib/ts_kmp.c \ include/linux/module.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ include/linux/posix_types.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/posix_types.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/processor.h \ $(wildcard include/config/mmu.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/hwcap.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/discontigmem.h) \ include/linux/const.h \ arch/arm/mach-msm/include/mach/memory.h \ $(wildcard include/config/arch/qsd8x50.h) \ $(wildcard include/config/arch/msm7225.h) \ $(wildcard include/config/arch/msm7200a.h) \ $(wildcard include/config/arch/msm7201a.h) \ $(wildcard include/config/arch/msm7x00a.h) \ $(wildcard include/config/mach/desirec.h) \ $(wildcard include/config/arch/msm7227.h) \ $(wildcard include/config/arch/msm/arm11.h) \ $(wildcard include/config/cache/l2x0.h) \ $(wildcard include/config/arch/msm/scorpion.h) \ include/asm/mach-types.h \ $(wildcard include/config/arch/ebsa110.h) \ $(wildcard include/config/arch/rpc.h) \ $(wildcard include/config/arch/nexuspci.h) \ $(wildcard include/config/arch/ebsa285.h) \ $(wildcard include/config/arch/netwinder.h) \ $(wildcard include/config/arch/cats.h) \ $(wildcard include/config/arch/tbox.h) \ $(wildcard include/config/arch/co285.h) \ $(wildcard include/config/arch/clps7110.h) \ $(wildcard include/config/arch/arc.h) \ $(wildcard include/config/arch/a5k.h) \ $(wildcard include/config/arch/etoile.h) \ $(wildcard include/config/arch/lacie/nas.h) \ $(wildcard include/config/arch/clps7500.h) \ $(wildcard include/config/arch/shark.h) \ $(wildcard include/config/sa1100/brutus.h) \ $(wildcard include/config/arch/personal/server.h) \ $(wildcard include/config/sa1100/itsy.h) \ $(wildcard include/config/arch/l7200.h) \ $(wildcard include/config/sa1100/pleb.h) \ $(wildcard include/config/arch/integrator.h) \ $(wildcard include/config/sa1100/h3600.h) \ $(wildcard include/config/arch/ixp1200.h) \ $(wildcard include/config/arch/p720t.h) \ $(wildcard include/config/sa1100/assabet.h) \ $(wildcard include/config/sa1100/victor.h) \ $(wildcard include/config/sa1100/lart.h) \ $(wildcard include/config/sa1100/ranger.h) \ $(wildcard include/config/sa1100/graphicsclient.h) \ $(wildcard include/config/sa1100/xp860.h) \ $(wildcard include/config/sa1100/cerf.h) \ $(wildcard include/config/sa1100/nanoengine.h) \ $(wildcard include/config/sa1100/fpic.h) \ $(wildcard include/config/sa1100/extenex1.h) \ $(wildcard include/config/sa1100/sherman.h) \ $(wildcard include/config/sa1100/accelent.h) \ $(wildcard include/config/arch/l7200/accelent.h) \ $(wildcard include/config/sa1100/netport.h) \ $(wildcard include/config/sa1100/pangolin.h) \ $(wildcard include/config/sa1100/yopy.h) \ $(wildcard include/config/sa1100/coolidge.h) \ $(wildcard include/config/sa1100/huw/webpanel.h) \ $(wildcard include/config/arch/spotme.h) \ $(wildcard include/config/arch/freebird.h) \ $(wildcard include/config/arch/ti925.h) \ $(wildcard include/config/arch/riscstation.h) \ $(wildcard include/config/sa1100/cavy.h) \ $(wildcard include/config/sa1100/jornada720.h) \ $(wildcard include/config/sa1100/omnimeter.h) \ $(wildcard include/config/arch/edb7211.h) \ $(wildcard include/config/sa1100/citygo.h) \ $(wildcard include/config/sa1100/pfs168.h) \ $(wildcard include/config/sa1100/spot.h) \ $(wildcard include/config/sa1100/flexanet.h) \ $(wildcard include/config/arch/webpal.h) \ $(wildcard include/config/sa1100/linpda.h) \ $(wildcard include/config/arch/anakin.h) \ $(wildcard include/config/sa1100/mvi.h) \ $(wildcard include/config/sa1100/jupiter.h) \ $(wildcard include/config/arch/psionw.h) \ $(wildcard include/config/sa1100/aln.h) \ $(wildcard include/config/arch/camelot.h) \ $(wildcard include/config/sa1100/gds2200.h) \ $(wildcard include/config/sa1100/psion/series7.h) \ $(wildcard include/config/sa1100/xfile.h) \ $(wildcard include/config/arch/accelent/ep9312.h) \ $(wildcard include/config/arch/ic200.h) \ $(wildcard include/config/sa1100/creditlart.h) \ $(wildcard include/config/sa1100/htm.h) \ $(wildcard include/config/arch/iq80310.h) \ $(wildcard include/config/sa1100/freebot.h) \ $(wildcard include/config/arch/entel.h) \ $(wildcard include/config/arch/enp3510.h) \ $(wildcard include/config/sa1100/trizeps.h) \ $(wildcard include/config/sa1100/nesa.h) \ $(wildcard include/config/arch/venus.h) \ $(wildcard include/config/arch/tardis.h) \ $(wildcard include/config/arch/mercury.h) \ $(wildcard include/config/sa1100/empeg.h) \ $(wildcard include/config/arch/i80200fcc.h) \ $(wildcard include/config/sa1100/itt/cpb.h) \ $(wildcard include/config/sa1100/svc.h) \ $(wildcard include/config/sa1100/alpha2.h) \ $(wildcard include/config/sa1100/alpha1.h) \ $(wildcard include/config/arch/netarm.h) \ $(wildcard include/config/sa1100/simpad.h) \ $(wildcard include/config/arch/pda1.h) \ $(wildcard include/config/arch/lubbock.h) \ $(wildcard include/config/arch/aniko.h) \ $(wildcard include/config/arch/clep7212.h) \ $(wildcard include/config/arch/cs89712.h) \ $(wildcard include/config/sa1100/weararm.h) \ $(wildcard include/config/sa1100/possio/px.h) \ $(wildcard include/config/sa1100/sidearm.h) \ $(wildcard include/config/sa1100/stork.h) \ $(wildcard include/config/sa1100/shannon.h) \ $(wildcard include/config/arch/ace.h) \ $(wildcard include/config/sa1100/ballyarm.h) \ $(wildcard include/config/sa1100/simputer.h) \ $(wildcard include/config/sa1100/nexterm.h) \ $(wildcard include/config/sa1100/sa1100/elf.h) \ $(wildcard include/config/sa1100/gator.h) \ $(wildcard include/config/arch/granite.h) \ $(wildcard include/config/sa1100/consus.h) \ $(wildcard include/config/arch/aaed2000.h) \ $(wildcard include/config/arch/cdb89712.h) \ $(wildcard include/config/sa1100/graphicsmaster.h) \ $(wildcard include/config/sa1100/adsbitsy.h) \ $(wildcard include/config/arch/pxa/idp.h) \ $(wildcard include/config/arch/plce.h) \ $(wildcard include/config/sa1100/pt/system3.h) \ $(wildcard include/config/arch/medalb.h) \ $(wildcard include/config/arch/eagle.h) \ $(wildcard include/config/arch/dsc21.h) \ $(wildcard include/config/arch/dsc24.h) \ $(wildcard include/config/arch/ti5472.h) \ $(wildcard include/config/arch/autcpu12.h) \ $(wildcard include/config/arch/uengine.h) \ $(wildcard include/config/sa1100/bluestem.h) \ $(wildcard include/config/arch/xingu8.h) \ $(wildcard include/config/arch/bushstb.h) \ $(wildcard include/config/sa1100/epsilon1.h) \ $(wildcard include/config/sa1100/balloon.h) \ $(wildcard include/config/arch/puppy.h) \ $(wildcard include/config/sa1100/elroy.h) \ $(wildcard include/config/arch/gms720.h) \ $(wildcard include/config/arch/s24x.h) \ $(wildcard include/config/arch/jtel/clep7312.h) \ $(wildcard include/config/arch/cx821xx.h) \ $(wildcard include/config/arch/edb7312.h) \ $(wildcard include/config/sa1100/bsa1110.h) \ $(wildcard include/config/arch/powerpin.h) \ $(wildcard include/config/arch/openarm.h) \ $(wildcard include/config/sa1100/whitechapel.h) \ $(wildcard include/config/sa1100/h3100.h) \ $(wildcard include/config/sa1100/h3800.h) \ $(wildcard include/config/arch/blue/v1.h) \ $(wildcard include/config/arch/pxa/cerf.h) \ $(wildcard include/config/arch/arm7tevb.h) \ $(wildcard include/config/sa1100/d7400.h) \ $(wildcard include/config/arch/piranha.h) \ $(wildcard include/config/sa1100/sbcamelot.h) \ $(wildcard include/config/sa1100/kings.h) \ $(wildcard include/config/arch/smdk2400.h) \ $(wildcard include/config/sa1100/collie.h) \ $(wildcard include/config/arch/idr.h) \ $(wildcard include/config/sa1100/badge4.h) \ $(wildcard include/config/arch/webnet.h) \ $(wildcard include/config/sa1100/d7300.h) \ $(wildcard include/config/sa1100/cep.h) \ $(wildcard include/config/arch/fortunet.h) \ $(wildcard include/config/arch/vc547x.h) \ $(wildcard include/config/sa1100/filewalker.h) \ $(wildcard include/config/sa1100/netgateway.h) \ $(wildcard include/config/sa1100/symbol2800.h) \ $(wildcard include/config/sa1100/suns.h) \ $(wildcard include/config/sa1100/frodo.h) \ $(wildcard include/config/sa1100/mach/tyte/ms301.h) \ $(wildcard include/config/arch/mx1ads.h) \ $(wildcard include/config/arch/h7201.h) \ $(wildcard include/config/arch/h7202.h) \ $(wildcard include/config/arch/amico.h) \ $(wildcard include/config/sa1100/iam.h) \ $(wildcard include/config/sa1100/tt530.h) \ $(wildcard include/config/arch/sam2400.h) \ $(wildcard include/config/sa1100/jornada56x.h) \ $(wildcard include/config/sa1100/active.h) \ $(wildcard include/config/arch/iq80321.h) \ $(wildcard include/config/sa1100/wid.h) \ $(wildcard include/config/arch/sabinal.h) \ $(wildcard include/config/arch/ixp425/matacumbe.h) \ $(wildcard include/config/sa1100/miniprint.h) \ $(wildcard include/config/arch/adm510x.h) \ $(wildcard include/config/sa1100/svs200.h) \ $(wildcard include/config/arch/atg/tcu.h) \ $(wildcard include/config/sa1100/jornada820.h) \ $(wildcard include/config/arch/s3c44b0.h) \ $(wildcard include/config/arch/margis2.h) \ $(wildcard include/config/arch/ks8695.h) \ $(wildcard include/config/arch/brh.h) \ $(wildcard include/config/arch/s3c2410.h) \ $(wildcard include/config/arch/possio/px30.h) \ $(wildcard include/config/arch/s3c2800.h) \ $(wildcard include/config/sa1100/fleetwood.h) \ $(wildcard include/config/arch/omaha.h) \ $(wildcard include/config/arch/ta7.h) \ $(wildcard include/config/sa1100/nova.h) \ $(wildcard include/config/arch/hmk.h) \ $(wildcard include/config/arch/karo.h) \ $(wildcard include/config/sa1100/fester.h) \ $(wildcard include/config/arch/gpi.h) \ $(wildcard include/config/arch/smdk2410.h) \ $(wildcard include/config/arch/i519.h) \ $(wildcard include/config/sa1100/nexio.h) \ $(wildcard include/config/sa1100/bitbox.h) \ $(wildcard include/config/sa1100/g200.h) \ $(wildcard include/config/sa1100/gill.h) \ $(wildcard include/config/arch/pxa/mercury.h) \ $(wildcard include/config/arch/ceiva.h) \ $(wildcard include/config/sa1100/fret.h) \ $(wildcard include/config/sa1100/emailphone.h) \ $(wildcard include/config/arch/h3900.h) \ $(wildcard include/config/arch/pxa1.h) \ $(wildcard include/config/sa1100/koan369.h) \ $(wildcard include/config/arch/cogent.h) \ $(wildcard include/config/arch/esl/simputer.h) \ $(wildcard include/config/arch/esl/simputer/clr.h) \ $(wildcard include/config/arch/esl/simputer/bw.h) \ $(wildcard include/config/arch/hhp/cradle.h) \ $(wildcard include/config/arch/he500.h) \ $(wildcard include/config/sa1100/inhandelf2.h) \ $(wildcard include/config/sa1100/inhandftip.h) \ $(wildcard include/config/sa1100/dnp1110.h) \ $(wildcard include/config/sa1100/pnp1110.h) \ $(wildcard include/config/arch/csb226.h) \ $(wildcard include/config/sa1100/arnold.h) \ $(wildcard include/config/mach/voiceblue.h) \ $(wildcard include/config/arch/jz8028.h) \ $(wildcard include/config/arch/h5400.h) \ $(wildcard include/config/sa1100/forte.h) \ $(wildcard include/config/sa1100/acam.h) \ $(wildcard include/config/sa1100/abox.h) \ $(wildcard include/config/arch/atmel.h) \ $(wildcard include/config/arch/sitsang.h) \ $(wildcard include/config/sa1100/cpu1110lcdnet.h) \ $(wildcard include/config/arch/mpl/vcma9.h) \ $(wildcard include/config/arch/opus/a1.h) \ $(wildcard include/config/arch/daytona.h) \ $(wildcard include/config/sa1100/killbear.h) \ $(wildcard include/config/arch/yoho.h) \ $(wildcard include/config/arch/jasper.h) \ $(wildcard include/config/arch/dsc25.h) \ $(wildcard include/config/mach/omap/innovator.h) \ $(wildcard include/config/arch/ramses.h) \ $(wildcard include/config/arch/s28x.h) \ $(wildcard include/config/arch/mport3.h) \ $(wildcard include/config/arch/pxa/eagle250.h) \ $(wildcard include/config/arch/pdb.h) \ $(wildcard include/config/sa1100/blue/2g.h) \ $(wildcard include/config/sa1100/bluearch.h) \ $(wildcard include/config/arch/ixdp2400.h) \ $(wildcard include/config/arch/ixdp2800.h) \ $(wildcard include/config/sa1100/explorer.h) \ $(wildcard include/config/arch/ixdp425.h) \ $(wildcard include/config/arch/chimp.h) \ $(wildcard include/config/arch/stork/nest.h) \ $(wildcard include/config/arch/stork/egg.h) \ $(wildcard include/config/sa1100/wismo.h) \ $(wildcard include/config/arch/ezlinx.h) \ $(wildcard include/config/arch/at91rm9200.h) \ $(wildcard include/config/arch/adtech/orion.h) \ $(wildcard include/config/arch/neptune.h) \ $(wildcard include/config/sa1100/hackkit.h) \ $(wildcard include/config/arch/pxa/wins30.h) \ $(wildcard include/config/sa1100/lavinna.h) \ $(wildcard include/config/arch/pxa/uengine.h) \ $(wildcard include/config/arch/innokom.h) \ $(wildcard include/config/arch/bms.h) \ $(wildcard include/config/arch/ixcdp1100.h) \ $(wildcard include/config/arch/prpmc1100.h) \ $(wildcard include/config/arch/at91rm9200dk.h) \ $(wildcard include/config/arch/armstick.h) \ $(wildcard include/config/arch/armonie.h) \ $(wildcard include/config/arch/mport1.h) \ $(wildcard include/config/arch/s3c5410.h) \ $(wildcard include/config/arch/zcp320a.h) \ $(wildcard include/config/arch/i/box.h) \ $(wildcard include/config/arch/stlc1502.h) \ $(wildcard include/config/arch/siren.h) \ $(wildcard include/config/arch/greenlake.h) \ $(wildcard include/config/arch/argus.h) \ $(wildcard include/config/sa1100/combadge.h) \ $(wildcard include/config/arch/rokepxa.h) \ $(wildcard include/config/arch/cintegrator.h) \ $(wildcard include/config/arch/guidea07.h) \ $(wildcard include/config/arch/tat257.h) \ $(wildcard include/config/arch/igp2425.h) \ $(wildcard include/config/arch/bluegramma.h) \ $(wildcard include/config/arch/ipod.h) \ $(wildcard include/config/arch/adsbitsyx.h) \ $(wildcard include/config/arch/trizeps2.h) \ $(wildcard include/config/arch/viper.h) \ $(wildcard include/config/sa1100/adsbitsyplus.h) \ $(wildcard include/config/sa1100/adsagc.h) \ $(wildcard include/config/arch/stp7312.h) \ $(wildcard include/config/mach/nx/phnx.h) \ $(wildcard include/config/arch/wep/ep250.h) \ $(wildcard include/config/arch/inhandelf3.h) \ $(wildcard include/config/arch/adi/coyote.h) \ $(wildcard include/config/arch/iyonix.h) \ $(wildcard include/config/arch/damicam/sa1110.h) \ $(wildcard include/config/arch/meg03.h) \ $(wildcard include/config/arch/pxa/whitechapel.h) \ $(wildcard include/config/arch/nwsc.h) \ $(wildcard include/config/arch/nwlarm.h) \ $(wildcard include/config/arch/ixp425/mguard.h) \ $(wildcard include/config/arch/pxa/netdcu4.h) \ $(wildcard include/config/arch/ixdp2401.h) \ $(wildcard include/config/arch/ixdp2801.h) \ $(wildcard include/config/arch/zodiac.h) \ $(wildcard include/config/arch/armmodul.h) \ $(wildcard include/config/sa1100/ketop.h) \ $(wildcard include/config/arch/av7200.h) \ $(wildcard include/config/arch/arch/ti925.h) \ $(wildcard include/config/arch/acq200.h) \ $(wildcard include/config/sa1100/pt/dafit.h) \ $(wildcard include/config/arch/ihba.h) \ $(wildcard include/config/arch/quinque.h) \ $(wildcard include/config/arch/nimbraone.h) \ $(wildcard include/config/arch/nimbra29x.h) \ $(wildcard include/config/arch/nimbra210.h) \ $(wildcard include/config/arch/hhp/d95xx.h) \ $(wildcard include/config/arch/labarm.h) \ $(wildcard include/config/arch/m825xx.h) \ $(wildcard include/config/sa1100/m7100.h) \ $(wildcard include/config/arch/nipc2.h) \ $(wildcard include/config/arch/fu7202.h) \ $(wildcard include/config/arch/adsagx.h) \ $(wildcard include/config/arch/pxa/pooh.h) \ $(wildcard include/config/arch/bandon.h) \ $(wildcard include/config/arch/pcm7210.h) \ $(wildcard include/config/arch/nms9200.h) \ $(wildcard include/config/arch/logodl.h) \ $(wildcard include/config/sa1100/m7140.h) \ $(wildcard include/config/arch/korebot.h) \ $(wildcard include/config/arch/iq31244.h) \ $(wildcard include/config/sa1100/koan393.h) \ $(wildcard include/config/arch/inhandftip3.h) \ $(wildcard include/config/arch/gonzo.h) \ $(wildcard include/config/arch/bast.h) \ $(wildcard include/config/arch/scanpass.h) \ $(wildcard include/config/arch/ep7312/pooh.h) \ $(wildcard include/config/arch/ta7s.h) \ $(wildcard include/config/arch/ta7v.h) \ $(wildcard include/config/sa1100/icarus.h) \ $(wildcard include/config/arch/h1900.h) \ $(wildcard include/config/sa1100/gemini.h) \ $(wildcard include/config/arch/axim.h) \ $(wildcard include/config/arch/audiotron.h) \ $(wildcard include/config/arch/h2200.h) \ $(wildcard include/config/arch/loox600.h) \ $(wildcard include/config/arch/niop.h) \ $(wildcard include/config/arch/dm310.h) \ $(wildcard include/config/arch/seedpxa/c2.h) \ $(wildcard include/config/arch/ixp4xx/mguard/pci.h) \ $(wildcard include/config/arch/h1940.h) \ $(wildcard include/config/arch/scorpio.h) \ $(wildcard include/config/arch/viva.h) \ $(wildcard include/config/arch/pxa/xcard.h) \ $(wildcard include/config/arch/csb335.h) \ $(wildcard include/config/arch/ixrd425.h) \ $(wildcard include/config/arch/iq80315.h) \ $(wildcard include/config/arch/nmp7312.h) \ $(wildcard include/config/arch/cx861xx.h) \ $(wildcard include/config/arch/enp2611.h) \ $(wildcard include/config/sa1100/xda.h) \ $(wildcard include/config/arch/csir/ims.h) \ $(wildcard include/config/arch/ixp421/dnaeeth.h) \ $(wildcard include/config/arch/pocketserv9200.h) \ $(wildcard include/config/arch/toto.h) \ $(wildcard include/config/arch/s3c2440.h) \ $(wildcard include/config/arch/ks8695p.h) \ $(wildcard include/config/arch/se4000.h) \ $(wildcard include/config/arch/quadriceps.h) \ $(wildcard include/config/arch/bronco.h) \ $(wildcard include/config/arch/esl/wireless/tab.h) \ $(wildcard include/config/arch/esl/sofcomp.h) \ $(wildcard include/config/arch/s5c7375.h) \ $(wildcard include/config/arch/spearhead.h) \ $(wildcard include/config/arch/pantera.h) \ $(wildcard include/config/arch/prayoglite.h) \ $(wildcard include/config/arch/gumstix.h) \ $(wildcard include/config/arch/rcube.h) \ $(wildcard include/config/arch/rea/olv.h) \ $(wildcard include/config/arch/pxa/iphone.h) \ $(wildcard include/config/arch/s3c3410.h) \ $(wildcard include/config/arch/espd/4510b.h) \ $(wildcard include/config/arch/mp1x.h) \ $(wildcard include/config/arch/at91rm9200tb.h) \ $(wildcard include/config/arch/adsvgx.h) \ $(wildcard include/config/mach/omap/h2.h) \ $(wildcard include/config/arch/pelee.h) \ $(wildcard include/config/mach/e740.h) \ $(wildcard include/config/arch/iq80331.h) \ $(wildcard include/config/arch/versatile/pb.h) \ $(wildcard include/config/mach/kev7a400.h) \ $(wildcard include/config/mach/lpd7a400.h) \ $(wildcard include/config/mach/lpd7a404.h) \ $(wildcard include/config/arch/fujitsu/camelot.h) \ $(wildcard include/config/arch/janus2m.h) \ $(wildcard include/config/mach/embtf.h) \ $(wildcard include/config/mach/hpm.h) \ $(wildcard include/config/mach/smdk2410tk.h) \ $(wildcard include/config/mach/smdk2410aj.h) \ $(wildcard include/config/mach/streetracer.h) \ $(wildcard include/config/mach/eframe.h) \ $(wildcard include/config/mach/csb337.h) \ $(wildcard include/config/mach/pxa/lark.h) \ $(wildcard include/config/mach/pnp2110.h) \ $(wildcard include/config/mach/tcc72x.h) \ $(wildcard include/config/mach/altair.h) \ $(wildcard include/config/mach/kc3.h) \ $(wildcard include/config/mach/sinteftd.h) \ $(wildcard include/config/mach/mainstone.h) \ $(wildcard include/config/mach/aday4x.h) \ $(wildcard include/config/mach/lite300.h) \ $(wildcard include/config/mach/s5c7376.h) \ $(wildcard include/config/mach/mt02.h) \ $(wildcard include/config/mach/mport3s.h) \ $(wildcard include/config/mach/ra/alpha.h) \ $(wildcard include/config/mach/xcep.h) \ $(wildcard include/config/mach/arcom/vulcan.h) \ $(wildcard include/config/mach/stargate.h) \ $(wildcard include/config/mach/armadilloj.h) \ $(wildcard include/config/mach/elroy/jack.h) \ $(wildcard include/config/mach/backend.h) \ $(wildcard include/config/mach/s5linbox.h) \ $(wildcard include/config/mach/nomadik.h) \ $(wildcard include/config/mach/ia/cpu/9200.h) \ $(wildcard include/config/mach/at91/bja1.h) \ $(wildcard include/config/mach/corgi.h) \ $(wildcard include/config/mach/poodle.h) \ $(wildcard include/config/mach/ten.h) \ $(wildcard include/config/mach/roverp5p.h) \ $(wildcard include/config/mach/sc2700.h) \ $(wildcard include/config/mach/ex/eagle.h) \ $(wildcard include/config/mach/nx/pxa12.h) \ $(wildcard include/config/mach/nx/pxa5.h) \ $(wildcard include/config/mach/blackboard2.h) \ $(wildcard include/config/mach/i819.h) \ $(wildcard include/config/mach/ixmb995e.h) \ $(wildcard include/config/mach/skyrider.h) \ $(wildcard include/config/mach/skyhawk.h) \ $(wildcard include/config/mach/enterprise.h) \ $(wildcard include/config/mach/dep2410.h) \ $(wildcard include/config/mach/armcore.h) \ $(wildcard include/config/mach/hobbit.h) \ $(wildcard include/config/mach/h7210.h) \ $(wildcard include/config/mach/pxa/netdcu5.h) \ $(wildcard include/config/mach/acc.h) \ $(wildcard include/config/mach/esl/sarva.h) \ $(wildcard include/config/mach/xm250.h) \ $(wildcard include/config/mach/t6tc1xb.h) \ $(wildcard include/config/mach/ess710.h) \ $(wildcard include/config/mach/mx31ads.h) \ $(wildcard include/config/mach/himalaya.h) \ $(wildcard include/config/mach/bolfenk.h) \ $(wildcard include/config/mach/at91rm9200kr.h) \ $(wildcard include/config/mach/edb9312.h) \ $(wildcard include/config/mach/omap/generic.h) \ $(wildcard include/config/mach/aximx3.h) \ $(wildcard include/config/mach/eb67xdip.h) \ $(wildcard include/config/mach/webtxs.h) \ $(wildcard include/config/mach/hawk.h) \ $(wildcard include/config/mach/ccat91sbc001.h) \ $(wildcard include/config/mach/expresso.h) \ $(wildcard include/config/mach/h4000.h) \ $(wildcard include/config/mach/dino.h) \ $(wildcard include/config/mach/ml675k.h) \ $(wildcard include/config/mach/edb9301.h) \ $(wildcard include/config/mach/edb9315.h) \ $(wildcard include/config/mach/reciva/tt.h) \ $(wildcard include/config/mach/cstcb01.h) \ $(wildcard include/config/mach/cstcb1.h) \ $(wildcard include/config/mach/shadwell.h) \ $(wildcard include/config/mach/goepel263.h) \ $(wildcard include/config/mach/acq100.h) \ $(wildcard include/config/mach/mx1fs2.h) \ $(wildcard include/config/mach/hiptop/g1.h) \ $(wildcard include/config/mach/sparky.h) \ $(wildcard include/config/mach/ns9750.h) \ $(wildcard include/config/mach/phoenix.h) \ $(wildcard include/config/mach/vr1000.h) \ $(wildcard include/config/mach/deisterpxa.h) \ $(wildcard include/config/mach/bcm1160.h) \ $(wildcard include/config/mach/pcm022.h) \ $(wildcard include/config/mach/adsgcx.h) \ $(wildcard include/config/mach/dreadnaught.h) \ $(wildcard include/config/mach/dm320.h) \ $(wildcard include/config/mach/markov.h) \ $(wildcard include/config/mach/cos7a400.h) \ $(wildcard include/config/mach/milano.h) \ $(wildcard include/config/mach/ue9328.h) \ $(wildcard include/config/mach/uex255.h) \ $(wildcard include/config/mach/ue2410.h) \ $(wildcard include/config/mach/a620.h) \ $(wildcard include/config/mach/ocelot.h) \ $(wildcard include/config/mach/cheetah.h) \ $(wildcard include/config/mach/omap/perseus2.h) \ $(wildcard include/config/mach/zvue.h) \ $(wildcard include/config/mach/roverp1.h) \ $(wildcard include/config/mach/asidial2.h) \ $(wildcard include/config/mach/s3c24a0.h) \ $(wildcard include/config/mach/e800.h) \ $(wildcard include/config/mach/e750.h) \ $(wildcard include/config/mach/s3c5500.h) \ $(wildcard include/config/mach/smdk5500.h) \ $(wildcard include/config/mach/signalsync.h) \ $(wildcard include/config/mach/nbc.h) \ $(wildcard include/config/mach/kodiak.h) \ $(wildcard include/config/mach/netbookpro.h) \ $(wildcard include/config/mach/hw90200.h) \ $(wildcard include/config/mach/condor.h) \ $(wildcard include/config/mach/cup.h) \ $(wildcard include/config/mach/kite.h) \ $(wildcard include/config/mach/scb9328.h) \ $(wildcard include/config/mach/omap/h3.h) \ $(wildcard include/config/mach/omap/h4.h) \ $(wildcard include/config/mach/n10.h) \ $(wildcard include/config/mach/montajade.h) \ $(wildcard include/config/mach/sg560.h) \ $(wildcard include/config/mach/dp1000.h) \ $(wildcard include/config/mach/omap/osk.h) \ $(wildcard include/config/mach/rg100v3.h) \ $(wildcard include/config/mach/mx2ads.h) \ $(wildcard include/config/mach/pxa/kilo.h) \ $(wildcard include/config/mach/ixp4xx/eagle.h) \ $(wildcard include/config/mach/tosa.h) \ $(wildcard include/config/mach/mb2520f.h) \ $(wildcard include/config/mach/emc1000.h) \ $(wildcard include/config/mach/tidsc25.h) \ $(wildcard include/config/mach/akcpmxl.h) \ $(wildcard include/config/mach/av3xx.h) \ $(wildcard include/config/mach/avila.h) \ $(wildcard include/config/mach/pxa/mpm10.h) \ $(wildcard include/config/mach/pxa/kyanite.h) \ $(wildcard include/config/mach/sgold.h) \ $(wildcard include/config/mach/oscar.h) \ $(wildcard include/config/mach/epxa4usb2.h) \ $(wildcard include/config/mach/xsengine.h) \ $(wildcard include/config/mach/ip600.h) \ $(wildcard include/config/mach/mcan2.h) \ $(wildcard include/config/mach/ddi/blueridge.h) \ $(wildcard include/config/mach/skyminder.h) \ $(wildcard include/config/mach/lpd79520.h) \ $(wildcard include/config/mach/edb9302.h) \ $(wildcard include/config/mach/hw90340.h) \ $(wildcard include/config/mach/cip/box.h) \ $(wildcard include/config/mach/ivpn.h) \ $(wildcard include/config/mach/rsoc2.h) \ $(wildcard include/config/mach/husky.h) \ $(wildcard include/config/mach/boxer.h) \ $(wildcard include/config/mach/shepherd.h) \ $(wildcard include/config/mach/aml42800aa.h) \ $(wildcard include/config/mach/lpc2294.h) \ $(wildcard include/config/mach/switchgrass.h) \ $(wildcard include/config/mach/ens/cmu.h) \ $(wildcard include/config/mach/mm6/sdb.h) \ $(wildcard include/config/mach/saturn.h) \ $(wildcard include/config/mach/i30030evb.h) \ $(wildcard include/config/mach/mxc27530evb.h) \ $(wildcard include/config/mach/smdk2800.h) \ $(wildcard include/config/mach/mtwilson.h) \ $(wildcard include/config/mach/ziti.h) \ $(wildcard include/config/mach/grandfather.h) \ $(wildcard include/config/mach/tengine.h) \ $(wildcard include/config/mach/s3c2460.h) \ $(wildcard include/config/mach/pdm.h) \ $(wildcard include/config/mach/h4700.h) \ $(wildcard include/config/mach/h6300.h) \ $(wildcard include/config/mach/rz1700.h) \ $(wildcard include/config/mach/a716.h) \ $(wildcard include/config/mach/estk2440a.h) \ $(wildcard include/config/mach/atwixp425.h) \ $(wildcard include/config/mach/csb336.h) \ $(wildcard include/config/mach/rirm2.h) \ $(wildcard include/config/mach/cx23518.h) \ $(wildcard include/config/mach/cx2351x.h) \ $(wildcard include/config/mach/computime.h) \ $(wildcard include/config/mach/izarus.h) \ $(wildcard include/config/mach/rts.h) \ $(wildcard include/config/mach/se5100.h) \ $(wildcard include/config/mach/s3c2510.h) \ $(wildcard include/config/mach/csb437tl.h) \ $(wildcard include/config/mach/slauson.h) \ $(wildcard include/config/mach/pearlriver.h) \ $(wildcard include/config/mach/tdc/p210.h) \ $(wildcard include/config/mach/sg580.h) \ $(wildcard include/config/mach/wrsbcarm7.h) \ $(wildcard include/config/mach/ipd.h) \ $(wildcard include/config/mach/pxa/dnp2110.h) \ $(wildcard include/config/mach/xaeniax.h) \ $(wildcard include/config/mach/somn4250.h) \ $(wildcard include/config/mach/pleb2.h) \ $(wildcard include/config/mach/cornwallis.h) \ $(wildcard include/config/mach/gurney/drv.h) \ $(wildcard include/config/mach/chaffee.h) \ $(wildcard include/config/mach/rms101.h) \ $(wildcard include/config/mach/rx3715.h) \ $(wildcard include/config/mach/swift.h) \ $(wildcard include/config/mach/roverp7.h) \ $(wildcard include/config/mach/pr818s.h) \ $(wildcard include/config/mach/trxpro.h) \ $(wildcard include/config/mach/nslu2.h) \ $(wildcard include/config/mach/e400.h) \ $(wildcard include/config/mach/trab.h) \ $(wildcard include/config/mach/cmc/pu2.h) \ $(wildcard include/config/mach/fulcrum.h) \ $(wildcard include/config/mach/netgate42x.h) \ $(wildcard include/config/mach/str710.h) \ $(wildcard include/config/mach/ixdpg425.h) \ $(wildcard include/config/mach/tomtomgo.h) \ $(wildcard include/config/mach/versatile/ab.h) \ $(wildcard include/config/mach/edb9307.h) \ $(wildcard include/config/mach/sg565.h) \ $(wildcard include/config/mach/lpd79524.h) \ $(wildcard include/config/mach/lpd79525.h) \ $(wildcard include/config/mach/rms100.h) \ $(wildcard include/config/mach/kb9200.h) \ $(wildcard include/config/mach/sx1.h) \ $(wildcard include/config/mach/hms39c7092.h) \ $(wildcard include/config/mach/armadillo.h) \ $(wildcard include/config/mach/ipcu.h) \ $(wildcard include/config/mach/loox720.h) \ $(wildcard include/config/mach/ixdp465.h) \ $(wildcard include/config/mach/ixdp2351.h) \ $(wildcard include/config/mach/adsvix.h) \ $(wildcard include/config/mach/dm270.h) \ $(wildcard include/config/mach/socltplus.h) \ $(wildcard include/config/mach/ecia.h) \ $(wildcard include/config/mach/cm4008.h) \ $(wildcard include/config/mach/p2001.h) \ $(wildcard include/config/mach/twister.h) \ $(wildcard include/config/mach/mudshark.h) \ $(wildcard include/config/mach/hb2.h) \ $(wildcard include/config/mach/iq80332.h) \ $(wildcard include/config/mach/sendt.h) \ $(wildcard include/config/mach/mx2jazz.h) \ $(wildcard include/config/mach/multiio.h) \ $(wildcard include/config/mach/hrdisplay.h) \ $(wildcard include/config/mach/mxc27530ads.h) \ $(wildcard include/config/mach/trizeps3.h) \ $(wildcard include/config/mach/zefeerdza.h) \ $(wildcard include/config/mach/zefeerdzb.h) \ $(wildcard include/config/mach/zefeerdzg.h) \ $(wildcard include/config/mach/zefeerdzn.h) \ $(wildcard include/config/mach/zefeerdzq.h) \ $(wildcard include/config/mach/gtwx5715.h) \ $(wildcard include/config/mach/astro/jack.h) \ $(wildcard include/config/mach/tip03.h) \ $(wildcard include/config/mach/a9200ec.h) \ $(wildcard include/config/mach/pnx0105.h) \ $(wildcard include/config/mach/adcpoecpu.h) \ $(wildcard include/config/mach/csb637.h) \ $(wildcard include/config/mach/mb9200.h) \ $(wildcard include/config/mach/kulun.h) \ $(wildcard include/config/mach/snapper.h) \ $(wildcard include/config/mach/optima.h) \ $(wildcard include/config/mach/dlhsbc.h) \ $(wildcard include/config/mach/x30.h) \ $(wildcard include/config/mach/n30.h) \ $(wildcard include/config/mach/manga/ks8695.h) \ $(wildcard include/config/mach/ajax.h) \ $(wildcard include/config/mach/nec/mp900.h) \ $(wildcard include/config/mach/vvtk1000.h) \ $(wildcard include/config/mach/kafa.h) \ $(wildcard include/config/mach/vvtk3000.h) \ $(wildcard include/config/mach/pimx1.h) \ $(wildcard include/config/mach/ollie.h) \ $(wildcard include/config/mach/skymax.h) \ $(wildcard include/config/mach/jazz.h) \ $(wildcard include/config/mach/tel/t3.h) \ $(wildcard include/config/mach/aisino/fcr255.h) \ $(wildcard include/config/mach/btweb.h) \ $(wildcard include/config/mach/dbg/lh79520.h) \ $(wildcard include/config/mach/cm41xx.h) \ $(wildcard include/config/mach/ts72xx.h) \ $(wildcard include/config/mach/nggpxa.h) \ $(wildcard include/config/mach/csb535.h) \ $(wildcard include/config/mach/csb536.h) \ $(wildcard include/config/mach/pxa/trakpod.h) \ $(wildcard include/config/mach/praxis.h) \ $(wildcard include/config/mach/lh75411.h) \ $(wildcard include/config/mach/otom.h) \ $(wildcard include/config/mach/nexcoder/2440.h) \ $(wildcard include/config/mach/loox410.h) \ $(wildcard include/config/mach/westlake.h) \ $(wildcard include/config/mach/nsb.h) \ $(wildcard include/config/mach/esl/sarva/stn.h) \ $(wildcard include/config/mach/esl/sarva/tft.h) \ $(wildcard include/config/mach/esl/sarva/iad.h) \ $(wildcard include/config/mach/esl/sarva/acc.h) \ $(wildcard include/config/mach/typhoon.h) \ $(wildcard include/config/mach/cnav.h) \ $(wildcard include/config/mach/a730.h) \ $(wildcard include/config/mach/netstar.h) \ $(wildcard include/config/mach/phasefale/supercon.h) \ $(wildcard include/config/mach/shiva1100.h) \ $(wildcard include/config/mach/etexsc.h) \ $(wildcard include/config/mach/ixdpg465.h) \ $(wildcard include/config/mach/a9m2410.h) \ $(wildcard include/config/mach/a9m2440.h) \ $(wildcard include/config/mach/a9m9750.h) \ $(wildcard include/config/mach/a9m9360.h) \ $(wildcard include/config/mach/unc90.h) \ $(wildcard include/config/mach/eco920.h) \ $(wildcard include/config/mach/satview.h) \ $(wildcard include/config/mach/roadrunner.h) \ $(wildcard include/config/mach/at91rm9200ek.h) \ $(wildcard include/config/mach/gp32.h) \ $(wildcard include/config/mach/gem.h) \ $(wildcard include/config/mach/i858.h) \ $(wildcard include/config/mach/hx2750.h) \ $(wildcard include/config/mach/mxc91131evb.h) \ $(wildcard include/config/mach/p700.h) \ $(wildcard include/config/mach/cpe.h) \ $(wildcard include/config/mach/spitz.h) \ $(wildcard include/config/mach/nimbra340.h) \ $(wildcard include/config/mach/lpc22xx.h) \ $(wildcard include/config/mach/comet3.h) \ $(wildcard include/config/mach/comet4.h) \ $(wildcard include/config/mach/csb625.h) \ $(wildcard include/config/mach/fortunet2.h) \ $(wildcard include/config/mach/s5h2200.h) \ $(wildcard include/config/mach/optorm920.h) \ $(wildcard include/config/mach/adsbitsyxb.h) \ $(wildcard include/config/mach/adssphere.h) \ $(wildcard include/config/mach/adsportal.h) \ $(wildcard include/config/mach/ln2410sbc.h) \ $(wildcard include/config/mach/cb3rufc.h) \ $(wildcard include/config/mach/mp2usb.h) \ $(wildcard include/config/mach/ntnp425c.h) \ $(wildcard include/config/mach/colibri.h) \ $(wildcard include/config/mach/pcm7220.h) \ $(wildcard include/config/mach/gateway7001.h) \ $(wildcard include/config/mach/pcm027.h) \ $(wildcard include/config/mach/cmpxa.h) \ $(wildcard include/config/mach/anubis.h) \ $(wildcard include/config/mach/ite8152.h) \ $(wildcard include/config/mach/lpc3xxx.h) \ $(wildcard include/config/mach/puppeteer.h) \ $(wildcard include/config/mach/e570.h) \ $(wildcard include/config/mach/x50.h) \ $(wildcard include/config/mach/recon.h) \ $(wildcard include/config/mach/xboardgp8.h) \ $(wildcard include/config/mach/fpic2.h) \ $(wildcard include/config/mach/akita.h) \ $(wildcard include/config/mach/a81.h) \ $(wildcard include/config/mach/svm/sc25x.h) \ $(wildcard include/config/mach/vadatech020.h) \ $(wildcard include/config/mach/tli.h) \ $(wildcard include/config/mach/edb9315lc.h) \ $(wildcard include/config/mach/passec.h) \ $(wildcard include/config/mach/ds/tiger.h) \ $(wildcard include/config/mach/e310.h) \ $(wildcard include/config/mach/e330.h) \ $(wildcard include/config/mach/rt3000.h) \ $(wildcard include/config/mach/nokia770.h) \ $(wildcard include/config/mach/pnx0106.h) \ $(wildcard include/config/mach/hx21xx.h) \ $(wildcard include/config/mach/faraday.h) \ $(wildcard include/config/mach/sbc9312.h) \ $(wildcard include/config/mach/batman.h) \ $(wildcard include/config/mach/jpd201.h) \ $(wildcard include/config/mach/mipsa.h) \ $(wildcard include/config/mach/kacom.h) \ $(wildcard include/config/mach/swarcocpu.h) \ $(wildcard include/config/mach/swarcodsl.h) \ $(wildcard include/config/mach/blueangel.h) \ $(wildcard include/config/mach/hairygrama.h) \ $(wildcard include/config/mach/banff.h) \ $(wildcard include/config/mach/carmeva.h) \ $(wildcard include/config/mach/sam255.h) \ $(wildcard include/config/mach/ppm10.h) \ $(wildcard include/config/mach/edb9315a.h) \ $(wildcard include/config/mach/sunset.h) \ $(wildcard include/config/mach/stargate2.h) \ $(wildcard include/config/mach/intelmote2.h) \ $(wildcard include/config/mach/trizeps4.h) \ $(wildcard include/config/mach/mainstone2.h) \ $(wildcard include/config/mach/ez/ixp42x.h) \ $(wildcard include/config/mach/tapwave/zodiac.h) \ $(wildcard include/config/mach/universalmeter.h) \ $(wildcard include/config/mach/hicoarm9.h) \ $(wildcard include/config/mach/pnx4008.h) \ $(wildcard include/config/mach/kws6000.h) \ $(wildcard include/config/mach/portux920t.h) \ $(wildcard include/config/mach/ez/x5.h) \ $(wildcard include/config/mach/omap/rudolph.h) \ $(wildcard include/config/mach/cpuat91.h) \ $(wildcard include/config/mach/rea9200.h) \ $(wildcard include/config/mach/acts/pune/sa1110.h) \ $(wildcard include/config/mach/ixp425.h) \ $(wildcard include/config/mach/i30030ads.h) \ $(wildcard include/config/mach/perch.h) \ $(wildcard include/config/mach/eis05r1.h) \ $(wildcard include/config/mach/pepperpad.h) \ $(wildcard include/config/mach/sb3010.h) \ $(wildcard include/config/mach/rm9200.h) \ $(wildcard include/config/mach/dma03.h) \ $(wildcard include/config/mach/road/s101.h) \ $(wildcard include/config/mach/iq81340sc.h) \ $(wildcard include/config/mach/iq/nextgen/b.h) \ $(wildcard include/config/mach/iq81340mc.h) \ $(wildcard include/config/mach/iq/nextgen/d.h) \ $(wildcard include/config/mach/iq/nextgen/e.h) \ $(wildcard include/config/mach/mallow/at91.h) \ $(wildcard include/config/mach/cybertracker/i.h) \ $(wildcard include/config/mach/gesbc931x.h) \ $(wildcard include/config/mach/centipad.h) \ $(wildcard include/config/mach/armsoc.h) \ $(wildcard include/config/mach/se4200.h) \ $(wildcard include/config/mach/ems197a.h) \ $(wildcard include/config/mach/micro9.h) \ $(wildcard include/config/mach/micro9l.h) \ $(wildcard include/config/mach/uc5471dsp.h) \ $(wildcard include/config/mach/sj5471eng.h) \ $(wildcard include/config/mach/cmpxa26x.h) \ $(wildcard include/config/mach/nc.h) \ $(wildcard include/config/mach/omap/palmte.h) \ $(wildcard include/config/mach/ajax52x.h) \ $(wildcard include/config/mach/siriustar.h) \ $(wildcard include/config/mach/iodata/hdlg.h) \ $(wildcard include/config/mach/at91rm9200utl.h) \ $(wildcard include/config/mach/biosafe.h) \ $(wildcard include/config/mach/mp1000.h) \ $(wildcard include/config/mach/parsy.h) \ $(wildcard include/config/mach/ccxp.h) \ $(wildcard include/config/mach/omap/gsample.h) \ $(wildcard include/config/mach/realview/eb.h) \ $(wildcard include/config/mach/samoa.h) \ $(wildcard include/config/mach/palmt3.h) \ $(wildcard include/config/mach/i878.h) \ $(wildcard include/config/mach/borzoi.h) \ $(wildcard include/config/mach/gecko.h) \ $(wildcard include/config/mach/ds101.h) \ $(wildcard include/config/mach/omap/palmtt2.h) \ $(wildcard include/config/mach/palmld.h) \ $(wildcard include/config/mach/cc9c.h) \ $(wildcard include/config/mach/sbc1670.h) \ $(wildcard include/config/mach/ixdp28x5.h) \ $(wildcard include/config/mach/omap/palmtt.h) \ $(wildcard include/config/mach/ml696k.h) \ $(wildcard include/config/mach/arcom/zeus.h) \ $(wildcard include/config/mach/osiris.h) \ $(wildcard include/config/mach/maestro.h) \ $(wildcard include/config/mach/palmte2.h) \ $(wildcard include/config/mach/ixbbm.h) \ $(wildcard include/config/mach/mx27ads.h) \ $(wildcard include/config/mach/ax8004.h) \ $(wildcard include/config/mach/at91sam9261ek.h) \ $(wildcard include/config/mach/loft.h) \ $(wildcard include/config/mach/magpie.h) \ $(wildcard include/config/mach/mx21ads.h) \ $(wildcard include/config/mach/mb87m3400.h) \ $(wildcard include/config/mach/mguard/delta.h) \ $(wildcard include/config/mach/davinci/dvdp.h) \ $(wildcard include/config/mach/htcuniversal.h) \ $(wildcard include/config/mach/tpad.h) \ $(wildcard include/config/mach/roverp3.h) \ $(wildcard include/config/mach/jornada928.h) \ $(wildcard include/config/mach/mv88fxx81.h) \ $(wildcard include/config/mach/stmp36xx.h) \ $(wildcard include/config/mach/sxni79524.h) \ $(wildcard include/config/mach/ams/delta.h) \ $(wildcard include/config/mach/uranium.h) \ $(wildcard include/config/mach/ucon.h) \ $(wildcard include/config/mach/nas100d.h) \ $(wildcard include/config/mach/l083/1000.h) \ $(wildcard include/config/mach/ezx.h) \ $(wildcard include/config/mach/pnx5220.h) \ $(wildcard include/config/mach/butte.h) \ $(wildcard include/config/mach/srm2.h) \ $(wildcard include/config/mach/dsbr.h) \ $(wildcard include/config/mach/crystalball.h) \ $(wildcard include/config/mach/tinypxa27x.h) \ $(wildcard include/config/mach/herbie.h) \ $(wildcard include/config/mach/magician.h) \ $(wildcard include/config/mach/cm4002.h) \ $(wildcard include/config/mach/b4.h) \ $(wildcard include/config/mach/maui.h) \ $(wildcard include/config/mach/cybertracker/g.h) \ $(wildcard include/config/mach/nxdkn.h) \ $(wildcard include/config/mach/mio8390.h) \ $(wildcard include/config/mach/omi/board.h) \ $(wildcard include/config/mach/mx21civ.h) \ $(wildcard include/config/mach/mahi/cdac.h) \ $(wildcard include/config/mach/palmtx.h) \ $(wildcard include/config/mach/s3c2413.h) \ $(wildcard include/config/mach/samsys/ep0.h) \ $(wildcard include/config/mach/wg302v1.h) \ $(wildcard include/config/mach/wg302v2.h) \ $(wildcard include/config/mach/eb42x.h) \ $(wildcard include/config/mach/iq331es.h) \ $(wildcard include/config/mach/cosydsp.h) \ $(wildcard include/config/mach/uplat7d.h) \ $(wildcard include/config/mach/ptdavinci.h) \ $(wildcard include/config/mach/mbus.h) \ $(wildcard include/config/mach/nadia2vb.h) \ $(wildcard include/config/mach/r1000.h) \ $(wildcard include/config/mach/hw90250.h) \ $(wildcard include/config/mach/omap/2430sdp.h) \ $(wildcard include/config/mach/davinci/evm.h) \ $(wildcard include/config/mach/omap/tornado.h) \ $(wildcard include/config/mach/olocreek.h) \ $(wildcard include/config/mach/palmz72.h) \ $(wildcard include/config/mach/nxdb500.h) \ $(wildcard include/config/mach/apf9328.h) \ $(wildcard include/config/mach/omap/wipoq.h) \ $(wildcard include/config/mach/omap/twip.h) \ $(wildcard include/config/mach/treo650.h) \ $(wildcard include/config/mach/acumen.h) \ $(wildcard include/config/mach/xp100.h) \ $(wildcard include/config/mach/fs2410.h) \ $(wildcard include/config/mach/pxa270/cerf.h) \ $(wildcard include/config/mach/sq2ftlpalm.h) \ $(wildcard include/config/mach/bsemserver.h) \ $(wildcard include/config/mach/netclient.h) \ $(wildcard include/config/mach/palmt5.h) \ $(wildcard include/config/mach/palmtc.h) \ $(wildcard include/config/mach/omap/apollon.h) \ $(wildcard include/config/mach/mxc30030evb.h) \ $(wildcard include/config/mach/rea/2d.h) \ $(wildcard include/config/mach/ti3e524.h) \ $(wildcard include/config/mach/ateb9200.h) \ $(wildcard include/config/mach/auckland.h) \ $(wildcard include/config/mach/ak3320m.h) \ $(wildcard include/config/mach/duramax.h) \ $(wildcard include/config/mach/n35.h) \ $(wildcard include/config/mach/pronghorn.h) \ $(wildcard include/config/mach/fundy.h) \ $(wildcard include/config/mach/logicpd/pxa270.h) \ $(wildcard include/config/mach/cpu777.h) \ $(wildcard include/config/mach/simicon9201.h) \ $(wildcard include/config/mach/leap2/hpm.h) \ $(wildcard include/config/mach/cm922txa10.h) \ $(wildcard include/config/mach/pxa.h) \ $(wildcard include/config/mach/sandgate2.h) \ $(wildcard include/config/mach/sandgate2g.h) \ $(wildcard include/config/mach/sandgate2p.h) \ $(wildcard include/config/mach/fred/jack.h) \ $(wildcard include/config/mach/ttg/color1.h) \ $(wildcard include/config/mach/nxeb500hmi.h) \ $(wildcard include/config/mach/netdcu8.h) \ $(wildcard include/config/mach/ng/fvx538.h) \ $(wildcard include/config/mach/ng/fvs338.h) \ $(wildcard include/config/mach/pnx4103.h) \ $(wildcard include/config/mach/hesdb.h) \ $(wildcard include/config/mach/xsilo.h) \ $(wildcard include/config/mach/espresso.h) \ $(wildcard include/config/mach/emlc.h) \ $(wildcard include/config/mach/sisteron.h) \ $(wildcard include/config/mach/rx1950.h) \ $(wildcard include/config/mach/tsc/venus.h) \ $(wildcard include/config/mach/ds101j.h) \ $(wildcard include/config/mach/mxc30030ads.h) \ $(wildcard include/config/mach/fujitsu/wimaxsoc.h) \ $(wildcard include/config/mach/dualpcmodem.h) \ $(wildcard include/config/mach/gesbc9312.h) \ $(wildcard include/config/mach/htcapache.h) \ $(wildcard include/config/mach/ixdp435.h) \ $(wildcard include/config/mach/catprovt100.h) \ $(wildcard include/config/mach/picotux1xx.h) \ $(wildcard include/config/mach/picotux2xx.h) \ $(wildcard include/config/mach/dsmg600.h) \ $(wildcard include/config/mach/empc2.h) \ $(wildcard include/config/mach/ventura.h) \ $(wildcard include/config/mach/phidget/sbc.h) \ $(wildcard include/config/mach/ij3k.h) \ $(wildcard include/config/mach/pisgah.h) \ $(wildcard include/config/mach/omap/fsample.h) \ $(wildcard include/config/mach/sg720.h) \ $(wildcard include/config/mach/redfox.h) \ $(wildcard include/config/mach/mysh/ep9315/1.h) \ $(wildcard include/config/mach/tpf106.h) \ $(wildcard include/config/mach/at91rm9200kg.h) \ $(wildcard include/config/mach/sledb.h) \ $(wildcard include/config/mach/ontrack.h) \ $(wildcard include/config/mach/pm1200.h) \ $(wildcard include/config/mach/ess24xxx.h) \ $(wildcard include/config/mach/coremp7.h) \ $(wildcard include/config/mach/nexcoder/6446.h) \ $(wildcard include/config/mach/stvc8380.h) \ $(wildcard include/config/mach/teklynx.h) \ $(wildcard include/config/mach/carbonado.h) \ $(wildcard include/config/mach/sysmos/mp730.h) \ $(wildcard include/config/mach/snapper/cl15.h) \ $(wildcard include/config/mach/pgigim.h) \ $(wildcard include/config/mach/ptx9160p2.h) \ $(wildcard include/config/mach/dcore1.h) \ $(wildcard include/config/mach/victorpxa.h) \ $(wildcard include/config/mach/mx2dtb.h) \ $(wildcard include/config/mach/pxa/irex/er0100.h) \ $(wildcard include/config/mach/omap/palmz71.h) \ $(wildcard include/config/mach/bartec/deg.h) \ $(wildcard include/config/mach/hw50251.h) \ $(wildcard include/config/mach/ibox.h) \ $(wildcard include/config/mach/atlaslh7a404.h) \ $(wildcard include/config/mach/pt2026.h) \ $(wildcard include/config/mach/htcalpine.h) \ $(wildcard include/config/mach/bartec/vtu.h) \ $(wildcard include/config/mach/vcoreii.h) \ $(wildcard include/config/mach/pdnb3.h) \ $(wildcard include/config/mach/htcbeetles.h) \ $(wildcard include/config/mach/s3c6400.h) \ $(wildcard include/config/mach/s3c2443.h) \ $(wildcard include/config/mach/omap/ldk.h) \ $(wildcard include/config/mach/smdk2460.h) \ $(wildcard include/config/mach/smdk2440.h) \ $(wildcard include/config/mach/smdk2412.h) \ $(wildcard include/config/mach/webbox.h) \ $(wildcard include/config/mach/cwwndp.h) \ $(wildcard include/config/mach/dragon.h) \ $(wildcard include/config/mach/opendo/cpu/board.h) \ $(wildcard include/config/mach/ccm2200.h) \ $(wildcard include/config/mach/etwarm.h) \ $(wildcard include/config/mach/m93030.h) \ $(wildcard include/config/mach/cc7u.h) \ $(wildcard include/config/mach/mtt/ranger.h) \ $(wildcard include/config/mach/nexus.h) \ $(wildcard include/config/mach/desman.h) \ $(wildcard include/config/mach/bkde303.h) \ $(wildcard include/config/mach/smdk2413.h) \ $(wildcard include/config/mach/aml/m7200.h) \ $(wildcard include/config/mach/aml/m5900.h) \ $(wildcard include/config/mach/sg640.h) \ $(wildcard include/config/mach/edg79524.h) \ $(wildcard include/config/mach/ai2410.h) \ $(wildcard include/config/mach/ixp465.h) \ $(wildcard include/config/mach/balloon3.h) \ $(wildcard include/config/mach/heins.h) \ $(wildcard include/config/mach/mpluseva.h) \ $(wildcard include/config/mach/rt042.h) \ $(wildcard include/config/mach/cwiem.h) \ $(wildcard include/config/mach/cm/x270.h) \ $(wildcard include/config/mach/cm/x255.h) \ $(wildcard include/config/mach/esh/at91.h) \ $(wildcard include/config/mach/sandgate3.h) \ $(wildcard include/config/mach/primo.h) \ $(wildcard include/config/mach/gemstone.h) \ $(wildcard include/config/mach/pronghornmetro.h) \ $(wildcard include/config/mach/sidewinder.h) \ $(wildcard include/config/mach/picomod1.h) \ $(wildcard include/config/mach/sg590.h) \ $(wildcard include/config/mach/akai9307.h) \ $(wildcard include/config/mach/fontaine.h) \ $(wildcard include/config/mach/wombat.h) \ $(wildcard include/config/mach/acq300.h) \ $(wildcard include/config/mach/mod/270.h) \ $(wildcard include/config/mach/vc0820.h) \ $(wildcard include/config/mach/ani/aim.h) \ $(wildcard include/config/mach/jellyfish.h) \ $(wildcard include/config/mach/amanita.h) \ $(wildcard include/config/mach/vlink.h) \ $(wildcard include/config/mach/dexflex.h) \ $(wildcard include/config/mach/eigen/ttq.h) \ $(wildcard include/config/mach/arcom/titan.h) \ $(wildcard include/config/mach/tabla.h) \ $(wildcard include/config/mach/mdirac3.h) \ $(wildcard include/config/mach/mrhfbp2.h) \ $(wildcard include/config/mach/at91rm9200rb.h) \ $(wildcard include/config/mach/ani/apm.h) \ $(wildcard include/config/mach/ella1.h) \ $(wildcard include/config/mach/inhand/pxa27x.h) \ $(wildcard include/config/mach/inhand/pxa25x.h) \ $(wildcard include/config/mach/empos/xm.h) \ $(wildcard include/config/mach/empos.h) \ $(wildcard include/config/mach/empos/tiny.h) \ $(wildcard include/config/mach/empos/sm.h) \ $(wildcard include/config/mach/egret.h) \ $(wildcard include/config/mach/ostrich.h) \ $(wildcard include/config/mach/n50.h) \ $(wildcard include/config/mach/ecbat91.h) \ $(wildcard include/config/mach/stareast.h) \ $(wildcard include/config/mach/dspg/dw.h) \ $(wildcard include/config/mach/onearm.h) \ $(wildcard include/config/mach/mrg110/6.h) \ $(wildcard include/config/mach/wrt300nv2.h) \ $(wildcard include/config/mach/xm/bulverde.h) \ $(wildcard include/config/mach/msm6100.h) \ $(wildcard include/config/mach/eti/b1.h) \ $(wildcard include/config/mach/zilog/za9l.h) \ $(wildcard include/config/mach/bit2440.h) \ $(wildcard include/config/mach/nbi.h) \ $(wildcard include/config/mach/smdk2443.h) \ $(wildcard include/config/mach/vdavinci.h) \ $(wildcard include/config/mach/atc6.h) \ $(wildcard include/config/mach/multmdw.h) \ $(wildcard include/config/mach/mba2440.h) \ $(wildcard include/config/mach/ecsd.h) \ $(wildcard include/config/mach/palmz31.h) \ $(wildcard include/config/mach/fsg.h) \ $(wildcard include/config/mach/razor101.h) \ $(wildcard include/config/mach/opera/tdm.h) \ $(wildcard include/config/mach/comcerto.h) \ $(wildcard include/config/mach/tb0319.h) \ $(wildcard include/config/mach/kws8000.h) \ $(wildcard include/config/mach/b2.h) \ $(wildcard include/config/mach/lcl54.h) \ $(wildcard include/config/mach/at91sam9260ek.h) \ $(wildcard include/config/mach/glantank.h) \ $(wildcard include/config/mach/n2100.h) \ $(wildcard include/config/mach/n4100.h) \ $(wildcard include/config/mach/vertical/rsc4.h) \ $(wildcard include/config/mach/sg8100.h) \ $(wildcard include/config/mach/im42xx.h) \ $(wildcard include/config/mach/ftxx.h) \ $(wildcard include/config/mach/lwfusion.h) \ $(wildcard include/config/mach/qt2410.h) \ $(wildcard include/config/mach/kixrp435.h) \ $(wildcard include/config/mach/ccw9c.h) \ $(wildcard include/config/mach/dabhs.h) \ $(wildcard include/config/mach/gzmx.h) \ $(wildcard include/config/mach/ipnw100ap.h) \ $(wildcard include/config/mach/cc9p9360dev.h) \ $(wildcard include/config/mach/cc9p9750dev.h) \ $(wildcard include/config/mach/cc9p9360val.h) \ $(wildcard include/config/mach/cc9p9750val.h) \ $(wildcard include/config/mach/nx70v.h) \ $(wildcard include/config/mach/at91rm9200df.h) \ $(wildcard include/config/mach/se/pilot2.h) \ $(wildcard include/config/mach/mtcn/t800.h) \ $(wildcard include/config/mach/vcmx212.h) \ $(wildcard include/config/mach/lynx.h) \ $(wildcard include/config/mach/at91sam9260id.h) \ $(wildcard include/config/mach/hw86052.h) \ $(wildcard include/config/mach/pilz/pmi3.h) \ $(wildcard include/config/mach/edb9302a.h) \ $(wildcard include/config/mach/edb9307a.h) \ $(wildcard include/config/mach/ct/dfs.h) \ $(wildcard include/config/mach/pilz/pmi4.h) \ $(wildcard include/config/mach/xceednp/ixp.h) \ $(wildcard include/config/mach/smdk2442b.h) \ $(wildcard include/config/mach/xnode.h) \ $(wildcard include/config/mach/aidx270.h) \ $(wildcard include/config/mach/rema.h) \ $(wildcard include/config/mach/bps1000.h) \ $(wildcard include/config/mach/hw90350.h) \ $(wildcard include/config/mach/omap/3430sdp.h) \ $(wildcard include/config/mach/bluetouch.h) \ $(wildcard include/config/mach/vstms.h) \ $(wildcard include/config/mach/xsbase270.h) \ $(wildcard include/config/mach/at91sam9260ek/cn.h) \ $(wildcard include/config/mach/adsturboxb.h) \ $(wildcard include/config/mach/oti4110.h) \ $(wildcard include/config/mach/hme/pxa.h) \ $(wildcard include/config/mach/deisterdca.h) \ $(wildcard include/config/mach/ces/ssem2.h) \ $(wildcard include/config/mach/ces/mtr.h) \ $(wildcard include/config/mach/tds/avng/sbc.h) \ $(wildcard include/config/mach/everest.h) \ $(wildcard include/config/mach/pnx4010.h) \ $(wildcard include/config/mach/oxnas.h) \ $(wildcard include/config/mach/fiori.h) \ $(wildcard include/config/mach/ml1200.h) \ $(wildcard include/config/mach/pecos.h) \ $(wildcard include/config/mach/nb2xxx.h) \ $(wildcard include/config/mach/hw6900.h) \ $(wildcard include/config/mach/cdcs/quoll.h) \ $(wildcard include/config/mach/quicksilver.h) \ $(wildcard include/config/mach/uplat926.h) \ $(wildcard include/config/mach/dep2410/thomas.h) \ $(wildcard include/config/mach/dtk2410.h) \ $(wildcard include/config/mach/chili.h) \ $(wildcard include/config/mach/demeter.h) \ $(wildcard include/config/mach/dionysus.h) \ $(wildcard include/config/mach/as352x.h) \ $(wildcard include/config/mach/service.h) \ $(wildcard include/config/mach/cs/e9301.h) \ $(wildcard include/config/mach/micro9m.h) \ $(wildcard include/config/mach/ia/mospck.h) \ $(wildcard include/config/mach/ql201b.h) \ $(wildcard include/config/mach/bbm.h) \ $(wildcard include/config/mach/exxx.h) \ $(wildcard include/config/mach/wma11b.h) \ $(wildcard include/config/mach/pelco/atlas.h) \ $(wildcard include/config/mach/g500.h) \ $(wildcard include/config/mach/bug.h) \ $(wildcard include/config/mach/mx33ads.h) \ $(wildcard include/config/mach/chub.h) \ $(wildcard include/config/mach/neo1973/gta01.h) \ $(wildcard include/config/mach/w90n740.h) \ $(wildcard include/config/mach/medallion/sa2410.h) \ $(wildcard include/config/mach/ia/cpu/9200/2.h) \ $(wildcard include/config/mach/dimmrm9200.h) \ $(wildcard include/config/mach/pm9261.h) \ $(wildcard include/config/mach/ml7304.h) \ $(wildcard include/config/mach/ucp250.h) \ $(wildcard include/config/mach/intboard.h) \ $(wildcard include/config/mach/gulfstream.h) \ $(wildcard include/config/mach/labquest.h) \ $(wildcard include/config/mach/vcmx313.h) \ $(wildcard include/config/mach/urg200.h) \ $(wildcard include/config/mach/cpux255lcdnet.h) \ $(wildcard include/config/mach/netdcu9.h) \ $(wildcard include/config/mach/netdcu10.h) \ $(wildcard include/config/mach/dspg/dga.h) \ $(wildcard include/config/mach/dspg/dvw.h) \ $(wildcard include/config/mach/solos.h) \ $(wildcard include/config/mach/at91sam9263ek.h) \ $(wildcard include/config/mach/osstbox.h) \ $(wildcard include/config/mach/kbat9261.h) \ $(wildcard include/config/mach/ct1100.h) \ $(wildcard include/config/mach/akcppxa.h) \ $(wildcard include/config/mach/ochaya1020.h) \ $(wildcard include/config/mach/hitrack.h) \ $(wildcard include/config/mach/syme1.h) \ $(wildcard include/config/mach/syhl1.h) \ $(wildcard include/config/mach/empca400.h) \ $(wildcard include/config/mach/em7210.h) \ $(wildcard include/config/mach/htchermes.h) \ $(wildcard include/config/mach/eti/c1.h) \ $(wildcard include/config/mach/ac100.h) \ $(wildcard include/config/mach/sneetch.h) \ $(wildcard include/config/mach/studentmate.h) \ $(wildcard include/config/mach/zir2410.h) \ $(wildcard include/config/mach/zir2413.h) \ $(wildcard include/config/mach/dlonip3.h) \ $(wildcard include/config/mach/instream.h) \ $(wildcard include/config/mach/ambarella.h) \ $(wildcard include/config/mach/nevis.h) \ $(wildcard include/config/mach/htc/trinity.h) \ $(wildcard include/config/mach/ql202b.h) \ $(wildcard include/config/mach/vpac270.h) \ $(wildcard include/config/mach/rd129.h) \ $(wildcard include/config/mach/htcwizard.h) \ $(wildcard include/config/mach/treo680.h) \ $(wildcard include/config/mach/tecon/tmezon.h) \ $(wildcard include/config/mach/zylonite.h) \ $(wildcard include/config/mach/gene1270.h) \ $(wildcard include/config/mach/zir2412.h) \ $(wildcard include/config/mach/mx31lite.h) \ $(wildcard include/config/mach/t700wx.h) \ $(wildcard include/config/mach/vf100.h) \ $(wildcard include/config/mach/nsb2.h) \ $(wildcard include/config/mach/nxhmi/bb.h) \ $(wildcard include/config/mach/nxhmi/re.h) \ $(wildcard include/config/mach/n4100pro.h) \ $(wildcard include/config/mach/sam9260.h) \ $(wildcard include/config/mach/omap/treo600.h) \ $(wildcard include/config/mach/indy2410.h) \ $(wildcard include/config/mach/nelt/a.h) \ $(wildcard include/config/mach/n311.h) \ $(wildcard include/config/mach/at91sam9260vgk.h) \ $(wildcard include/config/mach/at91leppe.h) \ $(wildcard include/config/mach/at91lepccn.h) \ $(wildcard include/config/mach/apc7100.h) \ $(wildcard include/config/mach/stargazer.h) \ $(wildcard include/config/mach/sonata.h) \ $(wildcard include/config/mach/schmoogie.h) \ $(wildcard include/config/mach/aztool.h) \ $(wildcard include/config/mach/mioa701.h) \ $(wildcard include/config/mach/sxni9260.h) \ $(wildcard include/config/mach/mxc27520evb.h) \ $(wildcard include/config/mach/armadillo5x0.h) \ $(wildcard include/config/mach/mb9260.h) \ $(wildcard include/config/mach/mb9263.h) \ $(wildcard include/config/mach/ipac9302.h) \ $(wildcard include/config/mach/cc9p9360js.h) \ $(wildcard include/config/mach/gallium.h) \ $(wildcard include/config/mach/msc2410.h) \ $(wildcard include/config/mach/ghi270.h) \ $(wildcard include/config/mach/davinci/leonardo.h) \ $(wildcard include/config/mach/oiab.h) \ $(wildcard include/config/mach/smdk6400.h) \ $(wildcard include/config/mach/nokia/n800.h) \ $(wildcard include/config/mach/greenphone.h) \ $(wildcard include/config/mach/compexwp18.h) \ $(wildcard include/config/mach/xmate.h) \ $(wildcard include/config/mach/energizer.h) \ $(wildcard include/config/mach/ime1.h) \ $(wildcard include/config/mach/swedatms.h) \ $(wildcard include/config/mach/ntnp435c.h) \ $(wildcard include/config/mach/spectro2.h) \ $(wildcard include/config/mach/h6039.h) \ $(wildcard include/config/mach/ep80219.h) \ $(wildcard include/config/mach/samoa/ii.h) \ $(wildcard include/config/mach/cwmxl.h) \ $(wildcard include/config/mach/as9200.h) \ $(wildcard include/config/mach/sfx1149.h) \ $(wildcard include/config/mach/navi010.h) \ $(wildcard include/config/mach/multmdp.h) \ $(wildcard include/config/mach/scb9520.h) \ $(wildcard include/config/mach/htcathena.h) \ $(wildcard include/config/mach/xp179.h) \ $(wildcard include/config/mach/h4300.h) \ $(wildcard include/config/mach/goramo/mlr.h) \ $(wildcard include/config/mach/mxc30020evb.h) \ $(wildcard include/config/mach/adsbitsyg5.h) \ $(wildcard include/config/mach/adsportalplus.h) \ $(wildcard include/config/mach/mmsp2plus.h) \ $(wildcard include/config/mach/em/x270.h) \ $(wildcard include/config/mach/tpp302.h) \ $(wildcard include/config/mach/tpm104.h) \ $(wildcard include/config/mach/tpm102.h) \ $(wildcard include/config/mach/tpm109.h) \ $(wildcard include/config/mach/fbxo1.h) \ $(wildcard include/config/mach/hxd8.h) \ $(wildcard include/config/mach/neo1973/gta02.h) \ $(wildcard include/config/mach/emtest.h) \ $(wildcard include/config/mach/ad6900.h) \ $(wildcard include/config/mach/europa.h) \ $(wildcard include/config/mach/metroconnect.h) \ $(wildcard include/config/mach/ez/s2410.h) \ $(wildcard include/config/mach/ez/s2440.h) \ $(wildcard include/config/mach/ez/ep9312.h) \ $(wildcard include/config/mach/ez/ep9315.h) \ $(wildcard include/config/mach/ez/x7.h) \ $(wildcard include/config/mach/godotdb.h) \ $(wildcard include/config/mach/mistral.h) \ $(wildcard include/config/mach/msm.h) \ $(wildcard include/config/mach/ct5910.h) \ $(wildcard include/config/mach/ct5912.h) \ $(wildcard include/config/mach/hynet/ine.h) \ $(wildcard include/config/mach/hynet/app.h) \ $(wildcard include/config/mach/msm7200.h) \ $(wildcard include/config/mach/msm7600.h) \ $(wildcard include/config/mach/ceb255.h) \ $(wildcard include/config/mach/ciel.h) \ $(wildcard include/config/mach/slm5650.h) \ $(wildcard include/config/mach/at91sam9rlek.h) \ $(wildcard include/config/mach/comtech/router.h) \ $(wildcard include/config/mach/sbc2410x.h) \ $(wildcard include/config/mach/at4x0bd.h) \ $(wildcard include/config/mach/cbifr.h) \ $(wildcard include/config/mach/arcom/quantum.h) \ $(wildcard include/config/mach/matrix520.h) \ $(wildcard include/config/mach/matrix510.h) \ $(wildcard include/config/mach/matrix500.h) \ $(wildcard include/config/mach/m501.h) \ $(wildcard include/config/mach/aaeon1270.h) \ $(wildcard include/config/mach/matrix500ev.h) \ $(wildcard include/config/mach/pac500.h) \ $(wildcard include/config/mach/pnx8181.h) \ $(wildcard include/config/mach/colibri320.h) \ $(wildcard include/config/mach/aztoolbb.h) \ $(wildcard include/config/mach/aztoolg2.h) \ $(wildcard include/config/mach/dvlhost.h) \ $(wildcard include/config/mach/zir9200.h) \ $(wildcard include/config/mach/zir9260.h) \ $(wildcard include/config/mach/cocopah.h) \ $(wildcard include/config/mach/nds.h) \ $(wildcard include/config/mach/rosencrantz.h) \ $(wildcard include/config/mach/fttx/odsc.h) \ $(wildcard include/config/mach/classe/r6904.h) \ $(wildcard include/config/mach/cam60.h) \ $(wildcard include/config/mach/mxc30031ads.h) \ $(wildcard include/config/mach/datacall.h) \ $(wildcard include/config/mach/at91eb01.h) \ $(wildcard include/config/mach/rty.h) \ $(wildcard include/config/mach/dwl2100.h) \ $(wildcard include/config/mach/vinsi.h) \ $(wildcard include/config/mach/db88f5281.h) \ $(wildcard include/config/mach/csb726.h) \ $(wildcard include/config/mach/tik27.h) \ $(wildcard include/config/mach/mx/uc7420.h) \ $(wildcard include/config/mach/rirm3.h) \ $(wildcard include/config/mach/pelco/odyssey.h) \ $(wildcard include/config/mach/adx/abox.h) \ $(wildcard include/config/mach/adx/tpid.h) \ $(wildcard include/config/mach/minicheck.h) \ $(wildcard include/config/mach/idam.h) \ $(wildcard include/config/mach/mario/mx.h) \ $(wildcard include/config/mach/vi1888.h) \ $(wildcard include/config/mach/zr4230.h) \ $(wildcard include/config/mach/t1/ix/blue.h) \ $(wildcard include/config/mach/syhq2.h) \ $(wildcard include/config/mach/computime/r3.h) \ $(wildcard include/config/mach/oratis.h) \ $(wildcard include/config/mach/mikko.h) \ $(wildcard include/config/mach/holon.h) \ $(wildcard include/config/mach/olip8.h) \ $(wildcard include/config/mach/ghi270hg.h) \ $(wildcard include/config/mach/davinci/dm6467/evm.h) \ $(wildcard include/config/mach/davinci/dm355/evm.h) \ $(wildcard include/config/mach/blackriver.h) \ $(wildcard include/config/mach/sandgatewp.h) \ $(wildcard include/config/mach/cdotbwsg.h) \ $(wildcard include/config/mach/quark963.h) \ $(wildcard include/config/mach/csb735.h) \ $(wildcard include/config/mach/littleton.h) \ $(wildcard include/config/mach/mio/p550.h) \ $(wildcard include/config/mach/motion2440.h) \ $(wildcard include/config/mach/imm500.h) \ $(wildcard include/config/mach/homematic.h) \ $(wildcard include/config/mach/ermine.h) \ $(wildcard include/config/mach/kb9202b.h) \ $(wildcard include/config/mach/hs1xx.h) \ $(wildcard include/config/mach/studentmate2440.h) \ $(wildcard include/config/mach/arvoo/l1/z1.h) \ $(wildcard include/config/mach/dep2410k.h) \ $(wildcard include/config/mach/xxsvideo.h) \ $(wildcard include/config/mach/im4004.h) \ $(wildcard include/config/mach/ochaya1050.h) \ $(wildcard include/config/mach/lep9261.h) \ $(wildcard include/config/mach/svenmeb.h) \ $(wildcard include/config/mach/fortunet2ne.h) \ $(wildcard include/config/mach/nxhx.h) \ $(wildcard include/config/mach/realview/pb11mp.h) \ $(wildcard include/config/mach/ids500.h) \ $(wildcard include/config/mach/ors/n725.h) \ $(wildcard include/config/mach/hsdarm.h) \ $(wildcard include/config/mach/sha/pon003.h) \ $(wildcard include/config/mach/sha/pon004.h) \ $(wildcard include/config/mach/sha/pon007.h) \ $(wildcard include/config/mach/sha/pon011.h) \ $(wildcard include/config/mach/h6042.h) \ $(wildcard include/config/mach/h6043.h) \ $(wildcard include/config/mach/looxc550.h) \ $(wildcard include/config/mach/cnty/titan.h) \ $(wildcard include/config/mach/app3xx.h) \ $(wildcard include/config/mach/sideoatsgrama.h) \ $(wildcard include/config/mach/treo700p.h) \ $(wildcard include/config/mach/treo700w.h) \ $(wildcard include/config/mach/treo750.h) \ $(wildcard include/config/mach/treo755p.h) \ $(wildcard include/config/mach/ezreganut9200.h) \ $(wildcard include/config/mach/sarge.h) \ $(wildcard include/config/mach/a696.h) \ $(wildcard include/config/mach/turtle.h) \ $(wildcard include/config/mach/mx27/3ds.h) \ $(wildcard include/config/mach/bishop.h) \ $(wildcard include/config/mach/pxx.h) \ $(wildcard include/config/mach/redwood.h) \ $(wildcard include/config/mach/omap/2430dlp.h) \ $(wildcard include/config/mach/omap/2430osk.h) \ $(wildcard include/config/mach/sardine.h) \ $(wildcard include/config/mach/halibut.h) \ $(wildcard include/config/mach/trout.h) \ $(wildcard include/config/mach/goldfish.h) \ $(wildcard include/config/mach/gesbc2440.h) \ $(wildcard include/config/mach/nomad.h) \ $(wildcard include/config/mach/rosalind.h) \ $(wildcard include/config/mach/cc9p9215.h) \ $(wildcard include/config/mach/cc9p9210.h) \ $(wildcard include/config/mach/cc9p9215js.h) \ $(wildcard include/config/mach/cc9p9210js.h) \ $(wildcard include/config/mach/nasffe.h) \ $(wildcard include/config/mach/tn2x0bd.h) \ $(wildcard include/config/mach/gwmpxa.h) \ $(wildcard include/config/mach/exyplus.h) \ $(wildcard include/config/mach/jadoo21.h) \ $(wildcard include/config/mach/looxn560.h) \ $(wildcard include/config/mach/bonsai.h) \ $(wildcard include/config/mach/adsmilgato.h) \ $(wildcard include/config/mach/gba.h) \ $(wildcard include/config/mach/h6044.h) \ $(wildcard include/config/mach/app.h) \ $(wildcard include/config/mach/tct/hammer.h) \ $(wildcard include/config/mach/herald.h) \ $(wildcard include/config/mach/artemis.h) \ $(wildcard include/config/mach/htctitan.h) \ $(wildcard include/config/mach/qranium.h) \ $(wildcard include/config/mach/adx/wsc2.h) \ $(wildcard include/config/mach/adx/medcom.h) \ $(wildcard include/config/mach/bboard.h) \ $(wildcard include/config/mach/cambria.h) \ $(wildcard include/config/mach/mt7xxx.h) \ $(wildcard include/config/mach/matrix512.h) \ $(wildcard include/config/mach/matrix522.h) \ $(wildcard include/config/mach/ipac5010.h) \ $(wildcard include/config/mach/sakura.h) \ $(wildcard include/config/mach/grocx.h) \ $(wildcard include/config/mach/pm9263.h) \ $(wildcard include/config/mach/sim/one.h) \ $(wildcard include/config/mach/acq132.h) \ $(wildcard include/config/mach/datr.h) \ $(wildcard include/config/mach/actux1.h) \ $(wildcard include/config/mach/actux2.h) \ $(wildcard include/config/mach/actux3.h) \ $(wildcard include/config/mach/flexit.h) \ $(wildcard include/config/mach/bh2x0bd.h) \ $(wildcard include/config/mach/atb2002.h) \ $(wildcard include/config/mach/xenon.h) \ $(wildcard include/config/mach/fm607.h) \ $(wildcard include/config/mach/matrix514.h) \ $(wildcard include/config/mach/matrix524.h) \ $(wildcard include/config/mach/inpod.h) \ $(wildcard include/config/mach/jive.h) \ $(wildcard include/config/mach/tll/mx21.h) \ $(wildcard include/config/mach/sbc2800.h) \ $(wildcard include/config/mach/cc7ucamry.h) \ $(wildcard include/config/mach/ubisys/p9/sc15.h) \ $(wildcard include/config/mach/ubisys/p9/ssc2d10.h) \ $(wildcard include/config/mach/ubisys/p9/rcu3.h) \ $(wildcard include/config/mach/aml/m8000.h) \ $(wildcard include/config/mach/snapper/270.h) \ $(wildcard include/config/mach/omap/bbx.h) \ $(wildcard include/config/mach/ucn2410.h) \ $(wildcard include/config/mach/sam9/l9260.h) \ $(wildcard include/config/mach/eti/c2.h) \ $(wildcard include/config/mach/avalanche.h) \ $(wildcard include/config/mach/realview/pb1176.h) \ $(wildcard include/config/mach/dp1500.h) \ $(wildcard include/config/mach/apple/iphone.h) \ $(wildcard include/config/mach/yl9200.h) \ $(wildcard include/config/mach/rd88f5182.h) \ $(wildcard include/config/mach/kurobox/pro.h) \ $(wildcard include/config/mach/se/poet.h) \ $(wildcard include/config/mach/mx31/3ds.h) \ $(wildcard include/config/mach/r270.h) \ $(wildcard include/config/mach/armour21.h) \ $(wildcard include/config/mach/dt2.h) \ $(wildcard include/config/mach/vt4.h) \ $(wildcard include/config/mach/tyco320.h) \ $(wildcard include/config/mach/adma.h) \ $(wildcard include/config/mach/wp188.h) \ $(wildcard include/config/mach/corsica.h) \ $(wildcard include/config/mach/bigeye.h) \ $(wildcard include/config/mach/tll5000.h) \ $(wildcard include/config/mach/bebot.h) \ $(wildcard include/config/mach/qong.h) \ $(wildcard include/config/mach/tcompact.h) \ $(wildcard include/config/mach/puma5.h) \ $(wildcard include/config/mach/elara.h) \ $(wildcard include/config/mach/ellington.h) \ $(wildcard include/config/mach/xda/atom.h) \ $(wildcard include/config/mach/energizer2.h) \ $(wildcard include/config/mach/odin.h) \ $(wildcard include/config/mach/actux4.h) \ $(wildcard include/config/mach/esl/omap.h) \ $(wildcard include/config/mach/omap2evm.h) \ $(wildcard include/config/mach/omap3evm.h) \ $(wildcard include/config/mach/adx/pcu57.h) \ $(wildcard include/config/mach/monaco.h) \ $(wildcard include/config/mach/levante.h) \ $(wildcard include/config/mach/tmxipx425.h) \ $(wildcard include/config/mach/leep.h) \ $(wildcard include/config/mach/raad.h) \ $(wildcard include/config/mach/dns323.h) \ $(wildcard include/config/mach/ap1000.h) \ $(wildcard include/config/mach/a9sam6432.h) \ $(wildcard include/config/mach/shiny.h) \ $(wildcard include/config/mach/omap3/beagle.h) \ $(wildcard include/config/mach/csr/bdb2.h) \ $(wildcard include/config/mach/nokia/n810.h) \ $(wildcard include/config/mach/c270.h) \ $(wildcard include/config/mach/sentry.h) \ $(wildcard include/config/mach/pcm038.h) \ $(wildcard include/config/mach/anc300.h) \ $(wildcard include/config/mach/htckaiser.h) \ $(wildcard include/config/mach/sbat100.h) \ $(wildcard include/config/mach/modunorm.h) \ $(wildcard include/config/mach/pelos/twarm.h) \ $(wildcard include/config/mach/flank.h) \ $(wildcard include/config/mach/sirloin.h) \ $(wildcard include/config/mach/brisket.h) \ $(wildcard include/config/mach/chuck.h) \ $(wildcard include/config/mach/otter.h) \ $(wildcard include/config/mach/davinci/ldk.h) \ $(wildcard include/config/mach/phreedom.h) \ $(wildcard include/config/mach/sg310.h) \ $(wildcard include/config/mach/ts209.h) \ $(wildcard include/config/mach/at91cap9adk.h) \ $(wildcard include/config/mach/tion9315.h) \ $(wildcard include/config/mach/mast.h) \ $(wildcard include/config/mach/pfw.h) \ $(wildcard include/config/mach/yl/p2440.h) \ $(wildcard include/config/mach/zsbc32.h) \ $(wildcard include/config/mach/omap/pace2.h) \ $(wildcard include/config/mach/imx/pace2.h) \ $(wildcard include/config/mach/mx31moboard.h) \ $(wildcard include/config/mach/mx37/3ds.h) \ $(wildcard include/config/mach/rcc.h) \ $(wildcard include/config/mach/arm9.h) \ $(wildcard include/config/mach/vision/ep9307.h) \ $(wildcard include/config/mach/scly1000.h) \ $(wildcard include/config/mach/fontel/ep.h) \ $(wildcard include/config/mach/voiceblue3g.h) \ $(wildcard include/config/mach/tt9200.h) \ $(wildcard include/config/mach/digi2410.h) \ $(wildcard include/config/mach/terastation/pro2.h) \ $(wildcard include/config/mach/linkstation/pro.h) \ $(wildcard include/config/mach/motorola/a780.h) \ $(wildcard include/config/mach/motorola/e6.h) \ $(wildcard include/config/mach/motorola/e2.h) \ $(wildcard include/config/mach/motorola/e680.h) \ $(wildcard include/config/mach/ur2410.h) \ $(wildcard include/config/mach/tas9261.h) \ $(wildcard include/config/mach/hermes/hd.h) \ $(wildcard include/config/mach/perseo/hd.h) \ $(wildcard include/config/mach/stargazer2.h) \ $(wildcard include/config/mach/e350.h) \ $(wildcard include/config/mach/wpcm450.h) \ $(wildcard include/config/mach/cartesio.h) \ $(wildcard include/config/mach/toybox.h) \ $(wildcard include/config/mach/tx27.h) \ $(wildcard include/config/mach/ts409.h) \ $(wildcard include/config/mach/p300.h) \ $(wildcard include/config/mach/xdacomet.h) \ $(wildcard include/config/mach/dexflex2.h) \ $(wildcard include/config/mach/ow.h) \ $(wildcard include/config/mach/armebs3.h) \ $(wildcard include/config/mach/u3.h) \ $(wildcard include/config/mach/smdk2450.h) \ $(wildcard include/config/mach/rsi/ews.h) \ $(wildcard include/config/mach/tnb.h) \ $(wildcard include/config/mach/toepath.h) \ $(wildcard include/config/mach/kb9263.h) \ $(wildcard include/config/mach/mt7108.h) \ $(wildcard include/config/mach/smtr2440.h) \ $(wildcard include/config/mach/manao.h) \ $(wildcard include/config/mach/cm/x300.h) \ $(wildcard include/config/mach/gulfstream/kp.h) \ $(wildcard include/config/mach/lanreadyfn522.h) \ $(wildcard include/config/mach/arma37.h) \ $(wildcard include/config/mach/mendel.h) \ $(wildcard include/config/mach/pelco/iliad.h) \ $(wildcard include/config/mach/unit2p.h) \ $(wildcard include/config/mach/inc20otter.h) \ $(wildcard include/config/mach/at91sam9g20ek.h) \ $(wildcard include/config/mach/storcenter.h) \ $(wildcard include/config/mach/smdk6410.h) \ $(wildcard include/config/mach/u300.h) \ $(wildcard include/config/mach/u500.h) \ $(wildcard include/config/mach/ds9260.h) \ $(wildcard include/config/mach/riverrock.h) \ $(wildcard include/config/mach/scibath.h) \ $(wildcard include/config/mach/at91sam7se512ek.h) \ $(wildcard include/config/mach/wrt350n/v2.h) \ $(wildcard include/config/mach/multimedia.h) \ $(wildcard include/config/mach/marvin.h) \ $(wildcard include/config/mach/x500.h) \ $(wildcard include/config/mach/awlug4lcu.h) \ $(wildcard include/config/mach/palermoc.h) \ $(wildcard include/config/mach/omap/ldp.h) \ $(wildcard include/config/mach/ip500.h) \ $(wildcard include/config/mach/ase2.h) \ $(wildcard include/config/mach/mx35evb.h) \ $(wildcard include/config/mach/aml/m8050.h) \ $(wildcard include/config/mach/mx35/3ds.h) \ $(wildcard include/config/mach/mars.h) \ $(wildcard include/config/mach/neuros/osd2.h) \ $(wildcard include/config/mach/badger.h) \ $(wildcard include/config/mach/trizeps4wl.h) \ $(wildcard include/config/mach/trizeps5.h) \ $(wildcard include/config/mach/marlin.h) \ $(wildcard include/config/mach/ts78xx.h) \ $(wildcard include/config/mach/hpipaq214.h) \ $(wildcard include/config/mach/at572d940dcm.h) \ $(wildcard include/config/mach/ne1board.h) \ $(wildcard include/config/mach/zante.h) \ $(wildcard include/config/mach/sffsdr.h) \ $(wildcard include/config/mach/tw2662.h) \ $(wildcard include/config/mach/vf10xx.h) \ $(wildcard include/config/mach/zoran43xx.h) \ $(wildcard include/config/mach/sonix926.h) \ $(wildcard include/config/mach/celestialsemi.h) \ $(wildcard include/config/mach/cc9m2443js.h) \ $(wildcard include/config/mach/tw5334.h) \ $(wildcard include/config/mach/htcartemis.h) \ $(wildcard include/config/mach/nal/hlite.h) \ $(wildcard include/config/mach/htcvogue.h) \ $(wildcard include/config/mach/smartweb.h) \ $(wildcard include/config/mach/mv86xx.h) \ $(wildcard include/config/mach/mv87xx.h) \ $(wildcard include/config/mach/songyoungho.h) \ $(wildcard include/config/mach/younghotema.h) \ $(wildcard include/config/mach/pcm037.h) \ $(wildcard include/config/mach/mmvp.h) \ $(wildcard include/config/mach/mmap.h) \ $(wildcard include/config/mach/ptid2410.h) \ $(wildcard include/config/mach/james/926.h) \ $(wildcard include/config/mach/fm6000.h) \ $(wildcard include/config/mach/db88f6281/bp.h) \ $(wildcard include/config/mach/rd88f6192/nas.h) \ $(wildcard include/config/mach/rd88f6281.h) \ $(wildcard include/config/mach/db78x00/bp.h) \ $(wildcard include/config/mach/smdk2416.h) \ $(wildcard include/config/mach/oce/spider/si.h) \ $(wildcard include/config/mach/oce/spider/sk.h) \ $(wildcard include/config/mach/rovern6.h) \ $(wildcard include/config/mach/pelco/evolution.h) \ $(wildcard include/config/mach/wbd111.h) \ $(wildcard include/config/mach/elaracpe.h) \ $(wildcard include/config/mach/mabv3.h) \ $(wildcard include/config/mach/mv2120.h) \ $(wildcard include/config/mach/csb737.h) \ $(wildcard include/config/mach/mx51/3ds.h) \ $(wildcard include/config/mach/g900.h) \ $(wildcard include/config/mach/apf27.h) \ $(wildcard include/config/mach/ggus2000.h) \ $(wildcard include/config/mach/omap/2430/mimic.h) \ $(wildcard include/config/mach/imx27lite.h) \ $(wildcard include/config/mach/almex.h) \ $(wildcard include/config/mach/control.h) \ $(wildcard include/config/mach/mba2410.h) \ $(wildcard include/config/mach/volcano.h) \ $(wildcard include/config/mach/zenith.h) \ $(wildcard include/config/mach/muchip.h) \ $(wildcard include/config/mach/magellan.h) \ $(wildcard include/config/mach/usb/a9260.h) \ $(wildcard include/config/mach/usb/a9263.h) \ $(wildcard include/config/mach/qil/a9260.h) \ $(wildcard include/config/mach/cme9210.h) \ $(wildcard include/config/mach/hczh4.h) \ $(wildcard include/config/mach/spearbasic.h) \ $(wildcard include/config/mach/dep2440.h) \ $(wildcard include/config/mach/hdl/gxr.h) \ $(wildcard include/config/mach/hdl/gt.h) \ $(wildcard include/config/mach/hdl/4g.h) \ $(wildcard include/config/mach/s3c6000.h) \ $(wildcard include/config/mach/mmsp2/mdk.h) \ $(wildcard include/config/mach/mpx220.h) \ $(wildcard include/config/mach/kzm/arm11/01.h) \ $(wildcard include/config/mach/htc/polaris.h) \ $(wildcard include/config/mach/htc/kaiser.h) \ $(wildcard include/config/mach/lg/ks20.h) \ $(wildcard include/config/mach/hhgps.h) \ $(wildcard include/config/mach/nokia/n810/wimax.h) \ $(wildcard include/config/mach/insight.h) \ $(wildcard include/config/mach/sapphire.h) \ $(wildcard include/config/mach/csb637xo.h) \ $(wildcard include/config/mach/evisiong.h) \ $(wildcard include/config/mach/stmp37xx.h) \ $(wildcard include/config/mach/stmp378x.h) \ $(wildcard include/config/mach/tnt.h) \ $(wildcard include/config/mach/tbxt.h) \ $(wildcard include/config/mach/playmate.h) \ $(wildcard include/config/mach/pns10.h) \ $(wildcard include/config/mach/eznavi.h) \ $(wildcard include/config/mach/ps4000.h) \ $(wildcard include/config/mach/ezx/a780.h) \ $(wildcard include/config/mach/ezx/e680.h) \ $(wildcard include/config/mach/ezx/a1200.h) \ $(wildcard include/config/mach/ezx/e6.h) \ $(wildcard include/config/mach/ezx/e2.h) \ $(wildcard include/config/mach/ezx/a910.h) \ $(wildcard include/config/mach/cwmx31.h) \ $(wildcard include/config/mach/sl2312.h) \ $(wildcard include/config/mach/blenny.h) \ $(wildcard include/config/mach/ds107.h) \ $(wildcard include/config/mach/dsx07.h) \ $(wildcard include/config/mach/picocom1.h) \ $(wildcard include/config/mach/lynx/wolverine.h) \ $(wildcard include/config/mach/ubisys/p9/sc19.h) \ $(wildcard include/config/mach/kratos/low.h) \ $(wildcard include/config/mach/m700.h) \ $(wildcard include/config/mach/edmini/v2.h) \ $(wildcard include/config/mach/zipit2.h) \ $(wildcard include/config/mach/hslfemtocell.h) \ $(wildcard include/config/mach/daintree/at91.h) \ $(wildcard include/config/mach/sg560usb.h) \ $(wildcard include/config/mach/omap3/pandora.h) \ $(wildcard include/config/mach/usr8200.h) \ $(wildcard include/config/mach/s1s65k.h) \ $(wildcard include/config/mach/s2s65a.h) \ $(wildcard include/config/mach/icore.h) \ $(wildcard include/config/mach/mss2.h) \ $(wildcard include/config/mach/belmont.h) \ $(wildcard include/config/mach/asusp525.h) \ $(wildcard include/config/mach/lb88rc8480.h) \ $(wildcard include/config/mach/hipxa.h) \ $(wildcard include/config/mach/mx25/3ds.h) \ $(wildcard include/config/mach/m800.h) \ $(wildcard include/config/mach/omap3530/lv/som.h) \ $(wildcard include/config/mach/prima/evb.h) \ $(wildcard include/config/mach/mx31bt1.h) \ $(wildcard include/config/mach/atlas4/evb.h) \ $(wildcard include/config/mach/mx31cicada.h) \ $(wildcard include/config/mach/mi424wr.h) \ $(wildcard include/config/mach/axs/ultrax.h) \ $(wildcard include/config/mach/at572d940deb.h) \ $(wildcard include/config/mach/davinci/da830/evm.h) \ $(wildcard include/config/mach/ep9302.h) \ $(wildcard include/config/mach/at572d940hfeb.h) \ $(wildcard include/config/mach/cybook3.h) \ $(wildcard include/config/mach/wdg002.h) \ $(wildcard include/config/mach/sg560adsl.h) \ $(wildcard include/config/mach/nextio/n2800/ica.h) \ $(wildcard include/config/mach/dove/db.h) \ $(wildcard include/config/mach/marvell/newdb.h) \ $(wildcard include/config/mach/vandihud.h) \ $(wildcard include/config/mach/magx/e8.h) \ $(wildcard include/config/mach/magx/z6.h) \ $(wildcard include/config/mach/magx/v8.h) \ $(wildcard include/config/mach/magx/u9.h) \ $(wildcard include/config/mach/toughcf08.h) \ $(wildcard include/config/mach/zw4400.h) \ $(wildcard include/config/mach/marat91.h) \ $(wildcard include/config/mach/overo.h) \ $(wildcard include/config/mach/at2440evb.h) \ $(wildcard include/config/mach/neocore926.h) \ $(wildcard include/config/mach/wnr854t.h) \ $(wildcard include/config/mach/imx27.h) \ $(wildcard include/config/mach/moose/db.h) \ $(wildcard include/config/mach/fab4.h) \ $(wildcard include/config/mach/htcdiamond.h) \ $(wildcard include/config/mach/fiona.h) \ $(wildcard include/config/mach/mxc30030/x.h) \ $(wildcard include/config/mach/bmp1000.h) \ $(wildcard include/config/mach/logi9200.h) \ $(wildcard include/config/mach/tqma31.h) \ $(wildcard include/config/mach/ccw9p9215js.h) \ $(wildcard include/config/mach/rd88f5181l/ge.h) \ $(wildcard include/config/mach/sifmain.h) \ $(wildcard include/config/mach/sam9/l9261.h) \ $(wildcard include/config/mach/cc9m2443.h) \ $(wildcard include/config/mach/xaria300.h) \ $(wildcard include/config/mach/it9200.h) \ $(wildcard include/config/mach/rd88f5181l/fxo.h) \ $(wildcard include/config/mach/kriss/sensor.h) \ $(wildcard include/config/mach/pilz/pmi5.h) \ $(wildcard include/config/mach/jade.h) \ $(wildcard include/config/mach/ks8695/softplc.h) \ $(wildcard include/config/mach/gprisc3.h) \ $(wildcard include/config/mach/stamp9g20.h) \ $(wildcard include/config/mach/smdk6430.h) \ $(wildcard include/config/mach/smdkc100.h) \ $(wildcard include/config/mach/tavorevb.h) \ $(wildcard include/config/mach/saar.h) \ $(wildcard include/config/mach/deister/eyecam.h) \ $(wildcard include/config/mach/at91sam9m10g45ek.h) \ $(wildcard include/config/mach/linkstation/produo.h) \ $(wildcard include/config/mach/hit/b0.h) \ $(wildcard include/config/mach/adx/rmu.h) \ $(wildcard include/config/mach/xg/cpe/main.h) \ $(wildcard include/config/mach/edb9407a.h) \ $(wildcard include/config/mach/dtb9608.h) \ $(wildcard include/config/mach/em104v1.h) \ $(wildcard include/config/mach/demo.h) \ $(wildcard include/config/mach/logi9260.h) \ $(wildcard include/config/mach/mx31/exm32.h) \ $(wildcard include/config/mach/usb/a9g20.h) \ $(wildcard include/config/mach/picproje2008.h) \ $(wildcard include/config/mach/cs/e9315.h) \ $(wildcard include/config/mach/qil/a9g20.h) \ $(wildcard include/config/mach/sha/pon020.h) \ $(wildcard include/config/mach/nad.h) \ $(wildcard include/config/mach/sbc35/a9260.h) \ $(wildcard include/config/mach/sbc35/a9g20.h) \ $(wildcard include/config/mach/davinci/beginning.h) \ $(wildcard include/config/mach/uwc.h) \ $(wildcard include/config/mach/mxlads.h) \ $(wildcard include/config/mach/htcnike.h) \ $(wildcard include/config/mach/deister/pxa270.h) \ $(wildcard include/config/mach/cme9210js.h) \ $(wildcard include/config/mach/cc9p9360.h) \ $(wildcard include/config/mach/mocha.h) \ $(wildcard include/config/mach/wapd170ag.h) \ $(wildcard include/config/mach/linkstation/mini.h) \ $(wildcard include/config/mach/afeb9260.h) \ $(wildcard include/config/mach/w90x900.h) \ $(wildcard include/config/mach/w90x700.h) \ $(wildcard include/config/mach/kt300ip.h) \ $(wildcard include/config/mach/kt300ip/g20.h) \ $(wildcard include/config/mach/srcm.h) \ $(wildcard include/config/mach/wlnx/9260.h) \ $(wildcard include/config/mach/openmoko/gta03.h) \ $(wildcard include/config/mach/osprey2.h) \ $(wildcard include/config/mach/kbio9260.h) \ $(wildcard include/config/mach/ginza.h) \ $(wildcard include/config/mach/a636n.h) \ $(wildcard include/config/mach/imx27ipcam.h) \ $(wildcard include/config/mach/nemoc.h) \ $(wildcard include/config/mach/geneva.h) \ $(wildcard include/config/mach/htcpharos.h) \ $(wildcard include/config/mach/neonc.h) \ $(wildcard include/config/mach/nas7100.h) \ $(wildcard include/config/mach/teuphone.h) \ $(wildcard include/config/mach/annax/eth2.h) \ $(wildcard include/config/mach/csb733.h) \ $(wildcard include/config/mach/bk3.h) \ $(wildcard include/config/mach/omap/em32.h) \ $(wildcard include/config/mach/et9261cp.h) \ $(wildcard include/config/mach/jasperc.h) \ $(wildcard include/config/mach/issi/arm9.h) \ $(wildcard include/config/mach/ued.h) \ $(wildcard include/config/mach/esiblade.h) \ $(wildcard include/config/mach/eye02.h) \ $(wildcard include/config/mach/imx27kbd.h) \ $(wildcard include/config/mach/sst61vc010/fpga.h) \ $(wildcard include/config/mach/kixvp435.h) \ $(wildcard include/config/mach/kixnp435.h) \ $(wildcard include/config/mach/africa.h) \ $(wildcard include/config/mach/nh233.h) \ $(wildcard include/config/mach/rd88f6183ap/ge.h) \ $(wildcard include/config/mach/bcm4760.h) \ $(wildcard include/config/mach/eddy/v2.h) \ $(wildcard include/config/mach/realview/pba8.h) \ $(wildcard include/config/mach/hid/a7.h) \ $(wildcard include/config/mach/hero.h) \ $(wildcard include/config/mach/omap/poseidon.h) \ $(wildcard include/config/mach/realview/pbx.h) \ $(wildcard include/config/mach/micro9s.h) \ $(wildcard include/config/mach/mako.h) \ $(wildcard include/config/mach/xdaflame.h) \ $(wildcard include/config/mach/phidget/sbc2.h) \ $(wildcard include/config/mach/limestone.h) \ $(wildcard include/config/mach/iprobe/c32.h) \ $(wildcard include/config/mach/rut100.h) \ $(wildcard include/config/mach/asusp535.h) \ $(wildcard include/config/mach/htcraphael.h) \ $(wildcard include/config/mach/sygdg1.h) \ $(wildcard include/config/mach/sygdg2.h) \ $(wildcard include/config/mach/seoul.h) \ $(wildcard include/config/mach/salerno.h) \ $(wildcard include/config/mach/ucn/s3c64xx.h) \ $(wildcard include/config/mach/msm7201a.h) \ $(wildcard include/config/mach/lpr1.h) \ $(wildcard include/config/mach/armadillo500fx.h) \ $(wildcard include/config/mach/g3evm.h) \ $(wildcard include/config/mach/z3/dm355.h) \ $(wildcard include/config/mach/w90p910evb.h) \ $(wildcard include/config/mach/w90p920evb.h) \ $(wildcard include/config/mach/w90p950evb.h) \ $(wildcard include/config/mach/w90n960evb.h) \ $(wildcard include/config/mach/camhd.h) \ $(wildcard include/config/mach/mvc100.h) \ $(wildcard include/config/mach/electrum/200.h) \ $(wildcard include/config/mach/htcjade.h) \ $(wildcard include/config/mach/memphis.h) \ $(wildcard include/config/mach/imx27sbc.h) \ $(wildcard include/config/mach/lextar.h) \ $(wildcard include/config/mach/mv88f6281gtw/ge.h) \ $(wildcard include/config/mach/ncp.h) \ $(wildcard include/config/mach/z32an.h) \ $(wildcard include/config/mach/tmq/capd.h) \ $(wildcard include/config/mach/omap3/wl.h) \ $(wildcard include/config/mach/chumby.h) \ $(wildcard include/config/mach/atsarm9.h) \ $(wildcard include/config/mach/davinci/dm365/evm.h) \ $(wildcard include/config/mach/bahamas.h) \ $(wildcard include/config/mach/das.h) \ $(wildcard include/config/mach/minidas.h) \ $(wildcard include/config/mach/vk1000.h) \ $(wildcard include/config/mach/centro.h) \ $(wildcard include/config/mach/ctera/2bay.h) \ $(wildcard include/config/mach/edgeconnect.h) \ $(wildcard include/config/mach/nd27000.h) \ $(wildcard include/config/mach/gemalto/cobra.h) \ $(wildcard include/config/mach/ingelabs/comet.h) \ $(wildcard include/config/mach/pollux/wiz.h) \ $(wildcard include/config/mach/blackstone.h) \ $(wildcard include/config/mach/topaz.h) \ $(wildcard include/config/mach/aixle.h) \ $(wildcard include/config/mach/mw998.h) \ $(wildcard include/config/mach/nokia/rx51.h) \ $(wildcard include/config/mach/vsc5605ev.h) \ $(wildcard include/config/mach/nt98700dk.h) \ $(wildcard include/config/mach/icontact.h) \ $(wildcard include/config/mach/swarco/frcpu.h) \ $(wildcard include/config/mach/swarco/scpu.h) \ $(wildcard include/config/mach/bbox/p16.h) \ $(wildcard include/config/mach/bstd.h) \ $(wildcard include/config/mach/sbc2440ii.h) \ $(wildcard include/config/mach/pcm034.h) \ $(wildcard include/config/mach/neso.h) \ $(wildcard include/config/mach/wlnx/9g20.h) \ $(wildcard include/config/mach/omap/zoom2.h) \ $(wildcard include/config/mach/totemnova.h) \ $(wildcard include/config/mach/c5000.h) \ $(wildcard include/config/mach/unipo/at91sam9263.h) \ $(wildcard include/config/mach/ethernut5.h) \ $(wildcard include/config/mach/arm11.h) \ $(wildcard include/config/mach/cpuat9260.h) \ $(wildcard include/config/mach/cpupxa255.h) \ $(wildcard include/config/mach/cpuimx27.h) \ $(wildcard include/config/mach/cheflux.h) \ $(wildcard include/config/mach/eb/cpux9k2.h) \ $(wildcard include/config/mach/opcotec.h) \ $(wildcard include/config/mach/yt.h) \ $(wildcard include/config/mach/motoq.h) \ $(wildcard include/config/mach/bsb1.h) \ $(wildcard include/config/mach/acs5k.h) \ $(wildcard include/config/mach/milan.h) \ $(wildcard include/config/mach/quartzv2.h) \ $(wildcard include/config/mach/rsvp.h) \ $(wildcard include/config/mach/rmp200.h) \ $(wildcard include/config/mach/snapper/9260.h) \ $(wildcard include/config/mach/dsm320.h) \ $(wildcard include/config/mach/adsgcm.h) \ $(wildcard include/config/mach/ase2/400.h) \ $(wildcard include/config/mach/pizza.h) \ $(wildcard include/config/mach/spot/ngpl.h) \ $(wildcard include/config/mach/armata.h) \ $(wildcard include/config/mach/exeda.h) \ $(wildcard include/config/mach/mx31sf005.h) \ $(wildcard include/config/mach/f5d8231/4/v2.h) \ $(wildcard include/config/mach/q2440.h) \ $(wildcard include/config/mach/qq2440.h) \ $(wildcard include/config/mach/mini2440.h) \ $(wildcard include/config/mach/colibri300.h) \ $(wildcard include/config/mach/jades.h) \ $(wildcard include/config/mach/spark.h) \ $(wildcard include/config/mach/benzina.h) \ $(wildcard include/config/mach/blaze.h) \ $(wildcard include/config/mach/linkstation/ls/hgl.h) \ $(wildcard include/config/mach/htcvenus.h) \ $(wildcard include/config/mach/sony/prs505.h) \ $(wildcard include/config/mach/hanlin/v3.h) \ $(wildcard include/config/mach/sapphira.h) \ $(wildcard include/config/mach/dack/sda/01.h) \ $(wildcard include/config/mach/armbox.h) \ $(wildcard include/config/mach/harris/rvp.h) \ $(wildcard include/config/mach/ribaldo.h) \ $(wildcard include/config/mach/agora.h) \ $(wildcard include/config/mach/omap3/mini.h) \ $(wildcard include/config/mach/a9sam6432/b.h) \ $(wildcard include/config/mach/usg2410.h) \ $(wildcard include/config/mach/pc72052/i10/revb.h) \ $(wildcard include/config/mach/mx35/exm32.h) \ $(wildcard include/config/mach/topas910.h) \ $(wildcard include/config/mach/hyena.h) \ $(wildcard include/config/mach/pospax.h) \ $(wildcard include/config/mach/hdl/gx.h) \ $(wildcard include/config/mach/ctera/4bay.h) \ $(wildcard include/config/mach/ctera/plug/c.h) \ $(wildcard include/config/mach/crwea/plug/i.h) \ $(wildcard include/config/mach/egauge2.h) \ $(wildcard include/config/mach/didj.h) \ $(wildcard include/config/mach/meister.h) \ $(wildcard include/config/mach/htcblackstone.h) \ $(wildcard include/config/mach/cpuat9g20.h) \ $(wildcard include/config/mach/smdk6440.h) \ $(wildcard include/config/mach/omap/35xx/mvp.h) \ $(wildcard include/config/mach/ctera/plug/i.h) \ $(wildcard include/config/mach/pvg610.h) \ $(wildcard include/config/mach/hprw6815.h) \ $(wildcard include/config/mach/omap3/oswald.h) \ $(wildcard include/config/mach/nas4220b.h) \ $(wildcard include/config/mach/htcraphael/cdma.h) \ $(wildcard include/config/mach/htcdiamond/cdma.h) \ $(wildcard include/config/mach/scaler.h) \ $(wildcard include/config/mach/zylonite2.h) \ $(wildcard include/config/mach/aspenite.h) \ $(wildcard include/config/mach/teton.h) \ $(wildcard include/config/mach/ttc/dkb.h) \ $(wildcard include/config/mach/bishop2.h) \ $(wildcard include/config/mach/ippv5.h) \ $(wildcard include/config/mach/farm926.h) \ $(wildcard include/config/mach/mmccpu.h) \ $(wildcard include/config/mach/sgmsfl.h) \ $(wildcard include/config/mach/tt8000.h) \ $(wildcard include/config/mach/zrn4300lp.h) \ $(wildcard include/config/mach/mptc.h) \ $(wildcard include/config/mach/h6051.h) \ $(wildcard include/config/mach/pvg610/101.h) \ $(wildcard include/config/mach/stamp9261/pc/evb.h) \ $(wildcard include/config/mach/pelco/odysseus.h) \ $(wildcard include/config/mach/tny/a9260.h) \ $(wildcard include/config/mach/tny/a9g20.h) \ $(wildcard include/config/mach/aesop/mp2530f.h) \ $(wildcard include/config/mach/dx900.h) \ $(wildcard include/config/mach/cpodc2.h) \ $(wildcard include/config/mach/tilt/8925.h) \ $(wildcard include/config/mach/davinci/dm357/evm.h) \ $(wildcard include/config/mach/swordfish.h) \ $(wildcard include/config/mach/corvus.h) \ $(wildcard include/config/mach/taurus.h) \ $(wildcard include/config/mach/axm.h) \ $(wildcard include/config/mach/axc.h) \ $(wildcard include/config/mach/baby.h) \ $(wildcard include/config/mach/mp200.h) \ $(wildcard include/config/mach/pcm043.h) \ $(wildcard include/config/mach/hanlin/v3c.h) \ $(wildcard include/config/mach/kbk9g20.h) \ $(wildcard include/config/mach/adsturbog5.h) \ $(wildcard include/config/mach/avenger/lite1.h) \ $(wildcard include/config/mach/suc.h) \ $(wildcard include/config/mach/at91sam7s256.h) \ $(wildcard include/config/mach/mendoza.h) \ $(wildcard include/config/mach/kira.h) \ $(wildcard include/config/mach/mx1hbm.h) \ $(wildcard include/config/mach/quatro43xx.h) \ $(wildcard include/config/mach/quatro4230.h) \ $(wildcard include/config/mach/nsb400.h) \ $(wildcard include/config/mach/drp255.h) \ $(wildcard include/config/mach/thoth.h) \ $(wildcard include/config/mach/firestone.h) \ $(wildcard include/config/mach/asusp750.h) \ $(wildcard include/config/mach/ctera/dl.h) \ $(wildcard include/config/mach/socr.h) \ $(wildcard include/config/mach/htcoxygen.h) \ $(wildcard include/config/mach/heroc.h) \ $(wildcard include/config/mach/zeno6800.h) \ $(wildcard include/config/mach/sc2mcs.h) \ $(wildcard include/config/mach/gene100.h) \ $(wildcard include/config/mach/as353x.h) \ $(wildcard include/config/mach/sheevaplug.h) \ $(wildcard include/config/mach/at91sam9g20.h) \ $(wildcard include/config/mach/mv88f6192gtw/fe.h) \ $(wildcard include/config/mach/cc9200.h) \ $(wildcard include/config/mach/sm9200.h) \ $(wildcard include/config/mach/tp9200.h) \ $(wildcard include/config/mach/snapperdv.h) \ $(wildcard include/config/mach/avengers/lite.h) \ $(wildcard include/config/mach/avengers/lite1.h) \ $(wildcard include/config/mach/omap3axon.h) \ $(wildcard include/config/mach/ma8xx.h) \ $(wildcard include/config/mach/mp201ek.h) \ $(wildcard include/config/mach/davinci/tux.h) \ $(wildcard include/config/mach/mpa1600.h) \ $(wildcard include/config/mach/pelco/troy.h) \ $(wildcard include/config/mach/nsb667.h) \ $(wildcard include/config/mach/rovers5/4mpix.h) \ $(wildcard include/config/mach/twocom.h) \ $(wildcard include/config/mach/ubisys/p9/rcu3r2.h) \ $(wildcard include/config/mach/hero/espresso.h) \ $(wildcard include/config/mach/afeusb.h) \ $(wildcard include/config/mach/t830.h) \ $(wildcard include/config/mach/spd8020/cc.h) \ $(wildcard include/config/mach/om/3d7k.h) \ $(wildcard include/config/mach/picocom2.h) \ $(wildcard include/config/mach/uwg4mx27.h) \ $(wildcard include/config/mach/uwg4mx31.h) \ $(wildcard include/config/mach/cherry.h) \ $(wildcard include/config/mach/mx51/babbage.h) \ $(wildcard include/config/mach/s3c2440turkiye.h) \ $(wildcard include/config/mach/tx37.h) \ $(wildcard include/config/mach/sbc2800/9g20.h) \ $(wildcard include/config/mach/benzglb.h) \ $(wildcard include/config/mach/benztd.h) \ $(wildcard include/config/mach/cartesio/plus.h) \ $(wildcard include/config/mach/solrad/g20.h) \ $(wildcard include/config/mach/mx27wallace.h) \ $(wildcard include/config/mach/fmzwebmodul.h) \ $(wildcard include/config/mach/rd78x00/masa.h) \ $(wildcard include/config/mach/smallogger.h) \ $(wildcard include/config/mach/ccw9p9215.h) \ $(wildcard include/config/mach/dm355/leopard.h) \ $(wildcard include/config/mach/ts219.h) \ $(wildcard include/config/mach/tny/a9263.h) \ $(wildcard include/config/mach/apollo.h) \ $(wildcard include/config/mach/at91cap9stk.h) \ $(wildcard include/config/mach/spc300.h) \ $(wildcard include/config/mach/eko.h) \ $(wildcard include/config/mach/ccw9m2443.h) \ $(wildcard include/config/mach/ccw9m2443js.h) \ $(wildcard include/config/mach/m2m/router/device.h) \ $(wildcard include/config/mach/star9104nas.h) \ $(wildcard include/config/mach/pca100.h) \ $(wildcard include/config/mach/z3/dm365/mod/01.h) \ $(wildcard include/config/mach/hipox.h) \ $(wildcard include/config/mach/omap3/piteds.h) \ $(wildcard include/config/mach/bm150r.h) \ $(wildcard include/config/mach/tbone.h) \ $(wildcard include/config/mach/merlin.h) \ $(wildcard include/config/mach/falcon.h) \ $(wildcard include/config/mach/davinci/da850/evm.h) \ $(wildcard include/config/mach/s5p6440.h) \ $(wildcard include/config/mach/at91sam9g10ek.h) \ $(wildcard include/config/mach/omap/4430sdp.h) \ $(wildcard include/config/mach/lpc313x.h) \ $(wildcard include/config/mach/magx/zn5.h) \ $(wildcard include/config/mach/magx/em30.h) \ $(wildcard include/config/mach/magx/ve66.h) \ $(wildcard include/config/mach/meesc.h) \ $(wildcard include/config/mach/otc570.h) \ $(wildcard include/config/mach/bcu2412.h) \ $(wildcard include/config/mach/beacon.h) \ $(wildcard include/config/mach/actia/tgw.h) \ $(wildcard include/config/mach/e4430.h) \ $(wildcard include/config/mach/ql300.h) \ $(wildcard include/config/mach/btmavb101.h) \ $(wildcard include/config/mach/btmawb101.h) \ $(wildcard include/config/mach/sq201.h) \ $(wildcard include/config/mach/quatro45xx.h) \ $(wildcard include/config/mach/openpad.h) \ $(wildcard include/config/mach/tx25.h) \ $(wildcard include/config/mach/omap3/torpedo.h) \ $(wildcard include/config/mach/htcraphael/k.h) \ $(wildcard include/config/mach/lal43.h) \ $(wildcard include/config/mach/htcraphael/cdma500.h) \ $(wildcard include/config/mach/anw6410.h) \ $(wildcard include/config/mach/htcprophet.h) \ $(wildcard include/config/mach/cfa/10022.h) \ $(wildcard include/config/mach/imx27/visstrim/m10.h) \ $(wildcard include/config/mach/px2imx27.h) \ $(wildcard include/config/mach/stm3210e/eval.h) \ $(wildcard include/config/mach/dvs10.h) \ $(wildcard include/config/mach/portuxg20.h) \ $(wildcard include/config/mach/arm/spv.h) \ $(wildcard include/config/mach/smdkc110.h) \ $(wildcard include/config/mach/cabespresso.h) \ $(wildcard include/config/mach/hmc800.h) \ $(wildcard include/config/mach/sholes.h) \ $(wildcard include/config/mach/btmxc31.h) \ $(wildcard include/config/mach/dt501.h) \ $(wildcard include/config/mach/ktx.h) \ $(wildcard include/config/mach/omap3517evm.h) \ $(wildcard include/config/mach/netspace/v2.h) \ $(wildcard include/config/mach/netspace/max/v2.h) \ $(wildcard include/config/mach/d2net/v2.h) \ $(wildcard include/config/mach/net2big/v2.h) \ $(wildcard include/config/mach/net4big/v2.h) \ $(wildcard include/config/mach/net5big/v2.h) \ $(wildcard include/config/mach/endb2443.h) \ $(wildcard include/config/mach/inetspace/v2.h) \ $(wildcard include/config/mach/tros.h) \ $(wildcard include/config/mach/pelco/homer.h) \ $(wildcard include/config/mach/ofsp8.h) \ $(wildcard include/config/mach/at91sam9g45ekes.h) \ $(wildcard include/config/mach/guf/cupid.h) \ $(wildcard include/config/mach/eab1r.h) \ $(wildcard include/config/mach/cordoba.h) \ $(wildcard include/config/mach/irvine.h) \ $(wildcard include/config/mach/sff772.h) \ $(wildcard include/config/mach/pelco/milano.h) \ $(wildcard include/config/mach/pc7302.h) \ $(wildcard include/config/mach/bip6000.h) \ $(wildcard include/config/mach/silvermoon.h) \ $(wildcard include/config/mach/vc0830.h) \ $(wildcard include/config/mach/dt430.h) \ $(wildcard include/config/mach/ji42pf.h) \ $(wildcard include/config/mach/gnet/ksm.h) \ $(wildcard include/config/mach/gnet/sgm.h) \ $(wildcard include/config/mach/gnet/sgr.h) \ $(wildcard include/config/mach/omap3/icetekevm.h) \ $(wildcard include/config/mach/pnp.h) \ $(wildcard include/config/mach/ctera/2bay/k.h) \ $(wildcard include/config/mach/ctera/2bay/u.h) \ $(wildcard include/config/mach/sas/c.h) \ $(wildcard include/config/mach/vma2315.h) \ $(wildcard include/config/mach/vcs.h) \ $(wildcard include/config/mach/spear600.h) \ $(wildcard include/config/mach/spear300.h) \ $(wildcard include/config/mach/spear1300.h) \ $(wildcard include/config/mach/lilly1131.h) \ $(wildcard include/config/mach/arvoo/ax301.h) \ $(wildcard include/config/mach/mapphone.h) \ $(wildcard include/config/mach/legend.h) \ $(wildcard include/config/mach/salsa.h) \ $(wildcard include/config/mach/lounge.h) \ $(wildcard include/config/mach/vision.h) \ $(wildcard include/config/mach/vmb20.h) \ $(wildcard include/config/mach/hy2410.h) \ $(wildcard include/config/mach/hy9315.h) \ $(wildcard include/config/mach/bullwinkle.h) \ $(wildcard include/config/mach/arm/ultimator2.h) \ $(wildcard include/config/mach/vs/v210.h) \ $(wildcard include/config/mach/vs/v212.h) \ $(wildcard include/config/mach/hmt.h) \ $(wildcard include/config/mach/suen3.h) \ $(wildcard include/config/mach/vesper.h) \ $(wildcard include/config/mach/str9.h) \ $(wildcard include/config/mach/omap3/wl/ff.h) \ $(wildcard include/config/mach/simcom.h) \ $(wildcard include/config/mach/mcwebio.h) \ $(wildcard include/config/mach/omap3/phrazer.h) \ $(wildcard include/config/mach/darwin.h) \ $(wildcard include/config/mach/oratiscomu.h) \ $(wildcard include/config/mach/rtsbc20.h) \ $(wildcard include/config/mach/i780.h) \ $(wildcard include/config/mach/gemini324.h) \ $(wildcard include/config/mach/oratislan.h) \ $(wildcard include/config/mach/oratisalog.h) \ $(wildcard include/config/mach/oratismadi.h) \ $(wildcard include/config/mach/oratisot16.h) \ $(wildcard include/config/mach/oratisdesk.h) \ $(wildcard include/config/mach/v2p/ca9.h) \ $(wildcard include/config/mach/sintexo.h) \ $(wildcard include/config/mach/cm3389.h) \ $(wildcard include/config/mach/omap3/cio.h) \ $(wildcard include/config/mach/sgh/i900.h) \ $(wildcard include/config/mach/bst100.h) \ $(wildcard include/config/mach/passion.h) \ $(wildcard include/config/mach/indesign/at91sam.h) \ $(wildcard include/config/mach/c4/badger.h) \ $(wildcard include/config/mach/c4/viper.h) \ $(wildcard include/config/mach/d2net.h) \ $(wildcard include/config/mach/bigdisk.h) \ $(wildcard include/config/mach/notalvision.h) \ $(wildcard include/config/mach/omap3/kboc.h) \ $(wildcard include/config/mach/cyclone.h) \ $(wildcard include/config/mach/ninja.h) \ $(wildcard include/config/mach/at91sam9g20ek/2mmc.h) \ $(wildcard include/config/mach/bcmring.h) \ $(wildcard include/config/mach/resol/dl2.h) \ $(wildcard include/config/mach/ifosw.h) \ $(wildcard include/config/mach/htcrhodium.h) \ $(wildcard include/config/mach/htctopaz.h) \ $(wildcard include/config/mach/matrix504.h) \ $(wildcard include/config/mach/mrfsa.h) \ $(wildcard include/config/mach/sc/p270.h) \ $(wildcard include/config/mach/atlas5/evb.h) \ $(wildcard include/config/mach/pelco/lobox.h) \ $(wildcard include/config/mach/dilax/pcu200.h) \ $(wildcard include/config/mach/leonardo.h) \ $(wildcard include/config/mach/zoran/approach7.h) \ $(wildcard include/config/mach/dp6xx.h) \ $(wildcard include/config/mach/bcm2153/vesper.h) \ $(wildcard include/config/mach/passionc.h) \ $(wildcard include/config/mach/clickc.h) \ $(wildcard include/config/mach/zb/gateway.h) \ $(wildcard include/config/mach/tazcard.h) \ $(wildcard include/config/mach/tazdev.h) \ $(wildcard include/config/mach/annax/cb/arm.h) \ $(wildcard include/config/mach/annax/dm3.h) \ $(wildcard include/config/mach/cerebric.h) \ $(wildcard include/config/mach/orca.h) \ $(wildcard include/config/mach/pc9260.h) \ $(wildcard include/config/mach/ems285a.h) \ $(wildcard include/config/mach/gec2410.h) \ $(wildcard include/config/mach/gec2440.h) \ $(wildcard include/config/mach/arch/mw903.h) \ $(wildcard include/config/mach/mw2440.h) \ $(wildcard include/config/mach/ecac2378.h) \ $(wildcard include/config/mach/tazkiosk.h) \ $(wildcard include/config/mach/whiterabbit/mch.h) \ $(wildcard include/config/mach/sbox9263.h) \ $(wildcard include/config/mach/oreo.h) \ $(wildcard include/config/mach/smdk6442.h) \ $(wildcard include/config/mach/openrd/base.h) \ $(wildcard include/config/mach/incredible.h) \ $(wildcard include/config/mach/incrediblec.h) \ $(wildcard include/config/mach/heroct.h) \ $(wildcard include/config/mach/mmnet1000.h) \ $(wildcard include/config/mach/devkit8000.h) \ $(wildcard include/config/mach/devkit9000.h) \ $(wildcard include/config/mach/mx31txtr.h) \ $(wildcard include/config/mach/u380.h) \ $(wildcard include/config/mach/hualu/board.h) \ $(wildcard include/config/mach/npcmx50.h) \ $(wildcard include/config/mach/mx51/lange51.h) \ $(wildcard include/config/mach/mx51/lange52.h) \ $(wildcard include/config/mach/riom.h) \ $(wildcard include/config/mach/comcas.h) \ $(wildcard include/config/mach/wsi/mx27.h) \ $(wildcard include/config/mach/cm/t35.h) \ $(wildcard include/config/mach/net2big.h) \ $(wildcard include/config/mach/motorola/a1600.h) \ $(wildcard include/config/mach/igep0020.h) \ $(wildcard include/config/mach/igep0010.h) \ $(wildcard include/config/mach/mv6281gtwge2.h) \ $(wildcard include/config/mach/scat100.h) \ $(wildcard include/config/mach/sanmina.h) \ $(wildcard include/config/mach/momento.h) \ $(wildcard include/config/mach/nuc9xx.h) \ $(wildcard include/config/mach/nuc910evb.h) \ $(wildcard include/config/mach/nuc920evb.h) \ $(wildcard include/config/mach/nuc950evb.h) \ $(wildcard include/config/mach/nuc945evb.h) \ $(wildcard include/config/mach/nuc960evb.h) \ $(wildcard include/config/mach/nuc932evb.h) \ $(wildcard include/config/mach/nuc900.h) \ $(wildcard include/config/mach/sd1soc.h) \ $(wildcard include/config/mach/ln2440bc.h) \ $(wildcard include/config/mach/rsbc.h) \ $(wildcard include/config/mach/openrd/client.h) \ $(wildcard include/config/mach/hpipaq11x.h) \ $(wildcard include/config/mach/wayland.h) \ $(wildcard include/config/mach/acnbsx102.h) \ $(wildcard include/config/mach/hwat91.h) \ $(wildcard include/config/mach/at91sam9263cs.h) \ $(wildcard include/config/mach/csb732.h) \ $(wildcard include/config/mach/u8500.h) \ $(wildcard include/config/mach/huqiu.h) \ $(wildcard include/config/mach/mx51/kunlun.h) \ $(wildcard include/config/mach/pmt1g.h) \ $(wildcard include/config/mach/htcelf.h) \ $(wildcard include/config/mach/armadillo420.h) \ $(wildcard include/config/mach/armadillo440.h) \ $(wildcard include/config/mach/u/chip/dual/arm.h) \ $(wildcard include/config/mach/csr/bdb3.h) \ $(wildcard include/config/mach/dolby/cat1018.h) \ $(wildcard include/config/mach/hy9307.h) \ $(wildcard include/config/mach/a/es.h) \ $(wildcard include/config/mach/davinci/irif.h) \ $(wildcard include/config/mach/agama9263.h) \ $(wildcard include/config/mach/marvell/jasper.h) \ $(wildcard include/config/mach/flint.h) \ $(wildcard include/config/mach/tavorevb3.h) \ $(wildcard include/config/mach/sch/m490.h) \ $(wildcard include/config/mach/rbl01.h) \ $(wildcard include/config/mach/omnifi.h) \ $(wildcard include/config/mach/otavalo.h) \ $(wildcard include/config/mach/sienna.h) \ $(wildcard include/config/mach/htc/excalibur/s620.h) \ $(wildcard include/config/mach/htc/opal.h) \ $(wildcard include/config/mach/touchbook.h) \ $(wildcard include/config/mach/latte.h) \ $(wildcard include/config/mach/xa200.h) \ $(wildcard include/config/mach/nimrod.h) \ $(wildcard include/config/mach/cc9p9215/3g.h) \ $(wildcard include/config/mach/cc9p9215/3gjs.h) \ $(wildcard include/config/mach/tk71.h) \ $(wildcard include/config/mach/comham3525.h) \ $(wildcard include/config/mach/mx31erebus.h) \ $(wildcard include/config/mach/mcardmx27.h) \ $(wildcard include/config/mach/paradise.h) \ $(wildcard include/config/mach/tide.h) \ $(wildcard include/config/mach/wzl2440.h) \ $(wildcard include/config/mach/sdrdemo.h) \ $(wildcard include/config/mach/ethercan2.h) \ $(wildcard include/config/mach/ecmimg20.h) \ $(wildcard include/config/mach/omap/dragon.h) \ $(wildcard include/config/mach/halo.h) \ $(wildcard include/config/mach/huangshan.h) \ $(wildcard include/config/mach/vl/ma2sc.h) \ $(wildcard include/config/mach/raumfeld/rc.h) \ $(wildcard include/config/mach/raumfeld/connector.h) \ $(wildcard include/config/mach/raumfeld/speaker.h) \ $(wildcard include/config/mach/multibus/master.h) \ $(wildcard include/config/mach/multibus/pbk.h) \ $(wildcard include/config/mach/tnetv107x.h) \ $(wildcard include/config/mach/snake.h) \ $(wildcard include/config/mach/cwmx27.h) \ $(wildcard include/config/mach/sch/m480.h) \ $(wildcard include/config/mach/platypus.h) \ $(wildcard include/config/mach/pss2.h) \ $(wildcard include/config/mach/davinci/apm150.h) \ $(wildcard include/config/mach/str9100.h) \ $(wildcard include/config/mach/net5big.h) \ $(wildcard include/config/mach/seabed9263.h) \ $(wildcard include/config/mach/mx51/m2id.h) \ $(wildcard include/config/mach/octvocplus/eb.h) \ $(wildcard include/config/mach/klk/firefox.h) \ $(wildcard include/config/mach/klk/wirma.h) \ $(wildcard include/config/mach/klk/wirma/mmi.h) \ $(wildcard include/config/mach/supersonic.h) \ $(wildcard include/config/mach/liberty.h) \ $(wildcard include/config/mach/mh355.h) \ $(wildcard include/config/mach/pc7802.h) \ $(wildcard include/config/mach/gnet/sgc.h) \ $(wildcard include/config/mach/einstein15.h) \ $(wildcard include/config/mach/cmpd.h) \ $(wildcard include/config/mach/davinci/hase1.h) \ $(wildcard include/config/mach/lgeincitephone.h) \ $(wildcard include/config/mach/ea313x.h) \ $(wildcard include/config/mach/fwbd/39064.h) \ $(wildcard include/config/mach/fwbd/390128.h) \ $(wildcard include/config/mach/pelco/moe.h) \ $(wildcard include/config/mach/minimix27.h) \ $(wildcard include/config/mach/omap3/thunder.h) \ $(wildcard include/config/mach/mx27amata.h) \ $(wildcard include/config/mach/bgat1.h) \ $(wildcard include/config/mach/buzz.h) \ $(wildcard include/config/mach/mb9g20.h) \ $(wildcard include/config/mach/yushan.h) \ $(wildcard include/config/mach/lizard.h) \ $(wildcard include/config/mach/omap3polycom.h) \ $(wildcard include/config/mach/smdkv210.h) \ $(wildcard include/config/mach/bravo.h) \ $(wildcard include/config/mach/siogentoo1.h) \ $(wildcard include/config/mach/siogentoo2.h) \ $(wildcard include/config/mach/sm3k.h) \ $(wildcard include/config/mach/acer/tempo/f900.h) \ $(wildcard include/config/mach/sst61vc010/dev.h) \ $(wildcard include/config/mach/glittertind.h) \ $(wildcard include/config/mach/omap/zoom3.h) \ $(wildcard include/config/mach/omap/3630sdp.h) \ $(wildcard include/config/mach/cybook2440.h) \ $(wildcard include/config/mach/torino/s.h) \ $(wildcard include/config/mach/havana.h) \ $(wildcard include/config/mach/beaumont/11.h) \ $(wildcard include/config/mach/vanguard.h) \ $(wildcard include/config/mach/s5pc110/draco.h) \ $(wildcard include/config/mach/cartesio/two.h) \ $(wildcard include/config/mach/aster.h) \ $(wildcard include/config/mach/voguesv210.h) \ $(wildcard include/config/mach/acm500x.h) \ $(wildcard include/config/mach/km9260.h) \ $(wildcard include/config/mach/nideflexg1.h) \ $(wildcard include/config/mach/ctera/plug/io.h) \ $(wildcard include/config/mach/smartq7.h) \ $(wildcard include/config/mach/at91sam9g10ek2.h) \ $(wildcard include/config/mach/asusp527.h) \ $(wildcard include/config/mach/at91sam9g20mpm2.h) \ $(wildcard include/config/mach/topasa900.h) \ $(wildcard include/config/mach/electrum/100.h) \ $(wildcard include/config/mach/mx51grb.h) \ $(wildcard include/config/mach/xea300.h) \ $(wildcard include/config/mach/htcstartrek.h) \ $(wildcard include/config/mach/lima.h) \ $(wildcard include/config/mach/csb740.h) \ $(wildcard include/config/mach/usb/s8815.h) \ $(wildcard include/config/mach/watson/efm/plugin.h) \ $(wildcard include/config/mach/milkyway.h) \ $(wildcard include/config/mach/g4evm.h) \ $(wildcard include/config/mach/picomod6.h) \ $(wildcard include/config/mach/omapl138/hawkboard.h) \ $(wildcard include/config/mach/ip6000.h) \ $(wildcard include/config/mach/ip6010.h) \ $(wildcard include/config/mach/utm400.h) \ $(wildcard include/config/mach/omap3/zybex.h) \ $(wildcard include/config/mach/wireless/space.h) \ $(wildcard include/config/mach/sx560.h) \ $(wildcard include/config/mach/ts41x.h) \ $(wildcard include/config/mach/elphel10373.h) \ $(wildcard include/config/mach/rhobot.h) \ $(wildcard include/config/mach/mx51/refresh.h) \ $(wildcard include/config/mach/ls9260.h) \ $(wildcard include/config/mach/shank.h) \ $(wildcard include/config/mach/qsd8x50/st1.h) \ $(wildcard include/config/mach/at91sam9m10ekes.h) \ $(wildcard include/config/mach/hiram.h) \ $(wildcard include/config/mach/phy3250.h) \ $(wildcard include/config/mach/ea3250.h) \ $(wildcard include/config/mach/fdi3250.h) \ $(wildcard include/config/mach/whitestone.h) \ $(wildcard include/config/mach/at91sam9263nit.h) \ $(wildcard include/config/mach/ccmx51.h) \ $(wildcard include/config/mach/ccmx51js.h) \ $(wildcard include/config/mach/ccwmx51.h) \ $(wildcard include/config/mach/ccwmx51js.h) \ $(wildcard include/config/mach/mini6410.h) \ $(wildcard include/config/mach/tiny6410.h) \ $(wildcard include/config/mach/nano6410.h) \ $(wildcard include/config/mach/at572d940hfnldb.h) \ $(wildcard include/config/mach/htcleo.h) \ $(wildcard include/config/mach/avp13.h) \ $(wildcard include/config/mach/xxsvideod.h) \ $(wildcard include/config/mach/vpnext.h) \ $(wildcard include/config/mach/swarco/itc3.h) \ $(wildcard include/config/mach/tx51.h) \ $(wildcard include/config/mach/dolby/cat1021.h) \ $(wildcard include/config/mach/mx28evk.h) \ $(wildcard include/config/mach/phoenix260.h) \ $(wildcard include/config/mach/uvaca/stork.h) \ $(wildcard include/config/mach/smartq5.h) \ $(wildcard include/config/mach/all3078.h) \ $(wildcard include/config/mach/ctera/2bay/ds.h) \ $(wildcard include/config/mach/siogentoo3.h) \ $(wildcard include/config/mach/epb5000.h) \ $(wildcard include/config/mach/hy9263.h) \ $(wildcard include/config/mach/acer/tempo/m900.h) \ $(wildcard include/config/mach/acer/tempo/dx900.h) \ $(wildcard include/config/mach/acer/tempo/x960.h) \ $(wildcard include/config/mach/acer/eten/v900.h) \ $(wildcard include/config/mach/acer/eten/x900.h) \ $(wildcard include/config/mach/bonnell.h) \ $(wildcard include/config/mach/oht/mx27.h) \ $(wildcard include/config/mach/htcquartz.h) \ $(wildcard include/config/mach/davinci/dm6467tevm.h) \ $(wildcard include/config/mach/c3ax03.h) \ $(wildcard include/config/mach/mxt/td60.h) \ $(wildcard include/config/mach/esyx.h) \ $(wildcard include/config/mach/dove/db2.h) \ $(wildcard include/config/mach/bulldog.h) \ $(wildcard include/config/mach/derell/me2000.h) \ $(wildcard include/config/mach/bcmring/base.h) \ $(wildcard include/config/mach/bcmring/evm.h) \ $(wildcard include/config/mach/bcmring/evm/jazz.h) \ $(wildcard include/config/mach/bcmring/sp.h) \ $(wildcard include/config/mach/bcmring/sv.h) \ $(wildcard include/config/mach/bcmring/sv/jazz.h) \ $(wildcard include/config/mach/bcmring/tablet.h) \ $(wildcard include/config/mach/bcmring/vp.h) \ $(wildcard include/config/mach/bcmring/evm/seikor.h) \ $(wildcard include/config/mach/bcmring/sp/wqvga.h) \ $(wildcard include/config/mach/bcmring/custom.h) \ $(wildcard include/config/mach/acer/s200.h) \ $(wildcard include/config/mach/bt270.h) \ $(wildcard include/config/mach/iseo.h) \ $(wildcard include/config/mach/cezanne.h) \ $(wildcard include/config/mach/lucca.h) \ $(wildcard include/config/mach/supersmart.h) \ $(wildcard include/config/mach/cs/misano.h) \ $(wildcard include/config/mach/magnolia2.h) \ $(wildcard include/config/mach/emxx.h) \ $(wildcard include/config/mach/outlaw.h) \ $(wildcard include/config/mach/riot/bei2.h) \ $(wildcard include/config/mach/riot/vox.h) \ $(wildcard include/config/mach/riot/x37.h) \ $(wildcard include/config/mach/mega25mx.h) \ $(wildcard include/config/mach/benzina2.h) \ $(wildcard include/config/mach/ignite.h) \ $(wildcard include/config/mach/foggia.h) \ $(wildcard include/config/mach/arezzo.h) \ $(wildcard include/config/mach/leica/skywalker.h) \ $(wildcard include/config/mach/jacinto2/jamr.h) \ $(wildcard include/config/mach/gts/nova.h) \ $(wildcard include/config/mach/p3600.h) \ $(wildcard include/config/mach/dlt2.h) \ $(wildcard include/config/mach/df3120.h) \ $(wildcard include/config/mach/ecucore/9g20.h) \ $(wildcard include/config/mach/nautel/lpc3240.h) \ $(wildcard include/config/mach/glacier.h) \ $(wildcard include/config/mach/phrazer/bulldog.h) \ $(wildcard include/config/mach/omap3/bulldog.h) \ $(wildcard include/config/mach/pca101.h) \ $(wildcard include/config/mach/buzzc.h) \ $(wildcard include/config/mach/sasie2.h) \ $(wildcard include/config/mach/davinci/cio.h) \ $(wildcard include/config/mach/smartmeter/dl.h) \ $(wildcard include/config/mach/wzl6410.h) \ $(wildcard include/config/mach/wzl6410m.h) \ $(wildcard include/config/mach/wzl6410f.h) \ $(wildcard include/config/mach/wzl6410i.h) \ $(wildcard include/config/mach/spacecom1.h) \ $(wildcard include/config/mach/pingu920.h) \ $(wildcard include/config/mach/bravoc.h) \ $(wildcard include/config/mach/cybo2440.h) \ $(wildcard include/config/mach/vdssw.h) \ $(wildcard include/config/mach/romulus.h) \ $(wildcard include/config/mach/omap/magic.h) \ $(wildcard include/config/mach/eltd100.h) \ $(wildcard include/config/mach/capc7117.h) \ $(wildcard include/config/mach/swan.h) \ $(wildcard include/config/mach/veu.h) \ $(wildcard include/config/mach/rm2.h) \ $(wildcard include/config/mach/tt2100.h) \ $(wildcard include/config/mach/venice.h) \ $(wildcard include/config/mach/pc7323.h) \ $(wildcard include/config/mach/masp.h) \ $(wildcard include/config/mach/fujitsu/tvstbsoc.h) \ $(wildcard include/config/mach/fujitsu/tvstbsoc1.h) \ $(wildcard include/config/mach/lexikon.h) \ $(wildcard include/config/mach/mini2440v2.h) \ $(wildcard include/config/mach/icontrol.h) \ $(wildcard include/config/mach/sheevad.h) \ $(wildcard include/config/mach/qsd8x50a/st1/1.h) \ $(wildcard include/config/mach/qsd8x50a/st1/5.h) \ $(wildcard include/config/mach/bee.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ include/linux/linkage.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/linkage.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/linux/typecheck.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/irqflags.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/linux/stat.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/stat.h \ include/linux/time.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/printk/debug.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /usr/bin/../lib/gcc/arm-eabi/4.5.0/include/stdarg.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/bitops.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/ratelimit.h \ include/linux/param.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_printk.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug/relative/pointers.h) \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/spinlock_up.h \ include/linux/spinlock_api_up.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/atomic.h \ include/asm-generic/atomic.h \ include/linux/math64.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/div64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/unevictable/lru.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/wait.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/current.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/ifar.h) \ $(wildcard include/config/cpu/pabrt/noifar.h) \ include/asm-generic/page.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/errno.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/mutex-debug.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/cpumask.h \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/elf.h \ include/linux/elf-em.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/elf.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/marker.h \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/completion.h \ include/linux/rcuclassic.h \ $(wildcard include/config/rcu/cpu/stall/detector.h) \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ /home/jacob/source/wildfire-kernel/arch/arm/include/asm/module.h \ include/linux/ctype.h \ include/linux/textsearch.h \ include/linux/err.h \ lib/ts_kmp.o: $(deps_lib/ts_kmp.o) $(deps_lib/ts_kmp.o):
HCDRJacob/wildfire-kernel
lib/.ts_kmp.o.cmd
bat
gpl-2.0
140,383
@echo off set PROGRAM=.\RunCmdServer\RunCmdServer.exe set OPTIONS=server %* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: rem if not defined OPTIONS set OPTIONS=--help ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: set dir=%cd% cd %~dp0 echo %PROGRAM% %OPTIONS% call %PROGRAM% %OPTIONS% set EXIT_CODE=%errorlevel% cd %dir% ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: rem if errorlevel 1 ( rem echo Failure Reason Given is %errorlevel% rem exit /b %errorlevel% rem ) ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: rem timeout /t 10 /nobreak exit /b %EXIT_CODE%
zappyk-github/zappyk-python
src/src_zappyk/runCmdServer/RunCmdServer-launch-server.bat
bat
gpl-2.0
726
cmd_drivers/base/built-in.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o drivers/base/built-in.o drivers/base/core.o drivers/base/bus.o drivers/base/dd.o drivers/base/syscore.o drivers/base/driver.o drivers/base/class.o drivers/base/platform.o drivers/base/cpu.o drivers/base/firmware.o drivers/base/init.o drivers/base/map.o drivers/base/devres.o drivers/base/attribute_container.o drivers/base/transport_class.o drivers/base/topology.o drivers/base/sys.o drivers/base/dma-contiguous.o drivers/base/power/built-in.o drivers/base/dma-mapping.o drivers/base/dma-coherent.o drivers/base/dma-buf.o drivers/base/genlock.o drivers/base/firmware_class.o drivers/base/regmap/built-in.o drivers/base/soc.o drivers/base/sync.o drivers/base/sw_sync.o
friedrich420/Note-3-AEL-Kernel
drivers/base/.built-in.o.cmd
bat
gpl-2.0
779
cmd_sound/soc/pxa/built-in.o := rm -f sound/soc/pxa/built-in.o; /home/leonardo/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-eabi-ar rcs sound/soc/pxa/built-in.o
dalinaum/studyak
sound/soc/pxa/.built-in.o.cmd
bat
gpl-2.0
161
cmd_arch/x86/vdso/vdso-syms.lds := nm arch/x86/vdso/vdso.so.dbg | LC_ALL=C sed -n -e 's/^00*/0/' -e 's/^\([0-9a-fA-F]*\) . \(VDSO[a-zA-Z0-9_]*\)$$/\2 = 0x\1;/p' | LC_ALL=C sort > arch/x86/vdso/vdso-syms.lds
Existed/kernel-2.6.35.14
arch/x86/vdso/.vdso-syms.lds.cmd
bat
gpl-2.0
208
cmd_drivers/media/video/gspca/gspca_main.ko := /home/algesat/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -T /home/algesat/kernel/scripts/module-common.lds --build-id -o drivers/media/video/gspca/gspca_main.ko drivers/media/video/gspca/gspca_main.o drivers/media/video/gspca/gspca_main.mod.o
Algesat/BladeApex2
drivers/media/video/gspca/.gspca_main.ko.cmd
bat
gpl-2.0
285
CD /d ../ Cd /d out/ dotnet run --project ../src/runner/runner.csproj --configuration Release CD /d ../ CD /d scripts/
AndreyLysenkov/psycho-allan
scripts/run.release.bat
bat
gpl-3.0
119
@echo off echo 1. System Maintenance (troubleshooting hardware, upgrading drivers) echo 2. Research (application development, application testing, user studies) echo 3. Education (classes with duke students) echo 4. Outreach (high school groups, summer camps, tours for scholars from other universities, open houses) echo 5. Promotions (example: tours for media, photo shoots) echo 6. Industry (example: private business) echo 7. Personal (example: tours for friends or family) SET /P usagenumber="Enter Usage (1-7): " c:/websocket-logging-daemon/client/release/echoclient.exe "%USERNAME% LogOnUsage %usagenumber%" 2>NUL exit
djzielin/websocket-logging-daemon
scripts/usage.bat
bat
gpl-3.0
630
@echo off "python.cmd" -m "spoc.cherrypy_service.cherrypy_django_service" %*
nens/spoc
windows/servicecontrol.cmd
bat
gpl-3.0
77
@echo off SetLocal EnableDelayedExpansion :: define current version set CurV=4.0 Title Windows 10 Toggle Tweaker v%CurV% Color 1F ::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: get admininstrative privileges ::::============================================================================================================================================================================== ::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== mode con:cols=55 lines=2 >nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system" if '%errorlevel%' NEQ '0' ( echo Requesting administrative privileges... goto UACPrompt ) else ( goto gotAdmin ) :UACPrompt echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >> "%temp%\getadmin.vbs" "%temp%\getadmin.vbs" exit /b :gotAdmin if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" ) pushd "%CD%" CD /D "%~dp0" ::::::::::::::::::::::::::::============================================================================================================================================================================== :: set global variables ::::============================================================================================================================================================================== ::::::::::::::::::::::::::::============================================================================================================================================================================== ::Set Default Input Mode set "SelectMode=Mouse" ::set Reg key path to use to store Script configs set "Main_Script_Reg_key=HKLM\SOFTWARE\ToggleTweaker" :: create dependencies call :batbox rem replacement variables for dependencies set BB="%temp%\batbox.exe" :: change window size mode con:cols=119 lines=33 :: define known builds, new ones will be added as they come along set "knownBuilds=10240 10586 14393" :: Define the current windows build number for /f "tokens=4-7 delims=[.] " %%i in ('ver') do @(if %%i==Version (set "windowsBuild=%%i.%%j.%%k") else (set "windowsBuild=%%k")) set "WAaction=1" :: Define color for all Back buttons in sub-menus set BackButtonColor=8F ::Define Supprted apps in removing sections set "AppStrings=3DBuilder_8wekyb3d8bbwe WindowsAlarms_8wekyb3d8bbwe WindowsCalculator_8wekyb3d8bbwe windowscommunicationsapps_8wekyb3d8bbwe WindowsCamera_8wekyb3d8bbwe MicrosoftOfficeHub_8wekyb3d8bbwe SkypeApp_kzf8qxf38zg5c Getstarted_8wekyb3d8bbwe ZuneMusic_8wekyb3d8bbwe WindowsMaps_8wekyb3d8bbwe MicrosoftSolitaireCollection_8wekyb3d8bbwe BingFinance_8wekyb3d8bbwe ZuneVideo_8wekyb3d8bbwe BingNews_8wekyb3d8bbwe Office.OneNote_8wekyb3d8bbwe People_8wekyb3d8bbwe WindowsPhone_8wekyb3d8bbwe Windows.Photos_8wekyb3d8bbwe BingSports_8wekyb3d8bbwe WindowsSoundRecorder_8wekyb3d8bbwe BingWeather_8wekyb3d8bbwe XboxApp_8wekyb3d8bbwe Messaging_8wekyb3d8bbwe ConnectivityStore_8wekyb3d8bbwe CommsPhone_8wekyb3d8bbwe Office.Sway_8wekyb3d8bbwe oneconnect_8wekyb3d8bbwe microsoftstickynotes_8wekyb3d8bbwe Microsoft3DViewer_8wekyb3d8bbwe MSPaint_8wekyb3d8bbwe WindowsStore_8wekyb3d8bbwe" rem LineFeed variable, requires 2 empty lines below set LF=^ :: Disable Quickedit in CMD (To make Mouse Work) Reg.exe add "HKCU\Console" /v "QuickEdit" /t REG_DWORD /d "0" /f >nul 2>&1 Reg.exe add "HKCU\Console\%%SystemRoot%%_System32_cmd.exe" /v "QuickEdit" /t REG_DWORD /d "0" /f >nul 2>&1 ::Show What's NEW PAge if running current version for the first time reg query "HKLM\SOFTWARE\ToggleTweaker" /v Version | find "%CurV%" >nul if "%errorlevel%"=="0" (goto Versioncheck) else ((Reg.exe add "HKLM\SOFTWARE\ToggleTweaker" /v "Version" /t REG_SZ /d "%CurV%" /f >nul ) & call :WhatsNEW) :::::::::::::::::::::::::::::============================================================================================================================================================================== :: check for new version ::::============================================================================================================================================================================== :::::::::::::::::::::::::::::============================================================================================================================================================================== :Versioncheck cls echo Checking For Updates ... echo. if exist "%~dp0\Updater.bat" ( del "%~dp0\Updater.bat" ) call :Servercheck dl.dropbox.com MainMenu call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiNkU3VUJkYlh0aGc" TWV.TXT set content= for /F "delims=" %%i in (TWV.TXT) do set content=!content! %%i set NewV=%content% del TWV.txt if %NewV% GTR %CurV% (Goto New) if %CurV% == %NewV% (Goto MainMenu) :New call :msgBox NewVersion if /i "!buttonClicked!"=="NO" GOto :Startintro if /i "!buttonClicked!"=="YES" ( ::AUTOUpdate call :Infomsgbox "Downloading and installing The New version..." 9F 900 cd %Temp% call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiXzdKLTVzUkk0SGs" "Toggle Tweaker.bat" CD /D %~dp0 call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiekQtaFJwUzFVYm8" "Updater.bat" start Updater.bat start https://goo.gl/KZqoyt exit ) ::============================================================================================================================================================================== ::============================================================================================================================================================================== ::============================================================================================================================================================================== ::============================================================================================================================================================================== ::============================================================================================================================================================================== ::============================================================================================================================================================================== :Startintro cls :: Skip the Intro call :verify-SkipIntro >nul 2>&1 If "%SkipIntro%"=="YES" goto MainMenu :: generate random number between 1 and 3 because there are 3 intro animations :) SET /a rand=%random% %%4 +1 :: "play" intro call :intro %rand% :::::::::::::: :: MainMenu :: :::::::::::::: :MainMenu cls call :ClearButtons call :verify-Updates 5 set "Title1= _______________________________________________________________________________________" set "Title2= ^| ____ __ ___ ___ __ ____ ____ _ _ ____ __ __ _ ____ ____ ^|" set "Title3= ^| (_ _) / \ / __) / __)( ) ( __) (_ _)/ )( \( __) / _\ ( / )( __)( _ \ ^|" set "Title4= ^| )( ( O )( (_ \( (_ \/ (_/\ ) _) )( \ /\ / ) _) / \ ) ( ) _) ) / ^|" set "Title5= ^| (__) \__/ \___/ \___/\____/(____) (__) (_/\_)(____)\_/\_/(__\_)(____)(__\_) ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1=Windows / Office KMS activation" set "button2=Manage Built-in apps and restore old ones" set "button3=Enable/Disable stuff In Windows10" set "button4=User Interface Tweaks" set "button5=Toggle Windows Update status (%Updates%) [O]" set "button6=Manage Windows Features" set "button7=Manage User Accounts " set "button8=Speed Up PC Performance" set "button9=Manage Microsoft Edge browser" set "button10=Internet Tweaks and Fixes" set "button11=Convert Pro/Home version to LTSB [O]" set "button12=TELEMETRY and Data collection Settings ^!^!" set "button13=TWEAKER SETTINGS" & set Button13Color=37 set "button14=EXIT TOGGLE TWEAKER" & set Button14Color=4F call :drawMenu call :readInput if "%buttonClicked%"=="1" (cls & goto KMSActivation ) if "%buttonClicked%"=="2" (cls & goto WinAppsmenu ) if "%buttonClicked%"=="3" (cls & goto Enable/Disable ) if "%buttonClicked%"=="4" (cls & goto UI ) if "%buttonClicked%"=="5" (if /i "%Updates%"=="Disabled" (Call :Enable-Updates) else (Call :Disable-Updates) & Goto MainMenu ) if "%buttonClicked%"=="6" (cls & goto Features ) if "%buttonClicked%"=="7" (cls & goto Users ) if "%buttonClicked%"=="8" (cls & goto Performance ) if "%buttonClicked%"=="9" (cls & goto Edge ) if "%buttonClicked%"=="10" (cls & goto NETWORK ) if "%buttonClicked%"=="11" (cls & goto LTSB ) if "%buttonClicked%"=="12" (cls & goto TELEMETRY ) if "%buttonClicked%"=="13" (goto :settingsMenu ) if "%buttonClicked%"=="14" (Exit) goto MainMenu :TELEMETRY Call :GetActiveButton 9 1 Call :GetActiveButton 10 2 cls call :ClearButtons set "Title1= _______________________________________________________________________________________" set "Title2= ^| ____ __ ___ ___ __ ____ ____ _ _ ____ __ __ _ ____ ____ ^|" set "Title3= ^| (_ _) / \ / __) / __)( ) ( __) (_ _)/ )( \( __) / _\ ( / )( __)( _ \ ^|" set "Title4= ^| )( ( O )( (_ \( (_ \/ (_/\ ) _) )( \ /\ / ) _) / \ ) ( ) _) ) / ^|" set "Title5= ^| (__) \__/ \___/ \___/\____/(____) (__) (_/\_)(____)\_/\_/(__\_)(____)(__\_) ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button9=[REPO] Windows 10 TELEMETRY REPOSITORY" & set Button3Color=9F set "button10=[Guide] Way to Disable Keylogger/ Telemetry" & set Button2Color=9F set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu %BB% /c 0x1F /g 0 12 echo Telemetry is not Built inside WIndows 10, BUT Windows 10 is Built on TELEMETRY. echo. echo The point here is that anyway you try it to disable Telemetry it will be enabled by something else later echo And if you go far in disabling it you will find yourself using a system that is worse than Win 8 echo. echo. echo. echo But if you insist here are some links that may help you %BB% /c 0x1F /g 59 21 call :readInput if "%buttonClicked%"=="%ActiveButton9%" (cls & Start https://forums.mydigitallife.info/threads/63874-REPO-Windows-10-TELEMETRY-REPOSITORY) if "%buttonClicked%"=="%ActiveButton10%" (cls & Start https://forums.mydigitallife.info/threads/57339-Guide-Way-to-Disable-Keylogger-Telemetry-v3-53) if "%buttonClicked%"=="14" (Goto MainMenu) goto TELEMETRY ::============================================================================================================================================================================== ::============================================================================================================================================================================== :KMSActivation call :ClearButtons set "Title1= _______________________________________________________________________________________" set "Title2= ^| ____ __ ___ ___ __ ____ ____ _ _ ____ __ __ _ ____ ____ ^|" set "Title3= ^| (_ _) / \ / __) / __)( ) ( __) (_ _)/ )( \( __) / _\ ( / )( __)( _ \ ^|" set "Title4= ^| )( ( O )( (_ \( (_ \/ (_/\ ) _) )( \ /\ / ) _) / \ ) ( ) _) ) / ^|" set "Title5= ^| (__) \__/ \___/ \___/\____/(____) (__) (_/\_)(____)\_/\_/(__\_)(____)(__\_) ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1=Check Windows Activation Status" set "button2=Check Office Activation Status" set "button3=Activate Windows/Office Using KMSPico" set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="1" ( cls & call :CheckWindowsactivation ) if "%buttonClicked%"=="2" ( cls & call :CheckOfficeactivation ) if "%buttonClicked%"=="3" ( cls & call :ActivateWindows/office ) if "%buttonClicked%"=="14" goto MainMenu goto KMSActivation ::============================================================================================================================================================================== ::============================================================================================================================================================================== :WinAppsmenu call :ClearButtons call :verify-photoviewer 2 set "Title1= _______________________________________________________________________________________" set "Title2= ^| _ _ __ _ _ ___ __ _ _ ___ __ ___ ___ ___ ^|" set "Title3= ^| ( \/\/ )( )( \( )( \ / \( \/\/ )/ __) ( ) ( ,\( ,\/ __) ^|" set "Title4= ^| \ / )( ) ( ) ) )( () )\ / \__ \ /__\ ) _/ ) _/\__ \ ^|" set "Title5= ^| \/\/ (__)(_)\_)(___/ \__/ \/\/ (___/ (_)(_)(_) (_) (___/ ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1=Remove/restore Windows built-in apps from Users" set "button3=Uninstall/restore Cortana [O]" set "button5=Uninstall/restore Microsoft Edge [O]" set "button7=Uninstall/restore Internet Explorer 11 [O]" set "button9=Uninstall, Disable and reenable Onedrive" set "button11=Uninstall Contact Support (Get Help) App [O]" set "button13=Uninstall WindowsFeedback App [O]" set "button2=Restore Old Windows photo viewer (%photoviewer%)" set "button4=Restore Legacy Calculator (Classic Win32) [O]" set "button6=Restore Win 7 Task manager [O]" set "button8=Restore Classic MSConfig [O]" set "button10=Install Windows DVD Player app [O]" set "button12=Restore Classic Paint app [B:14986] [O]" set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="1" ( cls & call :Awamenu ) if "%buttonClicked%"=="2" ( Call :Enable-photoviewer ) if "%buttonClicked%"=="3" ( cls & call :UninstallCortana ) if "%buttonClicked%"=="4" ( cls & call :CALC32 ) if "%buttonClicked%"=="5" ( cls & call :UninstallEdge ) if "%buttonClicked%"=="6" ( cls & call :Win7Taskmanager ) if "%buttonClicked%"=="7" ( cls & call :UninstallIE11 ) if "%buttonClicked%"=="8" ( cls & call :OLDMSConfig ) if "%buttonClicked%"=="9" ( cls & call :Onedrive ) if "%buttonClicked%"=="10" ( cls & call :InstallDVDapp ) if "%buttonClicked%"=="11" ( cls & call :ContactSuppo ) if "%buttonClicked%"=="12" ( cls & call :Paint32 ) if "%buttonClicked%"=="13" ( cls & call :WFeedbackApp ) if "%buttonClicked%"=="14" goto MainMenu goto WinAppsmenu ::============================================================================================================================================================================== ::============================================================================================================================================================================== :Enable/Disable call :ClearButtons call :verify-WindowsDefender 1 >nul 2>&1 call :verify-QuickAccess 2 >nul 2>&1 call :verify-Firewall 3 >nul 2>&1 call :verify-BSOD 4 >nul 2>&1 call :verify-PSWRDReveal 6 >nul 2>&1 call :verify-Lockscreen 7 >nul 2>&1 call :verify-HardwareICon 8 >nul 2>&1 call :verify-SmartScreen 9 >nul 2>&1 call :verify-CMDinWinX 10 >nul 2>&1 set "Title1= _______________________________________________________________________________________" set "Title2= ^| ___ _ _ __ ___ __ ___ _ ___ __ ___ __ ___ __ ___ ^|" set "Title3= ^| ( _)( \( ) ( ) ( ,)( ) ( _) / ) ( \ ( )/ __) ( ) ( ,)( ) ( _) ^|" set "Title4= ^| ) _) ) ( /__\ ) ,\ )(__ ) _) / / ) ) ) )( \__ \ /__\ ) ,\ )(__ ) _) ^|" set "Title5= ^| (___)(_)\_)(_)(_)(___)(____)(___) /_/ (___) (__)(___)(_)(_)(___)(____)(___) ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1=Windows Defender (%WindowsDefender%)" set "button3=Windows Firewall (%Firewall%)" set "button5=Manage Folders In 'This PC'" set "button7=Lockscreen (%Lockscreen%)" set "button9=Windows/Store Smart Screen Filter (%SmartScreen%)" //set "button11=** Hibernation & Fast Startup" & set Button11Color=4F set "button2=Default Quick Access view in Explorer (%QuickAccess%)" set "button4=Show BSOD details instead of the sad smiley (%BSOD%)" set "button6=Password Reveal Button (%PSWRDReveal%)" set "button8=Safely Remove Hardware Tray Icon (%HardwareICon%)" set "button10=Replace PowerShell with CMD in Win X menu (%CMDinWinX%)" set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="1" (if /i "%WindowsDefender%"=="Disabled" (Call :Enable-WindowsDefender) else (Call :Disable-WindowsDefender) & Goto Enable/Disable ) if "%buttonClicked%"=="2" (if /i "%QuickAccess%"=="Disabled" (Call :Enable-QuickAccess) else (Call :Disable-QuickAccess) & Goto Enable/Disable ) if "%buttonClicked%"=="3" (if /i "%Firewall%"=="Disabled" (Call :Enable-Firewall) else (Call :Disable-Firewall) & Goto Enable/Disable ) if "%buttonClicked%"=="4" (if /i "%BSOD%"=="Disabled" (Call :Enable-BSOD) else (Call :Disable-BSOD) & Goto Enable/Disable ) if "%buttonClicked%"=="5" (Goto This-PC) if "%buttonClicked%"=="6" (if /i "%PSWRDReveal%"=="Disabled" (Call :Enable-PSWRDReveal) else (Call :Disable-PSWRDReveal) & Goto Enable/Disable ) if "%buttonClicked%"=="7" (if /i "%Lockscreen%"=="Disabled" (Call :Enable-Lockscreen) else (Call :Disable-Lockscreen) & Goto Enable/Disable ) if "%buttonClicked%"=="8" (if /i "%HardwareICon%"=="Disabled" (Call :Enable-HardwareICon) else (Call :Disable-HardwareICon) & Goto Enable/Disable ) if "%buttonClicked%"=="9" (if /i "%SmartScreen%"=="Disabled" (Call :Enable-SmartScreen) else (Call :Disable-SmartScreen) & Goto Enable/Disable ) if "%buttonClicked%"=="10" (if /i "%CMDinWinX%"=="Disabled" (Call :Enable-CMDinWinX) else (Call :Disable-CMDinWinX) & Goto Enable/Disable ) if "%buttonClicked%"=="11" ( cls ) if "%buttonClicked%"=="14" goto MainMenu goto Enable/Disable ::============================================================================================================================================================================== ::============================================================================================================================================================================== :UI call :ClearButtons call :verify-Darkmode 1 >nul 2>&1 call :verify-Thumbnails 2 >nul 2>&1 call :verify-VolumeControlUI 3 >nul 2>&1 call :verify-TaskViewBTN 4 >nul 2>&1 call :verify-BatteryStatusUI 5 >nul 2>&1 call :verify-DeleteDialogDetails 6 >nul 2>&1 call :verify-AltTabUI 7 >nul 2>&1 call :verify-TransparencyBlur 8 >nul 2>&1 call :verify-Logonscreen 10 >nul 2>&1 call :verify-Thumbnailsize 13 >nul 2>&1 set "Title1= _______________________________________________________________________________________" set "Title2= ^| _ _ ___ ___ ___ __ _ _ ____ ___ ___ ___ __ __ ___ ^|" set "Title3= ^| ( )( )/ __)( _)( ,) ( )( \( )(_ _)( _)( ,) ( _) ( ) / _)( _) ^|" set "Title4= ^| )()( \__ \ ) _) ) \ )( ) ( )( ) _) ) \ ) _) /__\ ( (_ ) _) ^|" set "Title5= ^| \__/ (___/(___)(_)\_) (__)(_)\_) (__) (___)(_)\_)(_) (_)(_) \__)(___) ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1=Dark Theme For Apps (%Darkmode%)" set "button3=Volume Control UI (%VolumeControlUI%)" set "button5=Battery Status UI (%BatteryStatusUI%)" set "button7=Alt-Tab Screen UI (%AltTabUI%) [FE]" set "button9=Context Menu Tweaks" set "button11=Change OEM Information" set "button13=Taskbar Thumbnail size ( %Thumbnailsize%) [FE]" set "button2=Thumbnail Previews in File explorer (%Thumbnails%) [FE]" set "button4=Taskview button in Taskbar (%TaskViewBTN%) [FE]" set "button6=Show Delete-Confirmation-Dialog Prompt Details (%DeleteDialogDetails%)" set "button8=Transparency and Blur in: Taskbar-Clock... (%TransparencyBlur%)" set "button10=Change Logon Background Image/accent-color (%Logonscreen%)" set "button12=Colourise/Decolourise Start Me,Taskbar and Title bars" set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="1" ((if /i "%Darkmode%"=="Disabled" (Call :Enable-Darkmode )) & (if /i "%Darkmode%"=="Enabled" (Call :Disable-Darkmode )) & goto UI ) >nul 2>&1 if "%buttonClicked%"=="2" ((if /i "%Thumbnails%"=="Disabled" (Call :Enable-Thumbnails )) & (if /i "%Thumbnails%"=="Enabled" (Call :Disable-Thumbnails )) & goto UI ) >nul 2>&1 if "%buttonClicked%"=="3" ((if /i "%VolumeControlUI%"=="OLD" (Call :NEW-VolumeControlUI )) & (if /i "%VolumeControlUI%"=="NEW" (Call :OLD-VolumeControlUI )) & goto UI ) >nul 2>&1 if "%buttonClicked%"=="4" ((if /i "%TaskViewBTN%"=="Disabled" (Call :Enable-TaskViewBTN )) & (if /i "%TaskViewBTN%"=="Enabled" (Call :Disable-TaskViewBTN )) & goto UI ) >nul 2>&1 if "%buttonClicked%"=="5" ((if /i "%BatteryStatusUI%"=="OLD" (Call :NEW-BatteryStatusUI )) & (if /i "%BatteryStatusUI%"=="NEW" (Call :OLD-BatteryStatusUI )) & goto UI ) >nul 2>&1 if "%buttonClicked%"=="6" ((if /i "%DeleteDialogDetails%"=="Yes" (Call :NO-DeleteDialogDetails )) & (if /i "%DeleteDialogDetails%"==" No" (Call :Yes-DeleteDialogDetails )) & goto UI ) >nul 2>&1 if "%buttonClicked%"=="7" ((if /i "%AltTabUI%"=="OLD" (Call :NEW-AltTabUI )) & (if /i "%AltTabUI%"=="NEW" (Call :OLD-AltTabUI )) & goto UI ) >nul 2>&1 if "%buttonClicked%"=="8" ((if /i "%TransparencyBlur%"=="Disabled" (Call :Enable-TransparencyBlur )) & (if /i "%TransparencyBlur%"=="Enabled" (Call :Disable-TransparencyBlur )) & goto UI ) >nul 2>&1 if "%buttonClicked%"=="9" ( cls & call :ContextMenu) if "%buttonClicked%"=="10" ((if /i "%Logonscreen%"=="Color" (Call :Image-Logonscreen )) & (if /i "%Logonscreen%"=="Image" (Call :Color-Logonscreen )) & goto UI ) >nul 2>&1 if "%buttonClicked%"=="11" ( cls & call :OEMInfo ) if "%buttonClicked%"=="12" ( cls & call :ColouriseStartmenu ) if "%buttonClicked%"=="13" ((if /i "%Thumbnailsize%"=="Default" (Call :400-Thumbnailsize )) & (if /i "%Thumbnailsize%"=="190/400" (Call :Default-Thumbnailsize )) & goto UI ) >nul 2>&1 if "%buttonClicked%"=="14" goto MainMenu goto UI ::============================================================================================================================================================================== ::============================================================================================================================================================================== :Features cls call :ClearButtons set "buttonClicked= " Call :GetActiveButton 5 3 Call :GetActiveButton 6 4 Call :GetActiveButton 9 5 set "Title1= _______________________________________________________________________________________" set "Title2= ^| ____ ____ __ ____ _ _ ____ ____ ____ ^|" set "Title3= ^| ( __)( __) / _\(_ _)/ )( \( _ )( __)/ ___) ^|" set "Title4= ^| ) _) ) _) / \ )( ) \/ ( ) / ) _) \___ \ ^|" set "Title5= ^| (__) (____)\_/\_/(__) \____/(__\_)(____)(____) ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1=Show Windows features list" set "button5=Enable a feature" set "button9=Disable and Remove feature Payload (clean feature files)" set "button2=Show 'Turn Windows features on or off' window" set "button6=Disable a feature" set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="1" ( cls & dism /online /get-features | more ) if "%buttonClicked%"=="2" ( start OptionalFeatures.exe ) if "%buttonClicked%"=="%ActiveButton5%" ( call :Features-Input & cls & DISM /online /enable-feature /featurename:!input! & pause ) if "%buttonClicked%"=="%ActiveButton6%" ( call :Features-Input & cls & dism /online /disable-feature /featurename:!input! & pause ) if "%buttonClicked%"=="%ActiveButton9%" ( call :Features-Input & cls & dism /online /disable-feature /featurename:!input! /remove & pause ) if "%buttonClicked%"=="14" goto MainMenu goto Features :Features-Input call :ClearButton 14 %BB% ^ /c 0x1F /g 2 27 /d " ________________________________________________________" ^ /c 0x2F /g 2 28 /d "| |"^ /g 2 29 /d "| Input : |"^ /g 2 30 /d "|________________________________________________________|"^ /c 0xF1 /g 12 29 /d " " ^ /g 13 29 ) set /p Input= %BB% /c 0x1F If "%Input%"=="" Goto Features If "%Input%"==" " Goto Features If "%Input%"=="0" Goto Features exit /b ::============================================================================================================================================================================== ::============================================================================================================================================================================== :Users call :ClearButtons call :verify-AdminAccount set "Title1= _______________________________________________________________________________________" set "Title2= ^| _ _ ____ ____ ____ ____ _ _ __ __ _ __ ___ ____ ____ ^|" set "Title3= ^| / )( \/ ___)( __)( _ \/ ___) ( \/ ) / _\ ( ( \ / _\ / __)( __)( _ \ ^|" set "Title4= ^| ) \/ (\___ \ ) _) ) /\___ \ / \/ \/ \/ // \( (_ \ ) _) ) / ^|" set "Title5= ^| \____/(____/(____)(__\_)(____/ \_)(_/\_/\_/\_)__)\_/\_/ \___/(____)(__\_) ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1=Show me my User accounts" set "button3=Add NEW user account" set "button5=Change specific user account Password" set "button4=Delete a user account" set "button2=Built-in Administrator Account (%AdminAccount%)" set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="1" ( %BB% /g 1 21 & net user & pause & goto Users ) if "%buttonClicked%"=="2" ((if /i "%AdminAccount%"=="Disabled" (net user administrator /active:yes & reg add "%Main_Script_Reg_key%" /v "AdminAccount" /t REG_DWORD /d 1 /f )) & (if /i "%AdminAccount%"=="Enabled" (net user administrator /active:no & reg add "%Main_Script_Reg_key%" /v "AdminAccount" /t REG_DWORD /d 0 /f )) & goto Users ) >nul 2>&1 reg query "%Main_Script_Reg_key%" /v AdminAccount | find "0x1" >nul if "%buttonClicked%"=="3" ( call :Users-Input net user "!Input!" /add PAUSE goto Users ) if "%buttonClicked%"=="4" ( call :Users-Input net user "!Input!" /delete PAUSE goto Users ) if "%buttonClicked%"=="5" (%BB% /g 0 22 set /p name=* Write the name of the desired account: set /p PWD=* Write the new password: set /p PWDC=* Confirm the new password: if "!PWD!"=="!PWDC!" (net user "!name!" "!PWD!" & call :msgbox ok & goto Users) Else (echo something Happend & pause & goto Users) ) if "%buttonClicked%"=="14" goto MainMenu goto Users :Users-Input call :ClearButton 14 %BB% ^ /c 0x1F /g 1 22 /d " _________________________________________________________" ^ /c 0x2F /g 1 23 /d "| |"^ /g 1 24 /d "| Input : |"^ /g 1 25 /d "|_________________________________________________________|"^ /c 0xF1 /g 12 24 /d " " ^ /g 13 24 ) set /p Input= %BB% /c 0x1F If "%Input%"=="" Goto Users If "%Input%"==" " Goto Users If "%Input%"=="0" Goto Users %BB% /g 0 25 exit /b :verify-AdminAccount reg query "%Main_Script_Reg_key%" /v AdminAccount | find "0x1" >nul if "%errorlevel%"=="0" (set "AdminAccount=Enabled") else (set "AdminAccount=Disabled") exit/b ::============================================================================================================================================================================== ::============================================================================================================================================================================== :Performance call :ClearButtons call :FolderSize "%Windir%\SoftwareDistribution\Download" 2 call :FolderSize "%Temp%" 3 call :FolderSize "%Windir%\Prefetch" 4 call :verify-GameMode 7 set "Title1= _______________________________________________________________________________________" set "Title2= ^| ____ ___ ____ ____ ____ ____ __ ____ _ _ __ __ _ ___ ____ ^|" set "Title3= ^| ( _ \ / __) ( _ \( __)( _ \( __)/ \( _ \( \/ ) / _\ ( ( \ / __)( __) ^|" set "Title4= ^| ) __/( (__ ) __/ ) _) ) / ) _)( O )) // \/ \/ \/ /( (__ ) _) ^|" set "Title5= ^| (__) \___) (__) (____)(__\_)(__) \__/(__\_)\_)(_/\_/\_/\_)__) \___)(____) ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1=Calculate Restart Time" set "button3=Clean TEMP Folder {'%FolderSize3%' Can be cleaned}" set "button5=Start Disk Cleanup (Not automatic)" set "button7=Game Mode (%GameMode%)" set "button2=Clean Update Junk {'%FolderSize2%' Can be cleaned}" set "button4=Clean Prefetch Folder {'%FolderSize4%' Can be cleaned}" set "button6=Disable : Unnecessary services,BitLocker,Encrypting..." set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="1" goto Restart_time if "%buttonClicked%"=="2" goto CleanUpdatefiles if "%buttonClicked%"=="3" (cls & del %TEMP%\*.* /f /s /q & call :batbox) if "%buttonClicked%"=="4" (cls & del %Windir%\Prefetch\*.* /f /s /q) if "%buttonClicked%"=="5" cleanmgr.exe /LOWDISK if "%buttonClicked%"=="6" cls & call :Services if "%buttonClicked%"=="7" (if /i "%GameMode%"=="Disabled" (Call :Enable-GameMode) else (Call :Disable-GameMode) & Goto Performance ) if "%buttonClicked%"=="14" goto MainMenu goto Performance if "%buttonClicked%"=="" goto ::============================================================================================================================================================================== ::============================================================================================================================================================================== :NETWORK call :ClearButtons set "Title1= _______________________________________________________________________________________" set "Title2= ^| __ __ _ ____ ____ ____ __ _ ____ ____ ____ __ _ _ ____ ____ ^|" set "Title3= ^| ( )( ( \(_ _)( __)( _ \( ( \( __)(_ _) ( __)( )( \/ )( __)/ ___) ^|" set "Title4= ^| )( / / )( ) _) ) // / ) _) )( ) _) )( ) ( ) _) \___ \ ^|" set "Title5= ^| (__)\_)__) (__) (____)(__\_)\_)__)(____) (__) (__) (__)(_/\_)(____)(____/ ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1=Fix Empty 'Network Connections'Folder {Network Adapters}" set "button3=Restore 'Windows Firewall'+'Network Adapter' settings" set "button5=Release and renew the IP address from DHCP server" set "button2=Disable Limit Reservable Bandwidth (kind of)network" set "button4=Flush Windows DNS Cache {ipconfig /flushdns}" set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="1" Reg.exe delete "HKLM\SYSTEM\CurrentControlSet\Control\Network" /v "Config" /f if "%buttonClicked%"=="2" Reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Psched" /v "Psched" /t REG_DWORD /d "0" /f if "%buttonClicked%"=="3" netsh int ip reset reset.txt & netsh winsock reset & netsh advfirewall reset if "%buttonClicked%"=="4" ipconfig /flushdns if "%buttonClicked%"=="5" ipconfig /release & ipconfig /renew if "%buttonClicked%"=="14" goto MainMenu goto NETWORK ::============================================================================================================================================================================== ::============================================================================================================================================================================== :Edge call :ClearButtons call :verify-EdgeAds 1 >nul 2>&1 call :verify-EdgeTheme 2 >nul 2>&1 call :verify-closeTabs 5 >nul 2>&1 call :verify-CoratnainEdge 6 >nul 2>&1 call :verify-EdgeFlashPlayer 7 >nul 2>&1 call :verify-FavoritesBar 8 >nul 2>&1 call :verify-NewTabPage 10 >nul 2>&1 set "Title1= _______________________________________________________________________________________" set "Title2= ^| _ _ __ ___ ____ __ ____ __ ____ ____ ____ ____ ___ ____ ^|" set "Title3= ^| ( \/ )( )/ __)( _ \ / \ / ___) / \( __)(_ _) ( __)( \ / __)( __) ^|" set "Title4= ^| / \/ \ )(( (__ ) /( O )\___ \( O )) _) )( ) _) ) D (( (_ \ ) _) ^|" set "Title5= ^| \_)(_/(__)\___)(__\_) \__/ (____/ \__/(__) (__) (____)(____/ \___/(____) ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1=Disable Ads (using Hosts File) [O] (%EdgeAds%) " set "button3=Change Browser Home Button page" set "button5=Ask to close all tabs ? (%closeTabs%)" set "button7=Adobe Flash Player In Edge (%EdgeFlashPlayer%)" set "button9=Uninstall/restore Microsoft Edge [O]" set "button2=Dark Theme (%EdgeTheme%)" set "button4=Change default download directory" set "button6=Cortana inside the browser (%CoratnainEdge%)" set "button8=Favorites Bar (%FavoritesBar%)" set "button10=NewTab Page : %NewTabPage% " set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="1" ((if /i "%EdgeAds%"=="Disabled" (Call :Enable-EdgeAds )) & (if /i "%EdgeAds%"=="Enabled" (Call :Disable-EdgeAds )) & goto Edge ) if "%buttonClicked%"=="2" ((if /i "%EdgeTheme%"=="Disabled" (Call :Enable-EdgeTheme )) & (if /i "%EdgeTheme%"=="Enabled" (Call :Disable-EdgeTheme )) & goto Edge ) >nul 2>&1 if "%buttonClicked%"=="3" (call :Edge-Input & Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "HomeButtonPage" /t REG_SZ /d "%Input%" /f & goto Edge ) >nul 2>&1 if "%buttonClicked%"=="4" (call :Edge-Input & Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "Default Download Directory" /t REG_SZ /d "%Input%" /f & goto Edge ) >nul 2>&1 if "%buttonClicked%"=="5" ((if /i "%closeTabs%"=="Disabled" (Call :Enable-closeTabs )) & (if /i "%closeTabs%"=="Enabled" (Call :Disable-closeTabs )) & goto Edge ) >nul 2>&1 if "%buttonClicked%"=="6" ((if /i "%CoratnainEdge%"=="Disabled" (Call :Enable-CoratnainEdge )) & (if /i "%CoratnainEdge%"=="Enabled" (Call :Disable-CoratnainEdge )) & goto Edge ) >nul 2>&1 if "%buttonClicked%"=="7" ((if /i "%EdgeFlashPlayer%"=="Disabled" (Call :Enable-EdgeFlashPlayer )) & (if /i "%EdgeFlashPlayer%"=="Enabled" (Call :Disable-EdgeFlashPlayer )) & goto Edge ) >nul 2>&1 if "%buttonClicked%"=="8" ((if /i "%FavoritesBar%"=="Disabled" (Call :Enable-FavoritesBar )) & (if /i "%FavoritesBar%"=="Enabled" (Call :Disable-FavoritesBar )) & goto Edge ) >nul 2>&1 if "%buttonClicked%"=="9" ( cls & call :UninstallEdge) if "%buttonClicked%"=="10" ((if /i "%NewTabPage%"=="Suggested" (Call :NewTabPage-Blank )) & (if /i "%NewTabPage%"=="Blank" (Call :NewTabPage-Topsites )) & (if /i "%NewTabPage%"=="Topsites" (Call :NewTabPage-Suggested )) & goto Edge ) >nul 2>&1 if "%buttonClicked%"=="14" goto MainMenu goto Edge :Edge-Input call :ClearButton 14 %BB% ^ /c 0x1F /g 1 27 /d " _________________________________________________________" ^ /c 0x2F /g 1 28 /d "| |"^ /g 1 29 /d "| Input : |"^ /g 1 30 /d "|_________________________________________________________|"^ /c 0xF1 /g 12 29 /d " " ^ /g 13 29 ) set /p Input= %BB% /c 0x1F exit/b ::============================================================================================================================================================================== :CheckWindowsactivation cls cd /d %~dp0 setLocal EnableDelayedExpansion if exist "%Windir%\Sysnative\sppsvc.exe" set SysPath=%Windir%\Sysnative if exist "%Windir%\System32\sppsvc.exe" set SysPath=%Windir%\System32 echo Windows Status: echo ================= ver cscript //nologo %SysPath%\slmgr.vbs /dli cscript //nologo %SysPath%\slmgr.vbs /xpr echo. echo. call :msgBox ok exit /b ::============================================================================================================================================================================== :CheckOfficeactivation cls cd /d %~dp0 setLocal EnableDelayedExpansion if exist "%Windir%\Sysnative\sppsvc.exe" set SysPath=%Windir%\Sysnative if exist "%Windir%\System32\sppsvc.exe" set SysPath=%Windir%\System32 echo Office 2016 Status: echo ===================== set office= set installed=0 FOR /F "tokens=2*" %%a IN ('reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\16.0\Common\InstallRoot" /v "Path" 2^>nul') do (SET office=%%b) if exist "%office%\OSPP.VBS" ( set installed=1 cd /d "%office%" cscript //nologo ospp.vbs /dstatus cd /d %~dp0 ) set office= FOR /F "tokens=2*" %%a IN ('reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\16.0\Common\InstallRoot" /v "Path" 2^>nul') do (SET office=%%b) if exist "%office%\OSPP.VBS" ( set installed=1 cd /d "%office%" cscript //nologo ospp.vbs /dstatus cd /d %~dp0 ) if %installed%==1 goto end2016 if exist "C:\Program Files\Microsoft Office\Office16\OSPP.VBS" ( set installed=1 cd /d "C:\Program Files\Microsoft Office\Office16" cscript //nologo ospp.vbs /dstatus cd /d %~dp0 ) if exist "C:\Program Files (x86)\Microsoft Office\Office16\OSPP.VBS" ( set installed=1 cd /d "C:\Program Files (x86)\Microsoft Office\Office16" cscript //nologo ospp.vbs /dstatus cd /d %~dp0 ) :end2016 if %installed%==0 echo Not installed echo. echo Office 2013 Status: echo ===================== set office= set installed=0 FOR /F "tokens=2*" %%a IN ('reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\15.0\Common\InstallRoot" /v "Path" 2^>nul') do (SET office=%%b) if exist "%office%\OSPP.VBS" ( set installed=1 cd /d "%office%" cscript //nologo ospp.vbs /dstatus cd /d %~dp0 ) set office= FOR /F "tokens=2*" %%a IN ('reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\15.0\Common\InstallRoot" /v "Path" 2^>nul') do (SET office=%%b) if exist "%office%\OSPP.VBS" ( set installed=1 cd /d "%office%" cscript //nologo ospp.vbs /dstatus cd /d %~dp0 ) if %installed%==0 echo Not installed echo. echo Office 2010 Status: echo ===================== set office= set installed=0 FOR /F "tokens=2*" %%a IN ('reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\14.0\Common\InstallRoot" /v "Path" 2^>nul') do (SET office=%%b) if exist "%office%\OSPP.VBS" ( set installed=1 cd /d "%office%" cscript //nologo ospp.vbs /dstatus cd /d %~dp0 ) set office= FOR /F "tokens=2*" %%a IN ('reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\14.0\Common\InstallRoot" /v "Path" 2^>nul') do (SET office=%%b) if exist "%office%\OSPP.VBS" ( set installed=1 cd /d "%office%" cscript //nologo ospp.vbs /dstatus cd /d %~dp0 ) if %installed%==0 echo Not installed call :msgBox ok exit /b ::============================================================================================================================================================================== :ActivateWindows/office Set CurCD=%CD% cd %temp% Del TWKMS.ZIP Del TWKMS.exe cls echo Downloading KMSpico ... echo. Call :Servercheck drive.google.com MainMenu call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfibDZ1RWRtUzViMGc" TWKMS.ZIP echo Installing KMSpico ... call :UnZip TWKMS.ZIP start /HIGH TWKMS.exe CD %CurCD% call :msgBox ok exit /b ::============================================================================================================================================================================== ::============================================================================================================================================================================== ::============================================================================================================================================================================== :Awamenu set MainInput= set appDisplayName1= 1.3D Builder set appDisplayName2= 2.Alarms and Clocks set appDisplayName3= 3.Calculator set appDisplayName4= 4.Calendar and Mail set appDisplayName5= 5.Camera set appDisplayName6= 6.Get Office set appDisplayName7= 7.Skype Preview set appDisplayName8= 8.Get Started set appDisplayName9= 9.Groove Music set appDisplayName10=10.Maps set appDisplayName11=11.Microsoft Solitaire set appDisplayName12=12.Money (Finance) set appDisplayName13=13.Movies and TV set appDisplayName14=14.MSN News set appDisplayName15=15.OneNote set appDisplayName16=16.People set appDisplayName17=17.Phone Companion set appDisplayName18=18.Photos set appDisplayName19=19.Sports set appDisplayName20=20.Voice Recorder set appDisplayName21=21.Weather set appDisplayName22=22.Xbox set appDisplayName23=23.Messaging set appDisplayName24=24.Microsoft Wi-Fi set appDisplayName25=25.Phone set appDisplayName26=26.Office Sway set appDisplayName27=27.Paid Wifi/cellular set appDisplayName28=28.Sticky notes set appDisplayName29=29.3D Viewer set appDisplayName30=30.3D Paint set appDisplayName31=31.Store (No Restore) cls echo _______________________________________________________________________________________ echo ^| _ _ __ _ _ ___ __ _ _ ___ __ ___ ___ ___ ^| echo ^| ( \/\/ )( )( \( )( \ / \( \/\/ )/ __) ( ) ( ,\( ,\/ __) ^| echo ^| \ / )( ) ( ) ) )( () )\ / \__ \ /__\ ) _/ ) _/\__ \ ^| echo ^| \/\/ (__)(_)\_)(___/ \__/ \/\/ (___/ (_)(_)(_) (_) (___/ ^| echo ^|_______________________________________________________________________________________^| echo ^| ^| Commands credit to : echo. ^| You can execute multiple commands at once, ex: "a 1 b 6 8 c 23" ^| 'johnye_pt' echo ^|_________________________________________________________________^| echo. echo Default App Removing method : if [!WAaction!]==[2] ( echo a. [ ] Remove App from current User %BB% /c 0x9F /d " b. [x] Remove App from All Users " /c 0x1F & echo. echo. ) if not [!WAaction!]==[2] ( %BB% /c 0x9F /d " a. [x] Remove App from current User " /c 0x1F & echo. echo b. [ ] Remove App from All Users echo. ) for /l %%a in (1,1,31) do ( set AS%%a=OFF) echo ________ echo Apps : 0. Go back to Main page ^| ^<- ^| echo __________________________________________________________________________________________________________^|________^| echo ^| ^| ^| ^| ^| echo ^| ^| ^| ^| ^| echo ^| ^| ^| ^| ^| echo ^| ^| ^| ^| ^| echo ^| ^| ^| ^| ^| echo ^| ^| ^| ^| ^| echo ^| ^| ^| ^| ^| echo ^| ^| ^| ^| ^| echo ^| ^| ^| ^| ^| echo ^|____________________________^|____________________________^|____________________________^|____________________________^| echo ^| ^| ^| ^| echo ^| 32.ALL, but store ^| V. refresh Apps Installation Status ^| Apply changes ^| echo ^|____________________________^| ^|____________________________^| echo. If /i "%SelectMode%"=="Mouse" ( %BB% ^ /c 0x1F /g 111 1 /d " _______"^ /c 0x3F /g 111 2 /d "| "^ /g 111 3 /d "| USE "^ /g 111 4 /d "| KBD "^ /g 111 5 /d "|_______" ) else (%BB% ^ /c 0x1F /g 111 1 /d " _______"^ /c 0x3F /g 111 2 /d "| "^ /g 111 3 /d "|Press U"^ /g 111 4 /d "|'Mouse'"^ /g 111 5 /d "|_______" ) call :ViewCurrentApps If /i "%SelectMode%"=="Mouse" ( :readingMouseAppsMenu set buttonClicked="" call :readMouseAppsMenu for /l %%a in (1,1,31) do ( if "!buttonClicked!"=="%%a" ( If !AS%%a!==OFF ( set "MainInput=!MainInput! c !buttonClicked!" %BB% /c 0x1F /G 1 31 /d "Input =!MainInput!" call :ToggleAS %%a ) else ( If %WAaction%==2 set "MainInput=!MainInput! b !buttonClicked!" If not %WAaction%==2 set "MainInput=!MainInput! a !buttonClicked!" %BB% /c 0x1F /G 1 31 /d "Input =!MainInput!" call :ToggleAS %%a ) ) ) If "!buttonClicked!"=="Back" ( set "MainInput=!MainInput:~0,-3!" %BB% /c 0x1F /G 1 31 /d " " %BB% /G 1 31 /d "Input =!MainInput!" ) If "!buttonClicked!"=="32" (set "MainInput=!MainInput! 32" & %BB% /c 0x1F /G 1 31 /d "Input =!MainInput!") if "!buttonClicked!"=="V" (set MainInput= & call :ViewCurrentApps) If "!buttonClicked!"=="a" (set "WAaction=1" & goto Awamenu) If "!buttonClicked!"=="b" (set "WAaction=2" & goto Awamenu) If "!buttonClicked!"=="0" (goto WinAppsmenu) if "!buttonClicked!"=="apply" (goto WAfunction) goto readingMouseAppsMenu ) If /i "%SelectMode%"=="KBD" ( ::Clean Mouse-Only UI " %BB% /G 109 14 /d " " %BB% /G 108 15 /d " " %BB% /G 108 16 /d "_________ " %BB% /G 89 27 /d " " %BB% /G 89 28 /d " Press Enter to Apply " %BB% /G 89 29 /d "____________________________" if [!WAaction!]==[3] ( %BB% /g 0 13 /c 0x9F /d " c. [x] Restore App to current User (Not all apps can be restored)" /c 0x1F /g 0 10 echo Default action : echo a. [ ] Remove App from current User echo b. [ ] Remove App from All Users ) else (%BB% /g 0 13 /d " c. [ ] Restore App to current User (Not all apps can be restored)" /c 0x1F /g 0 10 /d " Default action : ") %BB% /G 1 31 set /p MainInput=Input = if /i !MainInput!==a set "WAaction=1" & goto Awamenu if /i !MainInput!==b set "WAaction=2" & goto Awamenu if /i !MainInput!==c set "WAaction=3" if /i !MainInput!==v goto Awamenu if /i !MainInput!==0 goto WinAppsmenu if /i !MainInput!==u ( If /i "%SelectMode%"=="Mouse" (set "SelectMode=KBD" & goto Awamenu ) else ( set "SelectMode=Mouse" & goto Awamenu ) ) goto WAfunction ) :readMouseAppsMenu for /f "tokens=1,2,3 delims=:" %%a in ('%BB% /m') do ( %BB% /g 0 0 set "buttonClicked"="" %BB% /d "mouse: %%b %%a %%c " >nul 2>&1 REM : %%a = X %%b = Y if %%c EQU 1 if %%b EQU 18 if %%a GEQ 2 if %%a LEQ 29 set "buttonClicked=1" if %%c EQU 1 if %%b EQU 19 if %%a GEQ 2 if %%a LEQ 29 set "buttonClicked=5" if %%c EQU 1 if %%b EQU 20 if %%a GEQ 2 if %%a LEQ 29 set "buttonClicked=9" if %%c EQU 1 if %%b EQU 21 if %%a GEQ 2 if %%a LEQ 29 set "buttonClicked=13" if %%c EQU 1 if %%b EQU 22 if %%a GEQ 2 if %%a LEQ 29 set "buttonClicked=17" if %%c EQU 1 if %%b EQU 23 if %%a GEQ 2 if %%a LEQ 29 set "buttonClicked=21" if %%c EQU 1 if %%b EQU 24 if %%a GEQ 2 if %%a LEQ 29 set "buttonClicked=25" if %%c EQU 1 if %%b EQU 25 if %%a GEQ 2 if %%a LEQ 29 set "buttonClicked=29" if %%c EQU 1 if %%b EQU 18 if %%a GEQ 31 if %%a LEQ 58 set "buttonClicked=2" if %%c EQU 1 if %%b EQU 19 if %%a GEQ 31 if %%a LEQ 58 set "buttonClicked=6" if %%c EQU 1 if %%b EQU 20 if %%a GEQ 31 if %%a LEQ 58 set "buttonClicked=10" if %%c EQU 1 if %%b EQU 21 if %%a GEQ 31 if %%a LEQ 58 set "buttonClicked=14" if %%c EQU 1 if %%b EQU 22 if %%a GEQ 31 if %%a LEQ 58 set "buttonClicked=18" if %%c EQU 1 if %%b EQU 23 if %%a GEQ 31 if %%a LEQ 58 set "buttonClicked=22" if %%c EQU 1 if %%b EQU 24 if %%a GEQ 31 if %%a LEQ 58 set "buttonClicked=26" if %%c EQU 1 if %%b EQU 25 if %%a GEQ 31 if %%a LEQ 58 set "buttonClicked=30" if %%c EQU 1 if %%b EQU 18 if %%a GEQ 60 if %%a LEQ 87 set "buttonClicked=3" if %%c EQU 1 if %%b EQU 19 if %%a GEQ 60 if %%a LEQ 87 set "buttonClicked=7" if %%c EQU 1 if %%b EQU 20 if %%a GEQ 60 if %%a LEQ 87 set "buttonClicked=11" if %%c EQU 1 if %%b EQU 21 if %%a GEQ 60 if %%a LEQ 87 set "buttonClicked=15" if %%c EQU 1 if %%b EQU 22 if %%a GEQ 60 if %%a LEQ 87 set "buttonClicked=19" if %%c EQU 1 if %%b EQU 23 if %%a GEQ 60 if %%a LEQ 87 set "buttonClicked=23" if %%c EQU 1 if %%b EQU 24 if %%a GEQ 60 if %%a LEQ 87 set "buttonClicked=27" if %%c EQU 1 if %%b EQU 25 if %%a GEQ 60 if %%a LEQ 87 set "buttonClicked=31" if %%c EQU 1 if %%b EQU 18 if %%a GEQ 89 if %%a LEQ 116 set "buttonClicked=4" if %%c EQU 1 if %%b EQU 19 if %%a GEQ 89 if %%a LEQ 116 set "buttonClicked=8" if %%c EQU 1 if %%b EQU 20 if %%a GEQ 89 if %%a LEQ 116 set "buttonClicked=12" if %%c EQU 1 if %%b EQU 21 if %%a GEQ 89 if %%a LEQ 116 set "buttonClicked=16" if %%c EQU 1 if %%b EQU 22 if %%a GEQ 89 if %%a LEQ 116 set "buttonClicked=20" if %%c EQU 1 if %%b EQU 23 if %%a GEQ 89 if %%a LEQ 116 set "buttonClicked=24" if %%c EQU 1 if %%b EQU 24 if %%a GEQ 89 if %%a LEQ 116 set "buttonClicked=28" if %%c EQU 1 if %%b EQU 11 if %%a GEQ 0 if %%a LEQ 38 set "buttonClicked=a" if %%c EQU 1 if %%b EQU 12 if %%a GEQ 0 if %%a LEQ 35 set "buttonClicked=b" if %%c EQU 1 if %%b EQU 28 if %%a GEQ 43 if %%a LEQ 77 set "buttonClicked=V" if %%c EQU 1 if %%b EQU 15 if %%a GEQ 77 if %%a LEQ 99 set "buttonClicked=0" if %%c EQU 1 if %%b GEQ 27 if %%b LEQ 29 if %%a GEQ 2 if %%a LEQ 29 set "buttonClicked=32" if %%c EQU 1 if %%b GEQ 27 if %%b LEQ 29 if %%a GEQ 89 if %%a LEQ 116 set "buttonClicked=apply" if %%c EQU 1 if %%b GEQ 15 if %%b LEQ 16 if %%a GEQ 109 if %%a LEQ 116 set "buttonClicked=Back" if %%c EQU 1 if %%b GEQ 1 if %%b LEQ 5 if %%a GEQ 111 if %%a LEQ 119 ( If /i "%SelectMode%"=="Mouse" (set "SelectMode=KBD" & goto Awamenu ) else ( set "SelectMode=Mouse" & goto Awamenu ) ) ) exit /b :ToggleAS If /i "!AS%~1!"==" ON" ( set AS%~1=OFF Call :ColorizeAppButton %~1 5F set AS%~1= ON ) else ( set AS%~1= ON Call :ColorizeAppButton %~1 5F set AS%~1=OFF) %BB% !Line! /c 0x1F exit /b :ViewCurrentApps set Line= Rem === Setting Local Variables set "NoRestart=0" Set Installed= Set NotInstalled= set CPT=0 Rem === Going through all apps names listed in AppStrings variable for %%k in (%AppStrings%) do ( set Keyword=%%k Rem === Finding the app for /f "tokens=4" %%a in ('reg query "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage" /f "!Keyword!"') do ( set /a CPT+=1 rem === Storing Installed and NotInstalled apps Numbers in variables if "%%a"=="0" (Set NotInstalled=!NotInstalled! !CPT! set AS!CPT!=OFF ) else ( Set Installed=!Installed! !CPT! set AS!CPT!= ON ) ) ) rem === colorize apps names for %%I in (%Installed%) do ( Call :ColorizeAppButton %%I 2F ) for %%I in (%NotInstalled%) do ( Call :ColorizeAppButton %%I 4F ) %BB% !Line! %BB% /c 0x1F /G 1 31 /d "Input = " %BB% /c 0x1F /g 9 31 exit /b :WAfunction cls echo. rem === the "WAaction" variable defines what action will be taken rem === the "input" variable from the menu is used below, it equals the order in the "AppStrings" variable rem === circle through all inputs For %%a in (%MainInput%) do ( set input=%%a rem === initialize App position set /a AppNum=0 if /i !input!==a set "WAaction=1" if /i !input!==b set "WAaction=2" if /i !input!==c set "WAaction=3" rem === cicle through all Apps for %%a in (%AppStrings%) do ( rem === increment App position by 1 set /a AppNum+=1 rem === get App Name without underscore set "AppName=%%a" set "AppName=!AppName:~0,-14!" rem === if chosen action is remove App from user/system if !WAaction! LEQ 2 ( rem === if chosen option is 32 remove all Apps but store if [!input!]==[32] ( rem === remove all Apps except the store if NOT [!AppNum!]==[31] ( rem === remove from user if [!WAaction!]==[1] ( echo Removing "!AppName!" from user... powershell.exe -command "Get-AppxPackage Microsoft.!AppName! | Remove-AppxPackage" > NUL 2>&1 rem === remove from system ) else ( echo Removing "!AppName!" from system... powershell.exe -command "Get-AppxPackage -AllUsers Microsoft.!AppName! | Remove-AppxPackage" > NUL 2>&1 powershell.exe -command "Get-appxprovisionedpackage –Online | Where-Object {$_.DisplayName –eq 'Microsoft.!AppName!'} | Remove-AppxProvisionedPackage –Online" | find "HideOutputFromUser" ) ) ) else ( rem === remove chosen App if [!input!]==[!AppNum!] ( rem === remove from user if [!WAaction!]==[1] ( echo Removing "!AppName!" from user... powershell.exe -command "Get-AppxPackage Microsoft.!AppName! | Remove-AppxPackage" > NUL 2>&1 rem === remove from system ) else ( rem === make sure user wants to remove Store App set "removeApp=0" if [!input!]==[29] ( echo If Store is removed from system, it cannot be restored^^! set /p removeApp=* If you are really SURE, type "store" to continue: if /i [!removeApp!]==[store] set "removeApp=1" ) else ( set "removeApp=1" ) if [!removeApp!]==[1] ( echo Removing "!AppName!" from system... powershell.exe -command "Get-AppxPackage -AllUsers Microsoft.!AppName! | Remove-AppxPackage" > NUL 2>&1 powershell.exe -command "Get-appxprovisionedpackage –Online | Where-Object {$_.DisplayName –eq 'Microsoft.!AppName!'} | Remove-AppxProvisionedPackage –Online" | find "HideOutputFromUser" ) ) ) ) rem === if chosen action is restore app ) else ( rem === if chosen option is restore all Apps but store if [!input!]==[32] ( rem === restore all Apps except the store if NOT [!AppNum!]==[31] ( rem === restore app with Get-AppxPackage echo Restoring "!AppName!" to user... powershell.exe -command "Get-AppxPackage -AllUsers Microsoft.!AppName! | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register ($_.InstallLocation + '\AppXManifest.xml')}" > NUL 2>&1 ) ) else ( rem === restore chosen App if [!input!]==[!AppNum!] ( rem === restore app with Get-AppxPackage echo Restoring "!AppName!" to user... powershell.exe -command "Get-AppxPackage -AllUsers Microsoft.!AppName! | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register ($_.InstallLocation + '\AppXManifest.xml')}" > NUL 2>&1 ) ) ) ) ) echo. choice /c yn /m "* Reboot to apply changes (y/n)?" echo. if %errorlevel% equ 2 goto Awamenu if %errorlevel% equ 1 REM shutdown -r -t 30 -c "Windows will restart in 30 seconds" goto Awamenu :ColorizeAppButton set N=%~1 set /a X=!N! %% 4 If !X!==0 set X=4 set /a Mod=!N! %% 4 set /a Y=(!N!/4)+1 If !Mod!==0 set /a Y-=1 set /a X=(28*!X!) -27 + !X! set /a Y=!Y!+17 set Line=!Line! /c 0x%~2 /g !X! !Y! /D "!appDisplayName%~1!(!AS%~1!)" exit /b ::============================================================================================================================================================================== :WFeedbackApp cd /d "%~dp0" call :Infomsgbox "Downloading Windows Feedback Uninstaller..." 9F call :Servercheck drive.google.com Awamenu call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiWTNGYXdiRU9SNVU" install_wim_tweak.exe cls install_wim_tweak.exe /o /l install_wim_tweak.exe /o /c Microsoft-WindowsFeedback /r install_wim_tweak.exe /h /o /l del Packages.txt del install_wim_tweak.exe call :Infomsgbox "Windows Feedback should be uninstalled." 9F If /i "%SelectMode%"=="Mouse" ( %BB% /m ) else ( %BB% /k ) exit /b ::============================================================================================================================================================================== :ContactSuppo cd /d "%~dp0" call :Infomsgbox "Downloading Contact Support Uninstaller..." 9F call :Servercheck drive.google.com Awamenu call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiWTNGYXdiRU9SNVU" install_wim_tweak.exe CLS install_wim_tweak.exe /o /l install_wim_tweak.exe /o /c Microsoft-Windows-ContactSupport /r install_wim_tweak.exe /h /o /l del Packages.txt del install_wim_tweak.exe call :Infomsgbox "Windows Contact Support should be uninstalled." 9F If /i "%SelectMode%"=="Mouse" ( %BB% /m ) else ( %BB% /k ) GOTO WinAppsmenu ::============================================================================================================================================================================== :InstallDVDapp call :Infomsgbox "Downloading and installing necessary files... (1/5)" 9F for /f "delims= " %%a in ('"wmic path win32_useraccount where name='%UserName%' get sid"') do ( if not "%%a"=="SID" ( set sid=%%a goto :DelReg ) ) :DelReg Reg.exe delete "HKEY_CLASSES_ROOT\Installer\Products\AAD08E5278DF5ECD02C2CC206F760320" /f >nul 2>&1 reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\%sid%\Microsoft.WindowsDVDPlayer_2019.6.13291.0_neutral_~_8wekyb3d8bbwe" /f >nul 2>&1 if exist "%SYSTEMDRIVE%\Program Files (x86)\" ( Set Arch=64 GOTO DVDDown ) else ( Set Arch=32 GOTO DVDDown ) :DVDDown cd /d "%~dp0" Set CurCD=%CD% cls call :Infomsgbox "Downloading and installing necessary files... (2/5)" 9F call :Servercheck www.google.com WinAppsmenu call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHficTNjbFA1TlNTSUk" SetACL.zip call :Unzip SetACL.zip del SetACL.zip CD "%CD%\SetACL (executable version)\%Arch% bit" cls call :Infomsgbox "Downloading and installing necessary files... (3/5)" 9F echo "machine\SYSTEM\CurrentControlSet\Services\ADOVMPPackage\Final",4,"O:SYG:SYD:AI(A;CI;CCDCLCSWRPRC;;;IU)(A;CI;CCDCLCSWRPRC;;;SY)(A;CI;CCDCLCSWRPRC;;;BA)(A;CIID;KR;;;BU)(A;CIID;KA;;;BA)(A;CIID;KA;;;SY)(A;CIIOID;KA;;;CO)(A;CIID;KR;;;AC)" > ADOVMPPackage.txt setACL -on "HKLM\SYSTEM\CurrentControlSet\Services\ADOVMPPackage" -ot reg -actn setowner -ownr "n:S-1-5-32-544;s:y" -rec yes >nul 2>&1 setACL -on "HKLM\SYSTEM\CurrentControlSet\Services\ADOVMPPackage" -ot reg -actn ace -ace "n:S-1-5-32-544;s:y;p:full" -rec yes >nul 2>&1 SetACL.exe -on "HKLM\SYSTEM\CurrentControlSet\Services\ADOVMPPackage\Final" -ot reg -actn restore -bckp .\ADOVMPPackage.txt >nul 2>&1 reg.exe add HKLM\SYSTEM\CurrentControlSet\Services\ADOVMPPackage\Final /v ActivationEnabled /t REG_DWORD /d 2 /f >nul 2>&1 CD %CurCD% RMDIR /S /Q "%CD%\SetACL (executable version)" >nul 2>&1 RMDIR /S /Q "%CD%\SetACL (executable version)" >nul 2>&1 del ADOVMPPackage.txt >nul 2>&1 cls call :Infomsgbox "Downloading and installing necessary files... (4/5)" 9F del windows10.0-kb3106246-x64_38be8cc4777aadd5eba00476326eaca6952e06c1.cab >nul 2>&1 call :Download "http://download.windowsupdate.com/c/msdownload/update/software/updt/2015/11/windows10.0-kb3106246-x64_38be8cc4777aadd5eba00476326eaca6952e06c1.cab" "windows10.0-kb3106246-x64_38be8cc4777aadd5eba00476326eaca6952e06c1.cab" call :Unzip "windows10.0-kb3106246-x64_38be8cc4777aadd5eba00476326eaca6952e06c1.cab" del windows10.0-kb3106246-x64_38be8cc4777aadd5eba00476326eaca6952e06c1.cab if exist "%SYSTEMDRIVE%\Program Files (x86)\" ( Set Arch=64 GOTO DVDInstall ) else ( Set Arch=86 GOTO DVDInstall ) :DVDInstall cls call :Infomsgbox "Downloading and installing necessary files... (5/5)" 9F windows10.0-kb3106246-x%Arch%.msi del windows10.0-kb3106246-x64.msi del windows10.0-kb3106246-x86.msi cls call :msgbox ok GOTO WinAppsmenu ::============================================================================================================================================================================== :Onedrive call :ClearButtons Call :GetActiveButton 9 7 set "Title1= _____________________________________________________________________________________________" set "Title2= ^| __ __ __ _ _ __ __ ___ __ __ _ ___ ____ ___ __ _ _ ___ ^|" set "Title3= ^| ( \/ ) ( ) ( \( ) ( ) / _)( _) / \ \ \( )( _) ___ \ \ ( ,) ( )( )( )( _) ^|" set "Title4= ^| ) ( /__\ ) ( /__\ ( (/\ ) _) ( () ) ) ( ) _)(___) ) ) ) ) \ )( \\// ) _) ^|" set "Title5= ^| (_/\/\_)(_)(_)(_)\_)(_)(_) \__/(___) \__/ (_)\_)(___) (___/ (_)\_)(__) (__) (___) ^|" set "Title6= ^|_____________________________________________________________________________________________^|" set "button1=Disable Onedrive" set "button2=Enable Onedrive" set "button3=Remove One-drive Icon From Windows Explorer" set "button4=Remove Dropbox Icon From Windows Explorer" set "button5=Add Onedrive Icon To Windows Explorer" set "button6=Add Onedrive Icon To Windows Explorer" set "button9=Uninstall One-Drive (No-restore)" set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="1" ( cls & call :Onedrive1 ) if "%buttonClicked%"=="2" ( cls & call :Onedrive2 ) if "%buttonClicked%"=="3" ( cls & call :Onedrive3OnedireDisable ) if "%buttonClicked%"=="4" ( cls & call :Onedrive3DropboxDisable ) if "%buttonClicked%"=="5" ( cls & call :Onedrive3OnedireEnable ) if "%buttonClicked%"=="6" ( cls & call :Onedrive3DropboxEnable ) if "%buttonClicked%"=="%ActiveButton9%" ( cls & call :Onedrive4 ) if "%buttonClicked%"=="14" goto WinAppsmenu goto Onedrive :Onedrive1 TASKKILL /F /IM OneDrive.exe /T reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive" /v "DisableFileSyncNGSC" /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive" /v "DisableLibrariesDefaultSaveToOneDrive" /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive" /v "DisableMeteredNetworkFileSync" /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Onedrive" /v "DisableFileSyncNGSC" /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Onedrive" /v "DisableLibrariesDefaultSaveToOneDrive" /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Onedrive" /v "DisableMeteredNetworkFileSync" /t REG_DWORD /d 1 /f reg add "HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 0 /f reg add "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 0 /f reg add "HKEY_CURRENT_USER\Software\Classes\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 0 /f reg add "HKEY_CURRENT_USER\Software\Classes\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 0 /f reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "OneDrive" /f call :msgbox ok goto Onedrive :Onedrive2 reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive" /v "DisableFileSyncNGSC" /t REG_DWORD /d 0 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive" /v "DisableLibrariesDefaultSaveToOneDrive" /t REG_DWORD /d 0 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive" /v "DisableMeteredNetworkFileSync" /t REG_DWORD /d 0 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Onedrive" /v "DisableFileSyncNGSC" /t REG_DWORD /d 0 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Onedrive" /v "DisableLibrariesDefaultSaveToOneDrive" /t REG_DWORD /d 0 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Onedrive" /v "DisableMeteredNetworkFileSync" /t REG_DWORD /d 0 /f reg add "HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 1 /f reg add "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 1 /f reg add "HKEY_CURRENT_USER\Software\Classes\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 1 /f reg add "HKEY_CURRENT_USER\Software\Classes\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 1 /f call :msgbox ok goto Onedrive :Onedrive3OnedireDisable Reg.exe add "HKCR\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d "0" /f Reg.exe add "HKCR\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d "0" /f call :RestartExplorer call :msgbox ok goto Onedrive :Onedrive3DropboxDisable Reg.exe add "HKCR\CLSID\{E31EA727-12ED-4702-820C-4B6445F28E1A}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d "0" /f Reg.exe add "HKCR\Wow6432Node\CLSID\{E31EA727-12ED-4702-820C-4B6445F28E1A}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d "0" /f call :RestartExplorer call :msgbox ok goto Onedrive :Onedrive3OnedireEnable Reg.exe add "HKCR\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d "1" /f Reg.exe add "HKCR\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d "1" /f call :RestartExplorer call :msgbox ok goto Onedrive :Onedrive3DropboxEnable Reg.exe add "HKCR\CLSID\{E31EA727-12ED-4702-820C-4B6445F28E1A}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d "1" /f Reg.exe add "HKCR\Wow6432Node\CLSID\{E31EA727-12ED-4702-820C-4B6445F28E1A}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d "1" /f call :RestartExplorer call :msgbox ok goto Onedrive :Onedrive4 set x86="%SYSTEMROOT%\System32\OneDriveSetup.exe" set x64="%SYSTEMROOT%\SysWOW64\OneDriveSetup.exe" echo. echo Closing OneDrive process. echo --------------------------------------------------------------------------------------------------------------------- echo. taskkill /f /im OneDrive.exe ping 127.0.0.1 -n 1,5 > NUL 2>&1 echo. echo Uninstalling OneDrive using included uninstaller echo --------------------------------------------------------------------------------------------------------------------- echo. if exist %x64% ( %x64% /uninstall ) else ( %x86% /uninstall ) echo. echo Removing OneDrive leftovers. echo --------------------------------------------------------------------------------------------------------------------- echo. rd "%USERPROFILE%\OneDrive" /Q /S > NUL 2>&1 rd "%systemroot%/Users/%username%/OneDrive" /Q /S > NUL 2>&1 rd "C:\OneDriveTemp" /Q /S > NUL 2>&1 rd "%LOCALAPPDATA%\Microsoft\OneDrive" /Q /S > NUL 2>&1 rd "%PROGRAMDATA%\Microsoft OneDrive" /Q /S > NUL 2>&1 rd "%Windir%\SysWOW64" /Q /S > NUL 2>&1 TASKKILL /F /IM OneDrive.exe /T reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive" /v "DisableFileSyncNGSC" /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive" /v "DisableLibrariesDefaultSaveToOneDrive" /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive" /v "DisableMeteredNetworkFileSync" /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Onedrive" /v "DisableFileSyncNGSC" /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Onedrive" /v "DisableLibrariesDefaultSaveToOneDrive" /t REG_DWORD /d 1 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Onedrive" /v "DisableMeteredNetworkFileSync" /t REG_DWORD /d 1 /f reg add "HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 0 /f reg add "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 0 /f reg add "HKEY_CURRENT_USER\Software\Classes\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 0 /f reg add "HKEY_CURRENT_USER\Software\Classes\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 0 /f reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "OneDrive" /f takeown /F %Windir%\SysWOW64\OneDriveSetup.exe icacls %Windir%\SysWOW64\OneDriveSetup.exe /grant Administrators:F del %Windir%\SysWOW64\OneDriveSetup.exe takeown /F %Windir%\SysWOW64\OneDriveSettingSyncProvider.dll icacls %Windir%\SysWOW64\OneDriveSettingSyncProvider.dll /grant Administrators:F del %Windir%\SysWOW64\OneDriveSettingSyncProvider.dll Del %AppData%\Microsoft\Windows\Start Menu\Programs\OneDrive.lnk echo. echo Removing OneDrive from the Explorer Side Panel. echo --------------------------------------------------------------------------------------------------------------------- REG DELETE "HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f REG DELETE "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f echo. echo Removing Onedrive Packages echo --------------------------------------------------------------------------------------------------------------------- cd /d "%~dp0" call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiWTNGYXdiRU9SNVU" install_wim_tweak.exe install_wim_tweak.exe /o /l install_wim_tweak.exe /o /c Microsoft-Windows-OneDrive-Setup-Package /r install_wim_tweak.exe /h /o /l del Packages.txt del install_wim_tweak.exe call :RestartExplorer echo. & echo. & echo. & echo. call :msgbox ok goto Onedrive ::============================================================================================================================================================================== :UninstallEdge cls set Button1Color=4F set Button2Color=2F %BB% ^ /c 0x1F /g 16 1 /d "_______________________________________________________________________________________"^ /g 15 2 /d "| __ __ __ __ ___ __ ___ __ ___ ____ ___ ___ __ ___ |"^ /g 15 3 /d "| ( \/ )( ) / _)( ,) / \ / __) / \ ( _)(_ _) ( _)( \ / _)( _) |"^ /g 15 4 /d "| ) ( )( ( (_ ) \ ( () )\__ \( () ) ) _) )( ) _) ) ) )( (/\ ) _) |"^ /g 15 5 /d "| (_/\/\_)(__) \__)(_)\_) \__/ (___/ \__/ (_) (__) (___)(___/ \__/(___) |"^ /g 15 6 /d "|_______________________________________________________________________________________|"^ /g 15 7 /d " "^ /g 16 8 /d "________________________________________________________________________________________"^ /c 0x%Button1Color% /g 15 9 /d "| |"^ /g 15 10 /d "| 1.Uninstall Microsoft Edge |"^ /g 15 11 /d "| This will remove MS Edge completely using : install_wim_tweak but the script |"^ /g 15 12 /d "| will first backup all packages to restore them when needed. |"^ /g 15 13 /d "| If you uninstall MS Edge twice then the packages will be removed. |"^ /g 15 14 /d "| Microsoft .NET Framework 3.5 should be installed. |"^ /g 15 15 /d "| You Should be connected to Internet to download necessary files. |"^ /g 15 16 /d "|________________________________________________________________________________________|"^ /c 0x1F /g 16 17 /d "________________________________________________________________________________________" ^ /c 0x%Button2Color% /g 15 18 /d "| |"^ /g 15 19 /d "| 2.Restore Microsoft Edge |"^ /g 15 20 /d "| This will restore MS Edge using backed up packages.If the restore operation |"^ /g 15 21 /d "| didn't work try it again and Contact Yasser Da Sila in MDL. |"^ /g 15 22 /d "| If you uninstalled EDGE twice you won't be able to restore it. |"^ /g 15 23 /d "|________________________________________________________________________________________|"^ /c 0x1F /g 16 24 /d "________________________________________________________________________________________"^ /c 0x9F /g 15 25 /d "| |"^ /c 0x9F /g 15 26 /d "| 0. Go Back |"^ /c 0x9F /g 15 27 /d "|________________________________________________________________________________________|"^ /c 0x1F If /i "%SelectMode%"=="Mouse" ( for /f "tokens=1,2,3 delims=:" %%a in ('%BB% /m') do ( %BB% /g 0 0 set "buttonClicked"="" %BB% /d "mouse: %%b %%a %%c " >nul 2>&1 if %%c EQU 1 if %%b GEQ 9 if %%b LEQ 16 if %%a GEQ 15 if %%a LEQ 104 set "buttonClicked=1" if %%c EQU 1 if %%b GEQ 19 if %%b LEQ 24 if %%a GEQ 15 if %%a LEQ 104 set "buttonClicked=2" if %%c EQU 1 if %%b GEQ 26 if %%b LEQ 28 if %%a GEQ 15 if %%a LEQ 104 set "buttonClicked=0" ) ) else ( %BB% /g 16 29 Set /p buttonClicked=Use Your Keyboard Numbers to select options : ) If %buttonClicked%==0 exit /b If %buttonClicked%==1 call :UninstallEdge_Confirm If %buttonClicked%==2 call :UninstallEdge_restore goto UninstallEdge :UninstallEdge_Confirm call :msgbox Confirm if /i "!buttonClicked!"=="No" ( goto UninstallEdge ) else ( cls call :Infomsgbox "Downloading necessary files... " 9F 0 Set CurCD=%CD% Del /Q "%HOMEDRIVE%\Export-Edge-Packages\" >nul 2>&1 MKDIR "%HOMEDRIVE%\Export-Edge-Packages\" >nul 2>&1 attrib +h %HOMEDRIVE%\Export-Edge-Packages >nul 2>&1 cd %HOMEDRIVE%\Export-Edge-Packages call :Servercheck drive.google.com UninstallEdge call :download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiUnZHSm9ZVVBMQTQ" Export-Edge-Packages.zip call :Unzip Export-Edge-Packages.zip del Export-Edge-Packages.zip cmd /c %HOMEDRIVE%\Export-Edge-Packages\Start.cmd cd %CurCD% goto UninstallEdge ) :UninstallEdge_restore cls sc stop wuauserv >nul 2>&1 FOR /F "delims=" %%A IN ('dir %HOMEDRIVE%\Export-Edge-Packages\Output\*.cab /s /b') DO (dism.exe /online /Add-Package /PackagePath:%%A /NoRestart) FOR /F "delims=" %%A IN ('dir %HOMEDRIVE%\Export-Edge-Packages\Output\*.cab /s /b') DO (dism.exe /online /Add-Package /PackagePath:%%A /NoRestart) call :Infomsgbox "Microsoft Edge should be installed, Please Restart your computer.","9F" goto UninstallEdge ::============================================================================================================================================================================== :UninstallCortana cls set Button1Color=4F set Button2Color=2F %BB% ^ /c 0x1F /g 16 1 /d "_______________________________________________________________________________________"^ /g 15 2 /d "| __ __ ___ ____ __ _ _ __ |"^ /g 15 3 /d "| / _) / \ ( ,) (_ _) ( ) ( \( ) ( ) |"^ /g 15 4 /d "| ( (_ ( () ) ) \ )( /__\ ) ( /__\ |"^ /g 15 5 /d "| \__) \__/ (_)\_) (__) (_)(_)(_)\_)(_)(_) |"^ /g 15 6 /d "|_______________________________________________________________________________________|"^ /g 15 7 /d " "^ /g 16 8 /d "________________________________________________________________________________________"^ /c 0x%Button1Color% /g 15 9 /d "| |"^ /g 15 10 /d "| 1.Uninstall Cortana |"^ /g 15 11 /d "| This will remove Cortana completely using : install_wim_tweak but the script |"^ /g 15 12 /d "| will first backup all packages to restore them when needed. |"^ /g 15 13 /d "| If you uninstall Cortana twice then the packages will be removed. |"^ /g 15 14 /d "| Microsoft .NET Framework 3.5 should be installed. |"^ /g 15 15 /d "| You Should be connected to Internet to download necessary files. |"^ /g 15 16 /d "|________________________________________________________________________________________|"^ /c 0x1F /g 16 17 /d "________________________________________________________________________________________" ^ /c 0x%Button2Color% /g 15 18 /d "| |"^ /g 15 19 /d "| 2.Restore Cortana |"^ /g 15 20 /d "| This will restore Cortana using backed up packages.If the restore operation |"^ /g 15 21 /d "| didn't work try it again and Contact Yasser Da Sila in MDL. |"^ /g 15 22 /d "| If you uninstalled Cortana twice you won't be able to restore it. |"^ /g 15 23 /d "|________________________________________________________________________________________|"^ /c 0x1F /g 16 24 /d "________________________________________________________________________________________"^ /c 0x9F /g 15 25 /d "| |"^ /c 0x9F /g 15 26 /d "| 0. Go Back |"^ /c 0x9F /g 15 27 /d "|________________________________________________________________________________________|"^ /c 0x1F If /i "%SelectMode%"=="Mouse" ( for /f "tokens=1,2,3 delims=:" %%a in ('%BB% /m') do ( %BB% /g 0 0 set "buttonClicked"="" %BB% /d "mouse: %%b %%a %%c " >nul 2>&1 if %%c EQU 1 if %%b GEQ 9 if %%b LEQ 16 if %%a GEQ 15 if %%a LEQ 104 set "buttonClicked=1" if %%c EQU 1 if %%b GEQ 19 if %%b LEQ 24 if %%a GEQ 15 if %%a LEQ 104 set "buttonClicked=2" if %%c EQU 1 if %%b GEQ 26 if %%b LEQ 28 if %%a GEQ 15 if %%a LEQ 104 set "buttonClicked=0" ) ) else ( %BB% /g 16 29 Set /p buttonClicked=Use Your Keyboard Numbers to select options : ) If %buttonClicked%==0 exit /b If %buttonClicked%==1 call :UninstallCortana_Confirm If %buttonClicked%==2 call :UninstallCortana_restore goto UninstallCortana :UninstallCortana_Confirm call :msgbox Confirm if /i "!buttonClicked!"=="No" ( goto UninstallCortana ) else ( cls call :Infomsgbox "Downloading necessary files... " 9F 0 Set CurCD=%CD% Del /Q "%HOMEDRIVE%\Export-Cortana-Packages\" >nul 2>&1 MKDIR "%HOMEDRIVE%\Export-Cortana-Packages\" >nul 2>&1 attrib +h %HOMEDRIVE%\Export-Cortana-Packages >nul 2>&1 cd %HOMEDRIVE%\Export-Cortana-Packages call :Servercheck drive.google.com UninstallCortana call :download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiNTdPeUFSdUx4WkU" Export-Cortana-Packages.zip call :Unzip Export-Cortana-Packages.zip del Export-Cortana-Packages.zip cmd /c %HOMEDRIVE%\Export-Cortana-Packages\Start.cmd cd %CurCD% goto UninstallCortana) :UninstallCortana_restore cls sc stop wuauserv >nul 2>&1 FOR /F "delims=" %%A IN ('dir %HOMEDRIVE%\Export-Cortana-Packages\Output\*.cab /s /b') DO (dism.exe /online /Add-Package /PackagePath:%%A /NoRestart) FOR /F "delims=" %%A IN ('dir %HOMEDRIVE%\Export-Cortana-Packages\Output\*.cab /s /b') DO (dism.exe /online /Add-Package /PackagePath:%%A /NoRestart) call :Infomsgbox "Cortana should be installed, Please Restart your computer.","9F" goto UninstallCortana ::============================================================================================================================================================================== :UninstallIE11 cls set Button1Color=4F set Button2Color=2F %BB% ^ /c 0x1F /g 16 1 /d "_______________________________________________________________________________________"^ /g 15 2 /d "| __ __ _ ____ ____ ____ __ _ ____ ____ ____ _ _ ____ __ __ ____ ____ ____ |"^ /g 15 3 /d "| ( )( ( (_ _( __( _ ( ( ( __(_ _) ( __( \/ ( _ ( ) / ( _ ( __( _ \ |"^ /g 15 4 /d "| )( / / )( ) _) ) / /) _) )( ) _) ) ( ) __/ (_/( O ) /) _) ) / |"^ /g 15 5 /d "| (__)\_)__)(__)(____(__\_\_)__(____)(__) (____(_/\_(__) \____/\__(__\_(____(__\_) |"^ /g 15 6 /d "|_______________________________________________________________________________________|"^ /g 15 7 /d " "^ /g 16 8 /d "________________________________________________________________________________________"^ /c 0x%Button1Color% /g 15 9 /d "| |"^ /g 15 10 /d "| 1.Uninstall Internet Explorer 11 |"^ /g 15 11 /d "| This will remove IE 11 completely using : install_wim_tweak but the script |"^ /g 15 12 /d "| will first backup all packages to restore them when needed. |"^ /g 15 13 /d "| If you uninstall IE 11 twice then the packages will be removed. |"^ /g 15 14 /d "| Microsoft .NET Framework 3.5 should be installed. |"^ /g 15 15 /d "| You Should be connected to Internet to download necessary files. |"^ /g 15 16 /d "|________________________________________________________________________________________|"^ /c 0x1F /g 16 17 /d "________________________________________________________________________________________" ^ /c 0x%Button2Color% /g 15 18 /d "| |"^ /g 15 19 /d "| 2.Restore Internet Explorer 11 |"^ /g 15 20 /d "| This will restore IE 11 using backed up packages.If the restore operation didn't |"^ /g 15 21 /d "| work try it again and Contact Yasser Da Sila in MDL. |"^ /g 15 22 /d "| If you uninstalled IE11 twice you won't be able to restore it. |"^ /g 15 23 /d "|________________________________________________________________________________________|"^ /c 0x1F /g 16 24 /d "________________________________________________________________________________________"^ /c 0x9F /g 15 25 /d "| |"^ /c 0x9F /g 15 26 /d "| 0. Go Back |"^ /c 0x9F /g 15 27 /d "|________________________________________________________________________________________|"^ /c 0x1F If /i "%SelectMode%"=="Mouse" ( for /f "tokens=1,2,3 delims=:" %%a in ('%BB% /m') do ( %BB% /g 0 0 set "buttonClicked"="" %BB% /d "mouse: %%b %%a %%c " >nul 2>&1 if %%c EQU 1 if %%b GEQ 9 if %%b LEQ 16 if %%a GEQ 15 if %%a LEQ 104 set "buttonClicked=1" if %%c EQU 1 if %%b GEQ 19 if %%b LEQ 24 if %%a GEQ 15 if %%a LEQ 104 set "buttonClicked=2" if %%c EQU 1 if %%b GEQ 26 if %%b LEQ 28 if %%a GEQ 15 if %%a LEQ 104 set "buttonClicked=0" ) ) else ( %BB% /g 16 29 Set /p buttonClicked=Use Your Keyboard Numbers to select options : ) If %buttonClicked%==0 exit /b If %buttonClicked%==1 call :UninstallIE11_Confirm If %buttonClicked%==2 call :UninstallIE11_restore goto UninstallIE11 :UninstallIE11_Confirm call :msgbox Confirm if /i "!buttonClicked!"=="No" ( goto UninstallIE11 ) else ( cls call :Infomsgbox "Downloading necessary files... " 9F 0 Set CurCD=%CD% Del /Q "%HOMEDRIVE%\Export-IE-Packages\" >nul 2>&1 MKDIR "%HOMEDRIVE%\Export-IE-Packages\" >nul 2>&1 attrib +h %HOMEDRIVE%\Export-IE-Packages >nul 2>&1 cd %HOMEDRIVE%\Export-IE-Packages call :Servercheck drive.google.com UninstallIE11 call :download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiVlJ4WUlRVnFhTTg" Export-IE-Packages.zip call :Unzip Export-IE-Packages.zip del Export-IE-Packages.zip cmd /c %HOMEDRIVE%\Export-IE-Packages\Start.cmd cd %CurCD% goto UninstallIE11 ) :UninstallIE11_restore cls sc stop wuauserv >nul 2>&1 FOR /F "delims=" %%A IN ('dir %HOMEDRIVE%\Export-IE-Packages\Output\*.cab /s /b') DO (dism.exe /online /Add-Package /PackagePath:%%A /NoRestart) FOR /F "delims=" %%A IN ('dir %HOMEDRIVE%\Export-IE-Packages\Output\*.cab /s /b') DO (dism.exe /online /Add-Package /PackagePath:%%A /NoRestart) call :Infomsgbox "IE11 should be installed, Please Restart your computer.","9F" goto UninstallIE11 ::============================================================================================================================================================================== :CALC32 cd /d "%~dp0" Set CurCD=%CD% call :Infomsgbox "Downloading and installing necessary files..." 9F 0 call :Servercheck drive.google.com WinAppsmenu call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiaGNnbm94aDhQbjg" Old-Calculator-for-Windows10.exe "Old-Calculator-for-Windows10.exe" /S del "Old-Calculator-for-Windows10.exe" cd %CurCD% cls call :msgbox ok exit /b ::============================================================================================================================================================================== :Paint32 cd /d "%~dp0" Set CurCD=%CD% call :Infomsgbox "Downloading and installing necessary files..." 9F 0 call :Servercheck drive.google.com WinAppsmenu call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiVC1SWWRIajRna0E" Classic-Paint-for-Windows-10.exe "Classic-Paint-for-Windows-10.exe" /S del "Classic-Paint-for-Windows-10.exe" cd %CurCD% cls call :msgbox ok exit /b ::============================================================================================================================================================================== :Win7Taskmanager cd /d "%~dp0" Set CurCD=%CD% call :Infomsgbox "Downloading and installing necessary files..." 9F 0 call :Servercheck drive.google.com WinAppsmenu................................. call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiT1pJWkc4c0VrM0E" Old-Task-Manager-for-Windows10.exe "Old-Task-Manager-for-Windows10.exe" /S del "Old-Task-Manager-for-Windows10.exe" cd %CurCD% cls call :msgbox ok exit /b ::============================================================================================================================================================================== :OLDMSConfig cd /d "%~dp0" Set CurCD=%CD% call :Infomsgbox "Downloading and installing necessary files..." 9F 0 call :Servercheck drive.google.com WinAppsmenu call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiZTlyQ09ZRGFkTDg" MSCONFIGforWindows10and8.exe "MSCONFIGforWindows10and8.exe" /S del "MSCONFIGforWindows10and8.exe" cd %CurCD% cls call :msgbox ok exit /b :================================================================================================ :verify-WindowsDefender reg query "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v DisableAntiSpyware | find "0x1" >nul if "%errorlevel%"=="0" ( (set "WindowsDefender=Disabled") & (set Button%~1Color="4F") ) else ( (set "WindowsDefender=Enabled") & (set Button%~1Color="2F") ) exit/b :Enable-WindowsDefender reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v "NOC_GLOBAL_SETTING_TOASTS_ENABLED" /t REG_DWORD /d 1 /f > NUL 2>&1 Reg.exe delete "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /f > NUL 2>&1 Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run" /v "WindowsDefender" /t REG_BINARY /d "060000000000000000000000" /f > NUL 2>&1 Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "WindowsDefender" /t REG_EXPAND_SZ /d "\"%%ProgramFiles%%\Windows Defender\MSASCuiL.exe\"" /f > NUL 2>&1 Start /d "%ProgramFiles%\Windows Defender" MSASCui.exe call :msgbox ok 300 exit /b :Disable-WindowsDefender taskkill /IM MSASCuiL.exe /F > NUL 2>&1 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v "NOC_GLOBAL_SETTING_TOASTS_ENABLED" /t REG_DWORD /d 0 /f > NUL 2>&1 Reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t REG_DWORD /d "1" /f > NUL 2>&1 Reg.exe delete "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "Windows Defender" /f > NUL 2>&1 Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "WindowsDefender" /f > NUL 2>&1 Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run" /v "Windows Defender" /f > NUL 2>&1 call :msgbox ok 300 exit /b ::============================================================================================================================================================================== :verify-PhotoViewer reg query "HKCR\Applications\photoviewer.dll\shell\open" /v MuiVerb | find "@photoviewer.dll,-3043" >nul if "%errorlevel%"=="0" ( (set "PhotoViewer=Enabled") & (set Button%~1Color="2F") ) else ( (set "PhotoViewer=Disabled") & (set Button%~1Color="4F") ) exit/b :Enable-PhotoViewer reg add "HKCR\Applications\photoviewer.dll\shell\open" /v "MuiVerb" /t REG_SZ /d "@photoviewer.dll,-3043" /f > NUL 2>&1 reg add "HKCR\Applications\photoviewer.dll\shell\open\command" /ve /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\rundll32.exe \"%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll\", ImageView_Fullscreen %%1" /f > NUL 2>&1 reg add "HKCR\Applications\photoviewer.dll\shell\open\DropTarget" /v "Clsid" /t REG_SZ /d "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Bitmap" /v "ImageOptionFlags" /t REG_DWORD /d "1" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Bitmap" /v "FriendlyTypeName" /t REG_EXPAND_SZ /d "@%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll,-3056" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Bitmap\DefaultIcon" /ve /t REG_SZ /d "%%SystemRoot%%\System32\imageres.dll,-70" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Bitmap\shell\open\command" /ve /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\rundll32.exe \"%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll\", ImageView_Fullscreen %%1" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Bitmap\shell\open\DropTarget" /v "Clsid" /t REG_SZ /d "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.JFIF" /v "EditFlags" /t REG_DWORD /d "65536" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.JFIF" /v "ImageOptionFlags" /t REG_DWORD /d "1" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.JFIF" /v "FriendlyTypeName" /t REG_EXPAND_SZ /d "@%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll,-3055" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.JFIF\DefaultIcon" /ve /t REG_SZ /d "%%SystemRoot%%\System32\imageres.dll,-72" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.JFIF\shell\open" /v "MuiVerb" /t REG_EXPAND_SZ /d "@%%ProgramFiles%%\Windows Photo Viewer\photoviewer.dll,-3043" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.JFIF\shell\open\command" /ve /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\rundll32.exe \"%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll\", ImageView_Fullscreen %%1" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.JFIF\shell\open\DropTarget" /v "Clsid" /t REG_SZ /d "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Jpeg" /v "EditFlags" /t REG_DWORD /d "65536" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Jpeg" /v "ImageOptionFlags" /t REG_DWORD /d "1" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Jpeg" /v "FriendlyTypeName" /t REG_EXPAND_SZ /d "@%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll,-3055" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Jpeg\DefaultIcon" /ve /t REG_SZ /d "%%SystemRoot%%\System32\imageres.dll,-72" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Jpeg\shell\open" /v "MuiVerb" /t REG_EXPAND_SZ /d "@%%ProgramFiles%%\Windows Photo Viewer\photoviewer.dll,-3043" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Jpeg\shell\open\command" /ve /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\rundll32.exe \"%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll\", ImageView_Fullscreen %%1" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Jpeg\shell\open\DropTarget" /v "Clsid" /t REG_SZ /d "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Png" /v "ImageOptionFlags" /t REG_DWORD /d "1" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Png" /v "FriendlyTypeName" /t REG_EXPAND_SZ /d "@%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll,-3057" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Png\DefaultIcon" /ve /t REG_SZ /d "%%SystemRoot%%\System32\imageres.dll,-71" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Png\shell\open\command" /ve /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\rundll32.exe \"%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll\", ImageView_Fullscreen %%1" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Png\shell\open\DropTarget" /v "Clsid" /t REG_SZ /d "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Gif" /v "ImageOptionFlags" /t REG_DWORD /d "1" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Gif" /v "FriendlyTypeName" /t REG_EXPAND_SZ /d "@%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll,-3057" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Gif\DefaultIcon" /ve /t REG_SZ /d "%%SystemRoot%%\System32\imageres.dll,-83" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Gif\shell\open\command" /ve /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\rundll32.exe \"%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll\", ImageView_Fullscreen %%1" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Gif\shell\open\DropTarget" /v "Clsid" /t REG_SZ /d "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Wdp" /v "EditFlags" /t REG_DWORD /d "65536" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Wdp" /v "ImageOptionFlags" /t REG_DWORD /d "1" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Wdp\DefaultIcon" /ve /t REG_SZ /d "%%SystemRoot%%\System32\wmphoto.dll,-400" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Wdp\shell\open" /v "MuiVerb" /t REG_EXPAND_SZ /d "@%%ProgramFiles%%\Windows Photo Viewer\photoviewer.dll,-3043" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Wdp\shell\open\command" /ve /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\rundll32.exe \"%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll\", ImageView_Fullscreen %%1" /f > NUL 2>&1 reg add "HKCR\PhotoViewer.FileAssoc.Wdp\shell\open\DropTarget" /v "Clsid" /t REG_SZ /d "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities" /v "ApplicationDescription" /t REG_SZ /d "@%%ProgramFiles%%\Windows Photo Viewer\photoviewer.dll,-3069" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities" /v "ApplicationName" /t REG_SZ /d "@%%ProgramFiles%%\Windows Photo Viewer\photoviewer.dll,-3009" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".jpg" /t REG_SZ /d "PhotoViewer.FileAssoc.Jpeg" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".wdp" /t REG_SZ /d "PhotoViewer.FileAssoc.Wdp" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".jfif" /t REG_SZ /d "PhotoViewer.FileAssoc.JFIF" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".dib" /t REG_SZ /d "PhotoViewer.FileAssoc.Bitmap" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".png" /t REG_SZ /d "PhotoViewer.FileAssoc.Png" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".jxr" /t REG_SZ /d "PhotoViewer.FileAssoc.Wdp" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".bmp" /t REG_SZ /d "PhotoViewer.FileAssoc.Bitmap" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".jpe" /t REG_SZ /d "PhotoViewer.FileAssoc.Jpeg" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".jpeg" /t REG_SZ /d "PhotoViewer.FileAssoc.Jpeg" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".gif" /t REG_SZ /d "PhotoViewer.FileAssoc.Gif" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".tif" /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f > NUL 2>&1 reg add "HKLM\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".tiff" /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f > NUL 2>&1 Call :msgbox ok 200 exit /b :: =============================================================================================================================================================================== :verify-Darkmode reg query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v AppsUseLightTheme | find "0x0" >nul if "%errorlevel%"=="0" ( (set "Darkmode=Enabled") & (set Button%~1Color="2F") ) else ( (set "Darkmode=Disabled") & (set Button%~1Color="4F") ) exit/b :Enable-Darkmode Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "AppsUseLightTheme" /t REG_DWORD /d "0" /f >nul Reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "AppsUseLightTheme" /t REG_DWORD /d "0" /f >nul Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "Theme" /t REG_DWORD /d "1" /f >nul exit /b :Disable-Darkmode Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "AppsUseLightTheme" /t REG_DWORD /d "1" /f >nul Reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "AppsUseLightTheme" /t REG_DWORD /d "1" /f >nul Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "Theme" /t REG_DWORD /d "0" /f >nul exit /b ::============================================================================================================================================================================== :verify-VolumeControlUI reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\MTCUVC" /v EnableMtcUvc | find "0x0" >nul if "%errorlevel%"=="0" ( (set "VolumeControlUI=OLD") & (set Button%~1Color="4F") ) else ( (set "VolumeControlUI=NEW") & (set Button%~1Color="2F") ) exit /b :OLD-VolumeControlUI Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\MTCUVC" /v "EnableMtcUvc" /t REG_DWORD /d "0" /f exit /b :NEW-VolumeControlUI Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\MTCUVC" /v "EnableMtcUvc" /t REG_DWORD /d "1" /f exit /b ::============================================================================================================================================================================== :verify-BatteryStatusUI reg query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ImmersiveShell" /v UseWin32BatteryFlyout | find "0x1" >nul if "%errorlevel%"=="0" ( (set "BatteryStatusUI=OLD") & (set Button%~1Color="4F") ) else ( (set "BatteryStatusUI=NEW") & (set Button%~1Color="2F") ) exit /b :OLD-BatteryStatusUI Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ImmersiveShell" /v "UseWin32BatteryFlyout" /t REG_DWORD /d "1" /f exit /b :NEW-BatteryStatusUI Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ImmersiveShell" /v "UseWin32BatteryFlyout" /t REG_DWORD /d "0" /f exit /b ::============================================================================================================================================================================== :verify-AltTabUI reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" /v AltTabSettings | find "0x1" >nul if "%errorlevel%"=="0" ( (set "AltTabUI=OLD") & (set Button%~1Color="4F") ) else ( (set "AltTabUI=NEW") & (set Button%~1Color="2F") ) exit /b :OLD-AltTabUI Reg.exe add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" /v "AltTabSettings" /t REG_DWORD /d "1" /f call :RestartExplorer exit /b :NEW-AltTabUI Reg.exe delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" /v "AltTabSettings" /f call :RestartExplorer exit /b ::============================================================================================================================================================================== :verify-Thumbnails reg query "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v IconsOnly | find "0x1" >nul if "%errorlevel%"=="0" ( (set "Thumbnails=Disabled") & (set Button%~1Color="4F") ) else ( (set "Thumbnails=Enabled") & (set Button%~1Color="2F") ) exit /b :Enable-Thumbnails REG ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V IconsOnly /T REG_DWORD /D 0 /F call :RestartExplorer exit /b :Disable-Thumbnails REG ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V IconsOnly /T REG_DWORD /D 1 /F call :RestartExplorer exit /b ::============================================================================================================================================================================== :verify-TaskViewBTN reg query "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowTaskViewButton | find "0x0" >nul if "%errorlevel%"=="0" ( (set "TaskViewBTN=Disabled") & (set Button%~1Color="2F") ) else ( (set "TaskViewBTN=Enabled") & (set Button%~1Color="2F") ) exit /b :Enable-TaskViewBTN Reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d "1" /f call :RestartExplorer exit /b :Disable-TaskViewBTN Reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d "0" /f call :RestartExplorer exit /b ::============================================================================================================================================================================== :verify-TransparencyBlur reg query "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v EnableTransparency | find "0x1" >nul if "%errorlevel%"=="0" ( (set "TransparencyBlur=Enabled") & (set Button%~1Color="2F") ) else ( (set "TransparencyBlur=Disabled") & (set Button%~1Color="4F") ) exit /b :Disable-TransparencyBlur Reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "EnableBlurBehind" /t REG_DWORD /d "0" /f Reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "EnableTransparency" /t REG_DWORD /d "0" /f call :RestartExplorer exit /b :Enable-TransparencyBlur Reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "EnableBlurBehind" /t REG_DWORD /d "1" /f Reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "EnableTransparency" /t REG_DWORD /d "1" /f call :RestartExplorer exit /b ::============================================================================================================================================================================== :verify-Logonscreen reg query "HKLM\Software\Policies\Microsoft\Windows\System" /v DisableLogonBackgroundImage | find "0x1" >nul if "%errorlevel%"=="0" (set "Logonscreen=Color") else (set "Logonscreen=Image") exit /b :Color-Logonscreen Reg.exe add "HKLM\Software\Policies\Microsoft\Windows\System" /v "DisableLogonBackgroundImage" /t REG_DWORD /d "1" /f exit /b :Image-Logonscreen Reg.exe add "HKLM\Software\Policies\Microsoft\Windows\System" /v "DisableLogonBackgroundImage" /t REG_DWORD /d "0" /f exit /b ::============================================================================================================================================================================== :verify-DeleteDialogDetails reg query "HKCR\AllFilesystemObjects" /v FileOperationPrompt | find "prop:System.PropGroup.FileSystem;System.ItemNameDisplay;System.ItemTypeText;System.ItemFolderPathDisplay;System.Size;System.DateCreated;System.DateModified;System.FileAttributes;System.OfflineAvailability;System.OfflineStatus;System.SharedWith;System.FileOwner;System.ComputerName" >nul if "%errorlevel%"=="0" ( (set "DeleteDialogDetails=Yes") & (set Button%~1Color="2F") ) else ( (set "DeleteDialogDetails= No") & (set Button%~1Color="2F") ) exit /b :Yes-DeleteDialogDetails Reg.exe add "HKCR\AllFilesystemObjects" /v "FileOperationPrompt" /t REG_SZ /d "prop:System.PropGroup.FileSystem;System.ItemNameDisplay;System.ItemTypeText;System.ItemFolderPathDisplay;System.Size;System.DateCreated;System.DateModified;System.FileAttributes;System.OfflineAvailability;System.OfflineStatus;System.SharedWith;System.FileOwner;System.ComputerName" /f exit /b :NO-DeleteDialogDetails Reg.exe delete "HKCR\AllFilesystemObjects" /v "FileOperationPrompt" /f Reg.exe add "HKCR\AllFilesystemObjects" /f exit /b ::============================================================================================================================================================================== :verify-Thumbnailsize reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v MinThumbSizePx | find "0x190" >nul if "%errorlevel%"=="0" (set "Thumbnailsize=190/400") else (set "Thumbnailsize=Default") exit /b :400-Thumbnailsize Reg.exe add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "MinThumbSizePx" /t REG_DWORD /d "400" /f call :RestartExplorer exit /b :Default-Thumbnailsize Reg.exe delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "MinThumbSizePx" /f call :RestartExplorer exit /b ::============================================================================================================================================================================== :ContextMenu call :ClearButtons call :verify-AdminRightsCM 1 >nul 2>&1 call :verify-SelectCM 2 >nul 2>&1 call :verify-PinQuickaccess 3 >nul 2>&1 call :verify-PersonalizeCM 4 >nul 2>&1 call :verify-ResolutionCM 5 >nul 2>&1 call :verify-PowerCM 6 >nul 2>&1 call :verify-BluetoothCM 7 >nul 2>&1 call :verify-OpenwithNotepad 8 >nul 2>&1 call :verify-CopyPath 9 >nul 2>&1 set "Title1= _______________________________________________________________________________________" set "Title2= ^| __ __ __ _ ____ ___ _ _ ____ __ __ ___ __ _ _ _ ^|" set "Title3= ^| / _) / \ \ \( )(_ _)( _)( \/ )(_ _) ( \/ )( _)\ \( )( )( ) ^|" set "Title4= ^| ( (_ ( () ) ) ( )( ) _) ) ( )( ) ( ) _) ) ( )()/ ^|" set "Title5= ^| \__) \__/ (_)\_) (__) (___)(_/\_) (__) (_/\/\_)(___)(_)\_) \__/ ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1='Grant Admin Full Control' In Files and Folders (%AdminRightsCM% )" set "button3= Pin to Quick access (%PinQuickaccess% )" set "button5= Screen Resolution menu in Desktop (%ResolutionCM% )" set "button7= Bluetooth menu in Desktop (%BluetoothCM% )" set "button9= Copy File Location to Clipboard (%CopyPath% )" set "button2= Select Context menu (%SelectCM% )" set "button4= Classic Personalize to Desktop (%PersonalizeCM% )" set "button6= Power Options in Desktop (%PowerCM% )" set "button8= Add Open with Notepad to Files (%OpenwithNotepad% )" set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="1" ((if /i "%AdminRightsCM%"==" ON" (Call :OFF-AdminRightsCM )) & (if /i "%AdminRightsCM%"=="OFF" (Call :ON-AdminRightsCM )) & goto ContextMenu ) >nul 2>&1 if "%buttonClicked%"=="2" ((if /i "%SelectCM%"==" ON" (Call :OFF-SelectCM )) & (if /i "%SelectCM%"=="OFF" (Call :ON-SelectCM )) & goto ContextMenu ) >nul 2>&1 if "%buttonClicked%"=="3" ((if /i "%PinQuickaccess%"==" ON" (Call :OFF-PinQuickaccess )) & (if /i "%PinQuickaccess%"=="OFF" (Call :ON-PinQuickaccess )) & goto ContextMenu ) >nul 2>&1 if "%buttonClicked%"=="4" ((if /i "%PersonalizeCM%"==" ON" (Call :OFF-PersonalizeCM )) & (if /i "%PersonalizeCM%"=="OFF" (Call :ON-PersonalizeCM )) & goto ContextMenu ) >nul 2>&1 if "%buttonClicked%"=="5" ((if /i "%ResolutionCM%"==" ON" (Call :OFF-ResolutionCM )) & (if /i "%ResolutionCM%"=="OFF" (Call :ON-ResolutionCM )) & goto ContextMenu ) >nul 2>&1 if "%buttonClicked%"=="6" ((if /i "%PowerCM%"==" ON" (Call :OFF-PowerCM )) & (if /i "%PowerCM%"=="OFF" (Call :ON-PowerCM )) & goto ContextMenu ) >nul 2>&1 if "%buttonClicked%"=="7" ((if /i "%BluetoothCM%"==" ON" (Call :OFF-BluetoothCM )) & (if /i "%BluetoothCM%"=="OFF" (Call :ON-BluetoothCM )) & goto ContextMenu ) >nul 2>&1 if "%buttonClicked%"=="8" ((if /i "%OpenwithNotepad%"==" ON" (Call :OFF-OpenwithNotepad )) & (if /i "%OpenwithNotepad%"=="OFF" (Call :ON-OpenwithNotepad )) & goto ContextMenu ) >nul 2>&1 if "%buttonClicked%"=="9" ((if /i "%CopyPath%"==" ON" (Call :OFF-CopyPath )) & (if /i "%CopyPath%"=="OFF" (Call :ON-CopyPath )) & goto ContextMenu ) >nul 2>&1 if "%buttonClicked%"=="14" goto UI goto ContextMenu :verify-AdminRightsCM reg query "HKCR\*\shell\runas" /v MUIVerb | find "Grant Admin Full Control" >nul if "%errorlevel%"=="0" (set "AdminRightsCM= ON") else (set "AdminRightsCM=OFF") exit /b :ON-AdminRightsCM Reg.exe add "HKCR\*\shell\runas" /v "MUIVerb" /t REG_SZ /d "Grant Admin Full Control" /f Reg.exe add "HKCR\*\shell\runas" /v "NoWorkingDirectory" /t REG_SZ /d "" /f Reg.exe add "HKCR\*\shell\runas" /v "icon" /t REG_SZ /d "%SystemRoot%\system32\imageres.dll ,73" /f Reg.exe add "HKCR\*\shell\runas\command" /ve /t REG_SZ /d "cmd.exe /c takeown /f \"%%1\" && icacls \"%%1\" /grant administrators:F" /f Reg.exe add "HKCR\*\shell\runas\command" /v "IsolatedCommand" /t REG_SZ /d "cmd.exe /c takeown /f \"%%1\" && icacls \"%%1\" /grant administrators:F" /f Reg.exe add "HKCR\exefile\shell\runas2" /ve /t REG_SZ /d "Grant Admin Full Control" /f Reg.exe add "HKCR\exefile\shell\runas2" /v "NoWorkingDirectory" /t REG_SZ /d "" /f Reg.exe add "HKCR\exefile\shell\runas2" /v "icon" /t REG_SZ /d "%SystemRoot%\system32\imageres.dll ,73" /f Reg.exe add "HKCR\exefile\shell\runas2\command" /ve /t REG_SZ /d "cmd.exe /c takeown /f \"%%1\" && icacls \"%%1\" /grant administrators:F" /f Reg.exe add "HKCR\exefile\shell\runas2\command" /v "IsolatedCommand" /t REG_SZ /d "cmd.exe /c takeown /f \"%%1\" && icacls \"%%1\" /grant administrators:F" /f Reg.exe add "HKCR\Directory\shell\runas" /ve /t REG_SZ /d "Grant Admin Full Control" /f Reg.exe add "HKCR\Directory\shell\runas" /v "NoWorkingDirectory" /t REG_SZ /d "" /f Reg.exe add "HKCR\Directory\shell\runas" /v "icon" /t REG_SZ /d "%SystemRoot%\system32\imageres.dll ,73" /f Reg.exe add "HKCR\Directory\shell\runas\command" /ve /t REG_SZ /d "cmd.exe /c takeown /f \"%%1\" /r /d y && icacls \"%%1\" /grant administrators:F /t" /f Reg.exe add "HKCR\Directory\shell\runas\command" /v "IsolatedCommand" /t REG_SZ /d "cmd.exe /c takeown /f \"%%1\" /r /d y && icacls \"%%1\" /grant administrators:F /t" /f exit /b :OFF-AdminRightsCM Reg.exe delete "HKCR\*\shell\runas" /f Reg.exe delete "HKCR\exefile\shell\runas2" /f Reg.exe delete "HKCR\Directory\shell\runas" /f exit /b :verify-SelectCM reg query "HKCR\*\shell\Select" /v SubCommands | find "Windows.selectall;Windows.selectnone;Windows.invertselection" >nul if "%errorlevel%"=="0" (set "SelectCM= ON") else (set "SelectCM=OFF") exit /b :ON-SelectCM Reg.exe add "HKCR\*\shell\Select" /v "MUIVerb" /t REG_SZ /d "Select" /f Reg.exe add "HKCR\*\shell\Select" /v "icon" /t REG_SZ /d "imageres.dll,-5308" /f Reg.exe add "HKCR\*\shell\Select" /v "SubCommands" /t REG_SZ /d "Windows.selectall;Windows.selectnone;Windows.invertselection" /f Reg.exe add "HKCR\Folder\shell\Select" /v "MUIVerb" /t REG_SZ /d "Select" /f Reg.exe add "HKCR\Folder\shell\Select" /v "icon" /t REG_SZ /d "imageres.dll,-5308" /f Reg.exe add "HKCR\Folder\shell\Select" /v "SubCommands" /t REG_SZ /d "Windows.selectall;Windows.selectnone;Windows.invertselection" /f Reg.exe add "HKCR\Directory\Background\shell\Select" /v "MUIVerb" /t REG_SZ /d "Select" /f Reg.exe add "HKCR\Directory\Background\shell\Select" /v "icon" /t REG_SZ /d "imageres.dll,-5308" /f Reg.exe add "HKCR\Directory\Background\shell\Select" /v "SubCommands" /t REG_SZ /d "Windows.selectall" /f Reg.exe add "HKCR\LibraryFolder\Background\shell\Select" /v "MUIVerb" /t REG_SZ /d "Select" /f Reg.exe add "HKCR\LibraryFolder\Background\shell\Select" /v "icon" /t REG_SZ /d "imageres.dll,-5308" /f Reg.exe add "HKCR\LibraryFolder\Background\shell\Select" /v "SubCommands" /t REG_SZ /d "Windows.selectall;Windows.selectnone;Windows.invertselection" /f exit /b :OFF-SelectCM Reg.exe delete "HKCR\*\shell\Select" /f Reg.exe delete "HKCR\Folder\shell\Select" /f Reg.exe delete "HKCR\Directory\Background\shell\Select" /f Reg.exe delete "HKCR\LibraryFolder\Background\shell\Select" /f exit /b :verify-PinQuickaccess reg query "HKCR\Folder\shell\pintohome" /v MUIVerb | find "@shell32.dll,-51377" >nul if "%errorlevel%"=="0" (set "PinQuickaccess= ON") else (set "PinQuickaccess=OFF") exit /b :ON-PinQuickaccess Reg.exe delete "HKCR\Folder\shell\pintohome" /f Reg.exe add "HKCR\Folder\shell\pintohome" /v "MUIVerb" /t REG_SZ /d "@shell32.dll,-51377" /f Reg.exe add "HKCR\Folder\shell\pintohome" /v "AppliesTo" /t REG_SZ /d "System.ParsingName:<>\"::{679f85cb-0220-4080-b29b-5540cc05aab6}\"" /f Reg.exe add "HKCR\Folder\shell\pintohome\command" /v "DelegateExecute" /t REG_SZ /d "{b455f46e-e4af-4035-b0a4-cf18d2f6f28e}" /f Reg.exe delete "HKLM\SOFTWARE\Classes\Folder\shell\pintohome" /f Reg.exe add "HKLM\SOFTWARE\Classes\Folder\shell\pintohome" /v "MUIVerb" /t REG_SZ /d "@shell32.dll,-51377" /f Reg.exe add "HKLM\SOFTWARE\Classes\Folder\shell\pintohome" /v "AppliesTo" /t REG_SZ /d "System.ParsingName:<>\"::{679f85cb-0220-4080-b29b-5540cc05aab6}\"" /f Reg.exe add "HKLM\SOFTWARE\Classes\Folder\shell\pintohome\command" /v "DelegateExecute" /t REG_SZ /d "{b455f46e-e4af-4035-b0a4-cf18d2f6f28e}" /f exit /b :OFF-PinQuickaccess Reg.exe delete "HKCR\Folder\shell\pintohome" /f Reg.exe delete "HKLM\SOFTWARE\Classes\Folder\shell\pintohome" /f exit /b :verify-PersonalizeCM reg query "HKCR\DesktopBackground\Shell\Personalization\shell\001flyout" /v MUIVerb | find "Theme Settings" >nul if "%errorlevel%"=="0" (set "PersonalizeCM= ON") else (set "PersonalizeCM=OFF") exit /b :ON-PersonalizeCM Reg.exe add "HKCR\DesktopBackground\Shell\Personalization" /v "Icon" /t REG_SZ /d "themecpl.dll" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization" /v "MUIVerb" /t REG_SZ /d "Personalize (classic)" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization" /v "Position" /t REG_SZ /d "Bottom" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization" /v "SubCommands" /t REG_SZ /d "" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\001flyout" /v "MUIVerb" /t REG_SZ /d "Theme Settings" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\001flyout" /v "ControlPanelName" /t REG_SZ /d "Microsoft.Personalization" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\001flyout" /v "Icon" /t REG_SZ /d "themecpl.dll" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\001flyout\command" /v "DelegateExecute" /t REG_SZ /d "{06622D85-6856-4460-8DE1-A81921B41C4B}" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\002flyout" /v "Icon" /t REG_SZ /d "imageres.dll,-110" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\002flyout" /v "MUIVerb" /t REG_SZ /d "Desktop Background" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\002flyout" /v "CommandFlags" /t REG_DWORD /d "32" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\002flyout\command" /ve /t REG_SZ /d "rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,@desktop" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\003flyout" /v "MUIVerb" /t REG_SZ /d "Change Text Size" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\003flyout" /v "ControlPanelName" /t REG_SZ /d "Microsoft.Display" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\003flyout" /v "Icon" /t REG_SZ /d "display.dll,-1" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\003flyout\command" /v "DelegateExecute" /t REG_SZ /d "{06622D85-6856-4460-8DE1-A81921B41C4B}" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\004flyout" /v "Icon" /t REG_SZ /d "themecpl.dll" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\004flyout" /v "MUIVerb" /t REG_SZ /d "Color and Appearance" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\004flyout\command" /ve /t REG_SZ /d "rundll32.exe shell32.dll,Control_RunDLL desk.cpl,Advanced,@Advanced" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\005flyout" /v "Icon" /t REG_SZ /d "SndVol.exe,-101" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\005flyout" /v "MUIVerb" /t REG_SZ /d "Sounds" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\005flyout\command" /ve /t REG_SZ /d "rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,2" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\006flyout" /v "Icon" /t REG_SZ /d "PhotoScreensaver.scr" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\006flyout" /v "MUIVerb" /t REG_SZ /d "Screen Saver Settings" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\006flyout\command" /ve /t REG_SZ /d "rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,1" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\007flyout" /v "Icon" /t REG_SZ /d "desk.cpl" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\007flyout" /v "MUIVerb" /t REG_SZ /d "Desktop Icon Settings" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\007flyout" /v "CommandFlags" /t REG_DWORD /d "32" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\007flyout\command" /ve /t REG_SZ /d "rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\008flyout" /v "Icon" /t REG_SZ /d "main.cpl" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\008flyout" /v "MUIVerb" /t REG_SZ /d "Mouse Pointers" /f Reg.exe add "HKCR\DesktopBackground\Shell\Personalization\shell\008flyout\command" /ve /t REG_SZ /d "rundll32.exe shell32.dll,Control_RunDLL main.cpl,,1" /f exit /b :OFF-PersonalizeCM Reg.exe delete "HKCR\DesktopBackground\Shell\Personalization" /f exit /b :verify-ResolutionCM reg query "HKCR\DesktopBackground\Shell\Screen resolution" /v ControlPanelName | find "Microsoft.Display" >nul if "%errorlevel%"=="0" (set "ResolutionCM= ON") else (set "ResolutionCM=OFF") exit /b :ON-ResolutionCM Reg.exe add "HKCR\DesktopBackground\Shell\Screen resolution" /v "ControlPanelName" /t REG_SZ /d "Microsoft.Display" /f Reg.exe add "HKCR\DesktopBackground\Shell\Screen resolution" /v "ControlPanelPage" /t REG_SZ /d "Settings" /f Reg.exe add "HKCR\DesktopBackground\Shell\Screen resolution" /v "Icon" /t REG_SZ /d "%%SystemRoot%%\System32\display.dll,-1" /f Reg.exe add "HKCR\DesktopBackground\Shell\Screen resolution" /v "Position" /t REG_SZ /d "Bottom" /f Reg.exe add "HKCR\DesktopBackground\Shell\Screen resolution" /ve /t REG_SZ /d "@%%SystemRoot%%\system32\Display.dll,-300" /f Reg.exe add "HKCR\DesktopBackground\Shell\Screen resolution\command" /v "DelegateExecute" /t REG_SZ /d "{06622D85-6856-4460-8DE1-A81921B41C4B}" /f exit /b :OFF-ResolutionCM Reg.exe delete "HKCR\DesktopBackground\Shell\Screen resolution" /f exit /b :verify-PowerCM reg query "HKCR\DesktopBackground\Shell\Power" /v MUIVerb | find "Power" >nul if "%errorlevel%"=="0" (set "PowerCM= ON") else (set "PowerCM=OFF") exit /b :ON-PowerCM Reg.exe add "HKCR\DesktopBackground\Shell\Power" /v "MUIVerb" /t REG_SZ /d "Power" /f Reg.exe add "HKCR\DesktopBackground\Shell\Power" /v "SubCommands" /t REG_SZ /d "Lock;SwitchUser;SignOut;Sleep;Hibernate;HybridShutdown;ShutDown;SlideToShutdown;Restart;BootOptions" /f Reg.exe add "HKCR\DesktopBackground\Shell\Power" /v "icon" /t REG_SZ /d "shell32.dll,-221" /f Reg.exe add "HKCR\DesktopBackground\Shell\Power" /v "Position" /t REG_SZ /d "bottom" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Lock" /ve /t REG_SZ /d "Lock" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Lock" /v "icon" /t REG_SZ /d "shell32.dll,-48" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Lock\command" /ve /t REG_SZ /d "rundll32.exe user32.dll, LockWorkStation" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\SwitchUser" /ve /t REG_SZ /d "Switch User" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\SwitchUser" /v "icon" /t REG_SZ /d "imageres.dll,-88" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\SwitchUser\command" /ve /t REG_SZ /d "tsdiscon.exe" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\SignOut" /ve /t REG_SZ /d "Sign out" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\SignOut" /v "icon" /t REG_SZ /d "shell32.dll,-45" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\SignOut\command" /ve /t REG_SZ /d "shutdown.exe -L" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\ShutDown" /ve /t REG_SZ /d "Full Shut down" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\ShutDown" /v "icon" /t REG_SZ /d "shell32.dll,-28" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\ShutDown\command" /ve /t REG_SZ /d "shutdown.exe -s -f -t 00" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\HybridShutdown" /ve /t REG_SZ /d "Hybrid Shut down" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\HybridShutdown" /v "icon" /t REG_SZ /d "shell32.dll,-28" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\HybridShutdown\command" /ve /t REG_SZ /d "Shutdown -s -f -hybrid -t 00" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\SlideToShutdown" /ve /t REG_SZ /d "Slide to Shut down" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\SlideToShutdown" /v "icon" /t REG_SZ /d "shell32.dll,-28" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\SlideToShutdown\command" /ve /t REG_SZ /d "SlideToShutDown.exe" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Restart" /ve /t REG_SZ /d "Restart" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Restart" /v "icon" /t REG_SZ /d "shell32.dll,-290" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Restart\command" /ve /t REG_SZ /d "shutdown.exe -r -f -t 00" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\sleep" /ve /t REG_SZ /d "Sleep" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\sleep" /v "icon" /t REG_SZ /d "powercpl.dll,-514" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\sleep\command" /ve /t REG_SZ /d "rundll32.exe powrprof.dll,SetSuspendState Sleep" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\hibernate" /ve /t REG_SZ /d "Hibernate" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\hibernate" /v "icon" /t REG_SZ /d "imageres.dll,-101" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\hibernate\command" /ve /t REG_SZ /d "Shutdown -h" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\BootOptions" /ve /t REG_SZ /d "Restart to Boot Options" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\BootOptions" /v "icon" /t REG_SZ /d "RelPost.exe" /f Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\BootOptions\command" /ve /t REG_SZ /d "Shutdown -r -o -f -t 00" /f exit /b :OFF-PowerCM Reg.exe delete "HKCR\DesktopBackground\Shell\Power" /f Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Lock" /f Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\SwitchUser" /f Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\SignOut" /f Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\sleep" /f Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\hibernate" /f Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\ShutDown" /f Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\HybridShutdown" /f Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\SlideToShutdown" /f Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Restart" /f Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\BootOptions" /f exit /b :verify-BluetoothCM reg query "HKCR\DesktopBackground\Shell\Bluetooth" /v MUIVerb | find "Bluetooth" >nul if "%errorlevel%"=="0" (set "BluetoothCM= ON") else (set "BluetoothCM=OFF") exit /b :ON-BluetoothCM Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth" /v "Icon" /t REG_SZ /d "bthudtask.exe" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth" /v "MUIVerb" /t REG_SZ /d "Bluetooth" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth" /v "Position" /t REG_SZ /d "Middle" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth" /v "SubCommands" /t REG_SZ /d "" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\01menu" /v "MUIVerb" /t REG_SZ /d "Bluetooth Devices (classic)" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\01menu" /v "Icon" /t REG_SZ /d "" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\01menu\command" /ve /t REG_SZ /d "explorer shell:::{28803F59-3A75-4058-995F-4EE5503B023C}" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\02menu" /v "MUIVerb" /t REG_SZ /d "Bluetooth Devices" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\02menu" /v "Icon" /t REG_SZ /d "" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\02menu\command" /ve /t REG_SZ /d "explorer ms-settings:bluetooth" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\03menu" /v "MUIVerb" /t REG_SZ /d "Bluetooth File Transfer" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\03menu" /v "Icon" /t REG_SZ /d "" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\03menu" /v "CommandFlags" /t REG_DWORD /d "32" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\03menu\command" /ve /t REG_SZ /d "fsquirt.exe" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\04menu" /v "MUIVerb" /t REG_SZ /d "Options in Bluetooth Settings" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\04menu" /v "Icon" /t REG_SZ /d "" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\04menu" /v "CommandFlags" /t REG_DWORD /d "32" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\04menu\command" /ve /t REG_SZ /d "rundll32.exe shell32.dll,Control_RunDLL bthprops.cpl,,1" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\05menu" /v "MUIVerb" /t REG_SZ /d "COM Ports in Bluetooth Settings" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\05menu" /v "Icon" /t REG_SZ /d "" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\05menu\command" /ve /t REG_SZ /d "rundll32.exe shell32.dll,Control_RunDLL bthprops.cpl,,2" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\06menu" /v "MUIVerb" /t REG_SZ /d "Hardware in Bluetooth Settings" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\06menu" /v "Icon" /t REG_SZ /d "" /f Reg.exe add "HKCR\DesktopBackground\Shell\Bluetooth\shell\06menu\command" /ve /t REG_SZ /d "rundll32.exe shell32.dll,Control_RunDLL bthprops.cpl,,3" /f exit /b :OFF-BluetoothCM Reg.exe delete "HKCR\DesktopBackground\Shell\Bluetooth" /f exit /b :verify-OpenwithNotepad reg query "HKCR\*\shell\Open with Notepad" /v MUIVerb | find "Open with Notepad" >nul if "%errorlevel%"=="0" (set "OpenwithNotepad= ON") else (set "OpenwithNotepad=OFF") exit /b :ON-OpenwithNotepad Reg.exe add "HKCR\*\shell\Open with Notepad" /v "MUIVerb" /t REG_SZ /d "Open with Notepad" /f Reg.exe add "HKCR\*\shell\Open with Notepad\command" /ve /t REG_SZ /d "notepad.exe %%1" /f exit /b :OFF-OpenwithNotepad Reg.exe delete "HKCR\*\shell\Open with Notepad" /f exit /b :verify-CopyPath reg query "HKCR\*\shell\Copy Path to Clipboard" /v icon | find "%%SystemRoot%%\System32\shell32.dll ,260" >nul if "%errorlevel%"=="0" (set "CopyPath= ON") else (set "CopyPath=OFF") exit /b :ON-CopyPath Reg.exe add "HKCR\*\shell\Copy Path to Clipboard" /v "icon" /t REG_SZ /d "%%SystemRoot%%\System32\shell32.dll ,260" /f Reg.exe add "HKCR\*\shell\Copy Path to Clipboard\command" /ve /t REG_SZ /d "cmd.exe /c echo \"%%1\" > Path.txt & CLIP < Path.txt & del path.txt" /f exit /b :OFF-CopyPath Reg.exe delete "HKCR\*\shell\Copy Path to Clipboard" /f exit /b ::============================================================================================================================================================================== :OEMInfo call :ClearButtons set "Title1= _______________________________________________________________________________________" set "Title2= ^| __ ___ __ __ __ __ _ ___ __ ___ __ __ __ ____ __ __ __ _ ^|" set "Title3= ^| / \ ( _)( \/ ) ( )\ \( )( _) / \ ( ,) ( \/ ) ( ) (_ _)( ) / \ \ \( ) ^|" set "Title4= ^| ( () ) ) _) ) ( )( ) ( ) _)( () ) ) \ ) ( /__\ )( )( ( () ) ) ) ^|" set "Title5= ^| \__/ (___)(_/\/\_) (__)(_)\_)(_) \__/ (_)\_)(_/\/\_)(_)(_) (__) (__) \__/ (_)\_) ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1=MANUFACTURER" set "button3=MODEL" set "button5=LOGO" set "button2=SUPPORT HOURS" set "button4=SUPPORT PHONE" set "button6=SUPPORT URL" set "button12=Go Back" & set Button12Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="7" goto OEMInfo if "%buttonClicked%"=="8" goto OEMInfo if "%buttonClicked%"=="9" goto OEMInfo if "%buttonClicked%"=="10" goto OEMInfo if "%buttonClicked%"=="11" goto OEMInfo if "%buttonClicked%"=="13" goto OEMInfo if "%buttonClicked%"=="14" goto OEMInfo if "%buttonClicked%"=="12" goto UI %BB% /g 0 20 echo. __________________________________________________________________________________________________________________ echo. ^| ^| echo. ^| Input : ^| echo. ^|__________________________________________________________________________________________________________________^| %BB% /c 0x1F /g 10 22 /d " " call :ClearButton 12 %BB% /g 11 22 set /p Input= If "%Input%"=="" Goto OEMInfo If "%Input%"==" " Goto OEMInfo If "%Input%"=="0" Goto OEMInfo %BB% /g 0 25 if "%buttonClicked%"=="1" (reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation" /v Manufacturer /f /t REG_SZ /d "%Input%") if "%buttonClicked%"=="2" (reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation" /v SupportHours /f /t REG_SZ /d "%Input%") if "%buttonClicked%"=="3" (reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation" /v Model /f /t REG_SZ /d "%Input%") if "%buttonClicked%"=="4" (reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation" /v SupportPhone /f /t REG_SZ /d "%Input%") if "%buttonClicked%"=="5" (reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation" /v logo /f /t REG_SZ /d "%Input%") if "%buttonClicked%"=="6" (reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation" /v SupportURL /f /t REG_SZ /d "%Input%") call :msgbox Ok 300 pause >nul goto OEMInfo ::============================================================================================================================================================================== :ColouriseStartmenu call :ClearButtons call :verify-TitleBars 1 >nul 2>&1 call :verify-Colourised 2 Call :GetActiveButton 5 3 Call :GetActiveButton 6 4 set "Title1= _______________________________________________________________________________________" set "Title2= ^| _ _ ___ ___ ___ __ _ _ ____ ___ ___ ___ __ __ ___ ^|" set "Title3= ^| ( )( )/ __)( _)( ,) ( )( \( )(_ _)( _)( ,) ( _) ( ) / _)( _) ^|" set "Title4= ^| )()( \__ \ ) _) ) \ )( ) ( )( ) _) ) \ ) _) /__\ ( (_ ) _) ^|" set "Title5= ^| \__/ (___/(___)(_)\_) (__)(_)\_) (__) (___)(_)\_)(_) (_)(_) \__)(___) ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1=Windows Title bars and borders (%TitleBars%) [FE]" set "button2=Colourise Start Menu & Taskbar : %Colourised% [FE]" set "button5=Set Inactive Title Bar Color [FE]" set "button6=RGB color table" set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="1" ((if /i "%TitleBars%"=="Colourised" (Call :DeColourise-TitleBars )) & (if /i "%TitleBars%"=="DeColourised" (Call :Colourise-TitleBars )) & goto ColouriseStartmenu ) if "%buttonClicked%"=="2" ((if /i "%Colourised%"=="Taskbar" (Call :Colourise-Both )) & (if /i "%Colourised%"=="Both" (Call :Colourise-None )) & (if /i "%Colourised%"=="None" (Call :Colourise-Taskbar )) & goto ColouriseStartmenu ) >nul 2>&1 if "%buttonClicked%"=="%ActiveButton5%" (call :InactiveTitleBars) if "%buttonClicked%"=="%ActiveButton6%" (start http://samples.msdn.microsoft.com/workshop/samples/author/dhtml/colors/ColorTable.htm & GOTO ColouriseStartmenu) if "%buttonClicked%"=="14" goto UI goto ColouriseStartmenu :verify-TitleBars reg query "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\DWM" /v ColorPrevalence | find "0x1" >nul if "%errorlevel%"=="0" ((set "TitleBars=Colourised") & (set Button%~1Color="2F") ) else ((set "TitleBars=DeColourised") & (set Button%~1Color="1F") ) exit /b :Colourise-TitleBars call :validateBuild 10586 + if "%applyTweak%"=="0" exit /b Reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\DWM" /v "ColorPrevalence" /t REG_DWORD /d "1" /f >nul 2>&1 call :RestartExplorer exit /b :DeColourise-TitleBars call :validateBuild 10586 + if "%applyTweak%"=="0" exit /b Reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\DWM" /v "ColorPrevalence" /t REG_DWORD /d "0" /f >nul 2>&1 call :RestartExplorer exit /b :verify-Colourised reg query "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v ColorPrevalence | find "0x0" >nul if "%errorlevel%"=="0" (set "Colourised=None") else (set "Colourised=Taskbar" ) reg query "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v ColorPrevalence | find "0x1" if "%errorlevel%"=="0" (set "Colourised=Both" ) exit /b :Colourise-None Reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "ColorPrevalence" /t REG_DWORD /d "0" /f call :RestartExplorer exit /b :Colourise-Both Reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "ColorPrevalence" /t REG_DWORD /d "1" /f call :RestartExplorer exit /b :Colourise-Taskbar Reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "ColorPrevalence" /t REG_DWORD /d "2" /f call :RestartExplorer exit /b :InactiveTitleBars %BB% /g 0 20 echo. ___________________________________________________________________ echo. ^| ^| echo. ^| Write the RGB hex number here (ex: d3d3d3 for lightgray): ^| echo. ^|___________________________________________________________________^| %BB% /c 0xF1 /g 61 22 /d " " %BB% /g 61 22 set /p COLOR= if "%COLOR%"==" " (exit /b) if "%COLOR%"=="" (exit /b) CD /D "%~dp0" > RegFile.reg Echo Windows Registry Editor Version 5.00 >> RegFile.reg Echo. >> RegFile.reg Echo [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\DWM] >> RegFile.reg Echo "AccentColorInactive"=dword:%COLOR% Start /Wait Regedit.exe /S RegFile.reg Del RegFile.reg call :RestartExplorer call :msgbox Ok exit /b ::============================================================================================================================================================================== :verify-Updates sc query "UpdateDisabler" | find "RUNNING" >nul if "%errorlevel%"=="0" ( (set "Updates=Disabled") & (set Button%~1Color="4F") ) else ( (set "Updates=Enabled") & (set Button%~1Color="2F") ) exit/b :Enable-Updates call :Infomsgbox "Downloading and installing dependencies ... Please Wait" 9F 0 call :Servercheck drive.google.com MainMenu call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiUGRwelRKYnNwZGM" UpdaterDisabler.exe UpdaterDisabler.exe -remove >nul 2>&1 Del /f /q /a UpdaterDisabler.exe >nul 2>&1 call :msgbox ok 300 exit /b :Disable-Updates call :Infomsgbox "Downloading and installing dependencies ... Please Wait" 9F 0 call :Servercheck drive.google.com MainMenu call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiUGRwelRKYnNwZGM" UpdaterDisabler.exe UpdaterDisabler.exe -install >nul 2>&1 Del /f /q /a UpdaterDisabler.exe >nul 2>&1 call :msgbox ok 300 exit /b ::============================================================================================================================================================================== :verify-Firewall Netsh Advfirewall show allprofiles | find "ON" >nul if "%errorlevel%"=="0" ( (set "Firewall=Enabled") & (set Button%~1Color="2F") ) else ( (set "Firewall=Disabled") & (set Button%~1Color="4F") ) exit/b :Enable-Firewall NetSh Advfirewall set allprofiles state on exit /b :Disable-Firewall NetSh Advfirewall set allprofiles state off exit /b ::============================================================================================================================================================================== :verify-Lockscreen cd %windir%/SystemApps IF exist Microsoft.LockApp_cw5n1h2txyewy.backup ( (set "Lockscreen=Disabled") & (set Button%~1Color="4F") ) else ( (set "Lockscreen=Enabled") & (set Button%~1Color="2F") ) CD /d %~dp0 exit/b :Enable-Lockscreen cd %windir%/SystemApps Ren Microsoft.LockApp_cw5n1h2txyewy.backup Microsoft.LockApp_cw5n1h2txyewy CD /d %~dp0 exit /b :Disable-Lockscreen cd %windir%/SystemApps Ren Microsoft.LockApp_cw5n1h2txyewy Microsoft.LockApp_cw5n1h2txyewy.backup CD /d %~dp0 exit /b ::============================================================================================================================================================================== :CleanUpdatefiles cls net stop wuauserv net stop bits RMDIR /S /Q "%Windir%\SoftwareDistribution\Download\" MKDIR "%Windir%\SoftwareDistribution\Download\" Dism.exe /online /Cleanup-Image /StartComponentCleanup net start wuauserv net start bits call :msgbox ok GOTO Performance ::============================================================================================================================================================================== :Restart_time > Restart_Time.vbs ECHO Option Explicit >> Restart_Time.vbs ECHO On Error Resume Next >> Restart_Time.vbs ECHO Dim Wsh, Time1, Time2, Result, PathFile, MsgResult, MsgA, AppName, KeyA, KeyB, TimeDiff >> Restart_Time.vbs ECHO MsgA = "Close all aplications and click OK." >> Restart_Time.vbs ECHO KeyA = "HKEY_CURRENT_USER\Software\RestartTime\" >> Restart_Time.vbs ECHO KeyB = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\RestartTime" >> Restart_Time.vbs ECHO AppName = "Restart Time" >> Restart_Time.vbs ECHO Set Wsh = CreateObject("WScript.Shell") >> Restart_Time.vbs ECHO PathFile = """" ^& WScript.ScriptFullName ^& """" >> Restart_Time.vbs ECHO Result = wsh.RegRead(KeyA ^& "Times") >> Restart_Time.vbs ECHO if Result = "" then >> Restart_Time.vbs ECHO MsgResult = Msgbox (MsgA, vbOKCancel, AppName) >> Restart_Time.vbs ECHO If MsgResult = vbcancel then WScript.Quit >> Restart_Time.vbs ECHO Wsh.RegWrite KeyA ^& "Times", left(Time,8), "REG_SZ" >> Restart_Time.vbs ECHO Wsh.RegWrite KeyB, PathFile, "REG_SZ" >> Restart_Time.vbs ECHO Wsh.Run "cmd /c Shutdown -r -t 00", false, 0 >> Restart_Time.vbs ECHO else >> Restart_Time.vbs ECHO Wsh.RegDelete KeyA ^& "Times" >> Restart_Time.vbs ECHO Wsh.RegDelete KeyA >> Restart_Time.vbs ECHO Wsh.RegDelete KeyB >> Restart_Time.vbs ECHO TimeDiff = DateDiff("s",Result,left(Time,8)) >> Restart_Time.vbs ECHO MsgBox "PC restarted in " ^& TimeDiff ^& " secondes", VbInformation, AppName >> Restart_Time.vbs ECHO end if >> Restart_Time.vbs ECHO wScript.Quit "Restart_Time.vbs" GOTO Performance ::============================================================================================================================================================================= ::============================================================================================================================================================================== :Services ::Files related services sc config BDESVC start= disabled sc config EFS start= disabled sc config CscService start= disabled sc config LanmanServer start= disabled ::Other services sc config dmwappushservice start= disabled sc config diagnosticshub.standardcollector.service start= disabled sc config TrkWks start= disabled sc config CertPropSvc start= disabled sc config DPS start= disabled sc config iphlpsvc start= disabled sc config PcaSvc start= disabled sc config RemoteRegistry start= disabled sc config WinHttpAutoProxySvc start= disabled sc config WPDBusEnum start= disabled sc config AJRouter start= disabled sc config XboxNetApiSvc start= disabled sc config KeyIso start= disabled sc config MSDTC start= disabled sc config PolicyAgent start= disabled sc config WbioSrvc start= disabled exit /b ::============================================================================================================================================================================== :verify-QuickAccess reg query "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v LaunchTo | find "0x2" >nul if "%errorlevel%"=="0" ( (set "QuickAccess=Enabled") & (set Button%~1Color="4F") ) else ( (set "QuickAccess=Disabled") & (set Button%~1Color="2F") ) exit/b :Enable-QuickAccess reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v "LaunchTo" /t REG_DWORD /d 2 >nul call :msgbox ok 300 exit /b :Disable-QuickAccess reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v "LaunchTo" /t REG_DWORD /d 1 >nul call :msgbox ok 300 exit /b ::============================================================================================================================================================================== :verify-BSOD reg query "HKLM\SYSTEM\CurrentControlSet\Control\CrashControl" /v DisplayParameters | find "0x1" >nul if "%errorlevel%"=="0" (set "BSOD=Enabled") else (set "BSOD=Disabled") exit/b :Enable-BSOD Reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\CrashControl" /v "DisplayParameters" /t REG_DWORD /d "1" /f >nul call :msgbox ok 300 exit /b :Disable-BSOD Reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\CrashControl" /v "DisplayParameters" /t REG_DWORD /d "0" /f >nul call :msgbox ok 300 exit /b ::============================================================================================================================================================================== :verify-PSWRDReveal reg query "HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\CredUI" /v DisablePasswordReveal | find "0x1" >nul if "%errorlevel%"=="0" (set "PSWRDReveal=Disabled") else (set "PSWRDReveal=Enabled") exit/b :Enable-PSWRDReveal Reg.exe add "HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\CredUI" /v "DisablePasswordReveal" /t REG_DWORD /d "0" /f >nul call :msgbox ok 300 exit /b :Disable-PSWRDReveal Reg.exe add "HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\CredUI" /v "DisablePasswordReveal" /t REG_DWORD /d "1" /f >nul call :msgbox ok 300 exit /b ::============================================================================================================================================================================== :verify-CMDinWinX reg query "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v DontUsePowerShellOnWinX | find "0x1" >nul if "%errorlevel%"=="0" (set "CMDinWinX=Enabled") else (set "CMDinWinX=Disabled") exit/b :Enable-CMDinWinX Reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "DontUsePowerShellOnWinX" /t REG_DWORD /d "1" /f >nul call :msgbox ok 300 exit /b :Disable-CMDinWinX Reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "DontUsePowerShellOnWinX" /t REG_DWORD /d "0" /f >nul call :msgbox ok 300 exit /b ::============================================================================================================================================================================== :verify-HardwareICon reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\SysTray" /v Services | find "0x1f" >nul if "%errorlevel%"=="0" (set "HardwareICon=Enabled") else (set "HardwareICon=Disabled") exit/b :Enable-HardwareICon reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\SysTray" /v "Services" /t reg_dword /d 31 /f >nul call :msgbox ok 300 exit /b :Disable-HardwareICon reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\SysTray" /v "Services" /t reg_dword /d 29 /f >nul call :msgbox ok 300 exit /b ::============================================================================================================================================================================== :verify-SmartScreen reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" /v EnableSmartScreen | find "0x0" >nul if "%errorlevel%"=="0" ( (set "SmartScreen=Disabled") & (set Button%~1Color="4F") ) else ( (set "SmartScreen=Enabled") & (set Button%~1Color="2F") ) exit/b :Enable-SmartScreen reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableSmartScreen" /t reg_dword /d 1 /f >nul call :msgbox ok 300 exit /b :Disable-SmartScreen reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableSmartScreen" /t reg_dword /d 0 /f >nul call :msgbox ok 300 exit /b ::============================================================================================================================================================================== :Verify-EdgeAds IF EXIST %windir%\SYSTEM32\DRIVERS\ETC\HOSTS.MVP ( (set "EdgeAds=Disabled") & (set Button%~1Color="2F") ) else ( (set "EdgeAds=Enabled") & (set Button%~1Color="4F") ) exit /b :Enable-EdgeAds if exist %WINDIR%\system32\drivers\etc\hosts.MVP ( attrib -r "%WINDIR%\system32\drivers\etc\hosts" del /F /Q "%WINDIR%\system32\drivers\etc\hosts" ren "%WINDIR%\system32\drivers\etc\hosts.MVP" "hosts" attrib +r "%WINDIR%\system32\drivers\etc\hosts" call :msgbox ok 300 ) else ( call :Infomsgbox "There is no Hosts.MVP file" 9F ) exit /b :Disable-EdgeAds call :Infomsgbox "Downloading and installing necessary files..." 9F 1 call :Servercheck drive.google.com Edge call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfib2hTMDhVamF1OWs" HOSTS cls echo. :: ------------EXTRA CODE TO CHANGE DIRECTORY------------- %~d0 cd %~d0%~p0 :: ------------------------------------------------------- IF NOT EXIST HOSTS GOTO noHostsFile IF "%OS%"=="Windows_NT" GOTO HostsFile IF EXIST %winbootdir%\HOSTS*.* ATTRIB +A -H -R -S %winbootdir%\HOSTS*.*>NUL IF EXIST %winbootdir%\HOSTS.MVP DEL %winbootdir%\HOSTS.MVP>NUL IF EXIST %winbootdir%\HOSTS REN %winbootdir%\HOSTS HOSTS.MVP>NUL IF EXIST %winbootdir%\NUL COPY /Y HOSTS %winbootdir%>NUL GOTO noHostsFile :HostsFile IF EXIST %windir%\SYSTEM32\DRIVERS\ETC\HOSTS*.* ATTRIB +A -H -R -S %windir%\SYSTEM32\DRIVERS\ETC\HOSTS*.*>NUL IF EXIST %windir%\SYSTEM32\DRIVERS\ETC\HOSTS.MVP DEL %windir%\SYSTEM32\DRIVERS\ETC\HOSTS.MVP>NUL IF EXIST %windir%\SYSTEM32\DRIVERS\ETC\HOSTS REN %windir%\SYSTEM32\DRIVERS\ETC\HOSTS HOSTS.MVP>NUL IF EXIST %windir%\SYSTEM32\DRIVERS\ETC\NUL COPY /Y HOSTS %windir%\SYSTEM32\DRIVERS\ETC>NUL Reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\DnsCache\Parameters" /v "MaxCacheTtl" /t REG_DWORD /d "1" /f>NUL Reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\DnsCache\Parameters" /v "MaxNegativeCacheTtl" /t REG_DWORD /d "0" /f>NUL del /F /Q HOSTS tasklist /FI "IMAGENAME eq MicrosoftEdge.exe" 2>NUL | find /I /N "MicrosoftEdge.exe">NUL if "%ERRORLEVEL%"=="0" call :Infomsgbox "You need to restart MS Edge so that changes takes effect." 9F if "%ERRORLEVEL%"=="1" call :msgbox ok 300 exit /b :noHostsFile call :Infomsgbox "There is no HOSTS file in the same directory with this script." 9F exit /b ::============================================================================================================================================================================== :verify-EdgeTheme reg query "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v Theme | find "0x0" >nul if "%errorlevel%"=="0" (set "EdgeTheme=Disabled") else (set "EdgeTheme=Enabled") exit/b :Enable-EdgeTheme Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "Theme" /t REG_DWORD /d "1" /f >nul call :msgbox ok 300 exit /b :Disable-EdgeTheme Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "Theme" /t REG_DWORD /d "0" /f >nul call :msgbox ok 300 exit /b ::============================================================================================================================================================================== :verify-closeTabs reg query "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v AskToCloseAllTabs | find "0x0" >nul if "%errorlevel%"=="0" (set "closeTabs=Disabled") else (set "closeTabs=Enabled") exit/b :Enable-closeTabs Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "AskToCloseAllTabs" /t REG_DWORD /d "1" /f >nul call :msgbox ok 300 exit /b :Disable-closeTabs Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "AskToCloseAllTabs" /t REG_DWORD /d "0" /f >nul call :msgbox ok 300 exit /b ::============================================================================================================================================================================== :verify-CoratnainEdge reg query "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\ServiceUI" /v EnableCortana | find "0x0" >nul if "%errorlevel%"=="0" (set "CoratnainEdge=Disabled") else (set "CoratnainEdge=Enabled") exit/b :Enable-CoratnainEdge Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\ServiceUI" /v "EnableCortana" /t REG_DWORD /d "1" /f >nul call :msgbox ok 300 exit /b :Disable-CoratnainEdge Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\ServiceUI" /v "EnableCortana" /t REG_DWORD /d "0" /f >nul call :msgbox ok 300 exit /b ::============================================================================================================================================================================== :verify-EdgeFlashPlayer reg query "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Addons" /v FlashPlayerEnabled | find "0x0" >nul if "%errorlevel%"=="0" (set "EdgeFlashPlayer=Disabled") else (set "EdgeFlashPlayer=Enabled") exit/b :Enable-EdgeFlashPlayer Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Addons" /v "FlashPlayerEnabled" /t REG_DWORD /d "1" /f >nul call :msgbox ok 300 exit /b :Disable-EdgeFlashPlayer Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Addons" /v "FlashPlayerEnabled" /t REG_DWORD /d "0" /f >nul call :msgbox ok 300 exit /b ::============================================================================================================================================================================== :verify-FavoritesBar reg query "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\LinksBar" /v Enabled | find "0x1" >nul if "%errorlevel%"=="0" (set "FavoritesBar=Enabled") else (set "FavoritesBar=Disabled") exit/b :Enable-FavoritesBar Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\LinksBar" /v "Enabled" /t REG_DWORD /d "1" /f >nul call :msgbox ok 300 exit /b :Disable-FavoritesBar Reg.exe add "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\LinksBar" /v "Enabled" /t REG_DWORD /d "0" /f >nul call :msgbox ok 300 exit /b ::============================================================================================================================================================================== :verify-NewTabPage reg query "HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\ServiceUI" /v NewTabPageDisplayOption | find "0x2" >nul if "%errorlevel%"=="0" (set "NewTabPage=Blank") else (set "NewTabPage=Suggested" ) reg query "HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\ServiceUI" /v NewTabPageDisplayOption | find "0x1" if "%errorlevel%"=="0" (set "NewTabPage=Topsites" ) exit /b :NewTabPage-Blank Reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\ServiceUI" /v "NewTabPageDisplayOption" /t REG_DWORD /d "2" /f >nul exit /b :NewTabPage-Topsites Reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\ServiceUI" /v "NewTabPageDisplayOption" /t REG_DWORD /d "1" /f >nul exit /b :NewTabPage-Suggested Reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\ServiceUI" /v "NewTabPageDisplayOption" /t REG_DWORD /d "0" /f >nul exit /b ::============================================================================================================================================================================== :LTSB cls set Button1Color=3F %BB% ^ /c 0x1F /g 16 1 /d "_______________________________________________________________________________________"^ /g 15 2 /d "| ____ ____ __ _ _ _ __ _ _ ____ ____ __ __ ____ ____ ____ |"^ /g 15 3 /d "| ( _ \( _ \ / \ / ) / )( \ / \ ( \/ )( __) (_ _)/ \ ( ) (_ _)/ ___)( _ \ |"^ /g 15 4 /d "| ) __/ ) /( O ) / / ) __ (( O )/ \/ \ ) _) )( ( O ) / (_/\ )( \___ \ ) _ ( |"^ /g 15 5 /d "| (__) (__\_) \__/ (_/ \_)(_/ \__/ \_)(_/(____) (__) \__/ \____/(__) (____/(____/ |"^ /g 15 6 /d "|_______________________________________________________________________________________|"^ /g 15 7 /d " "^ /g 16 8 /d "________________________________________________________________________________________"^ /c 0x%Button1Color% /g 15 9 /d "| |"^ /g 15 10 /d "| 1.Turn Pro/Home version to LTSB (Kind of) |"^ /g 15 11 /d "| This will : Remove Microsoft Edge completely using 'install_wim_tweak' |"^ /g 15 12 /d "| Remove Cortana and SearchUI |"^ /g 15 13 /d "| Remove All modern apps and Windows store |"^ /g 15 14 /d "| Restore Win32 Calculator |"^ /g 15 15 /d "| You should be connected to Internet to download necessary files. |"^ /g 15 16 /d "| Microsoft .NET Framework 3.5 should be installed. |"^ /g 15 17 /d "| After removing these apps you won't be able to restore them (No backup Files) |"^ /g 15 18 /d "|________________________________________________________________________________________|"^ /c 0x1F /g 16 24 /d "________________________________________________________________________________________"^ /c 0x9F /g 15 25 /d "| |"^ /c 0x9F /g 15 26 /d "| 0. Go Back |"^ /c 0x9F /g 15 27 /d "|________________________________________________________________________________________|"^ /c 0x1F If /i "%SelectMode%"=="Mouse" ( for /f "tokens=1,2,3 delims=:" %%a in ('%BB% /m') do ( %BB% /g 0 0 set "buttonClicked"="" %BB% /d "mouse: %%b %%a %%c " >nul 2>&1 if %%c EQU 1 if %%b GEQ 9 if %%b LEQ 18 if %%a GEQ 15 if %%a LEQ 104 set "buttonClicked=1" if %%c EQU 1 if %%b GEQ 26 if %%b LEQ 28 if %%a GEQ 15 if %%a LEQ 104 set "buttonClicked=0" ) ) else ( %BB% /g 16 29 Set /p buttonClicked=Use Your Keyboard Numbers to select options : ) If %buttonClicked%==0 goto MainMenu If %buttonClicked%==1 call :LTSB_Confirm goto LTSB :LTSB_Confirm call :msgbox Confirm if /i "!buttonClicked!"=="No" ( goto LTSB ) else ( cls call :Servercheck drive.google.com LTSB call :Infomsgbox "Uninstalling All modern apps" 9F 1 for %%a in (%AppStrings%) do ( rem === get App Name without underscore set "AppName=%%a" set "AppName=!AppName:~0,-14!" rem === Remove apps echo Removing "!AppName!" from user... powershell.exe -command "Get-AppxPackage Microsoft.!AppName! | Remove-AppxPackage" ) call :Infomsgbox "Restoring Win32 Calculator" 9F 1 call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiaGNnbm94aDhQbjg" Old-Calculator-for-Windows10.exe "Old-Calculator-for-Windows10.exe" /S del "Old-Calculator-for-Windows10.exe" call :Download "https://drive.google.com/uc?export=download&id=0B_Y-lCJYwHfiWTNGYXdiRU9SNVU" install_wim_tweak.exe call :Infomsgbox "Uninstalling Microsoft Edge" 9F 1 install_wim_tweak.exe /o /l install_wim_tweak.exe /o /c Microsoft-Windows-Internet-Browser-Package /r install_wim_tweak.exe /h /o /l call :Infomsgbox "Uninstalling Microsoft Cortana" 9F 1 install_wim_tweak.exe /o /l install_wim_tweak.exe /o /c Microsoft-Windows-Cortana /r install_wim_tweak.exe /h /o /l del Packages.txt del install_wim_tweak.exe call :msgbox Ok 400 goto LTSB ) ::============================================================================================================================================================================== :This-PC call :ClearButtons call :verify-F "{088e3905-0323-4b02-9826-5d99428e115f}" "1" >nul 2>&1 call :verify-F "{24ad3ad4-a569-4530-98e1-ab02f9417aa8}" "2" >nul 2>&1 call :verify-F "{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}" "3" >nul 2>&1 call :verify-F "{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}" "4" >nul 2>&1 call :verify-F "{d3162b92-9365-467a-956b-92703aca08af}" "5" >nul 2>&1 call :verify-F "{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}" "6" >nul 2>&1 set "Title1= _______________________________________________________________________________________" set "Title2= ^| ____ _ _ __ ____ ____ ___ ____ __ __ ____ ____ ____ ____ ^|" set "Title3= ^| (_ _)/ )( \( )/ ___) ___ ( _ \ / __) ( __)/ \ ( ) ( \( __)( _ \/ ___) ^|" set "Title4= ^| )( ) __ ( )( \___ \ (___) ) __/( (__ ) _)( O )/ (_/\ ) D ( ) _) ) /\___ \ ^|" set "Title5= ^| (__) \_)(_/(__)(____/ (__) \___) (__) \__/ \____/(____/(____)(__\_)(____/ ^|" set "Title6= ^|_______________________________________________________________________________________^|" set "button1= Downloads (%F1% )" set "button3= Music (%F3% )" set "button5= Documents (%F5% )" set "button9= Remove All Folders From This PC" set "button2= Pictures (%F2% )" set "button4= Desktop (%F4% )" set "button6= Videos (%F6% )" set "button10= Add All Folders to This PC" set "button14=Go Back" & set Button14Color=%BackButtonColor% call :drawMenu call :readInput if "%buttonClicked%"=="1" ( (if /i "%F1%"==" ON" (Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}" /f)) & (if /i "%F1%"=="OFF" (Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}" /f)) & goto This-PC ) >nul 2>&1 if "%buttonClicked%"=="2" ( (if /i "%F2%"==" ON" (Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}" /f)) & (if /i "%F2%"=="OFF" (Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}" /f)) & goto This-PC ) >nul 2>&1 if "%buttonClicked%"=="3" ( (if /i "%F3%"==" ON" (Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}" /f)) & (if /i "%F3%"=="OFF" (Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}" /f)) & goto This-PC ) >nul 2>&1 if "%buttonClicked%"=="4" ( (if /i "%F4%"==" ON" (Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}" /f)) & (if /i "%F4%"=="OFF" (Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}" /f)) & goto This-PC ) >nul 2>&1 if "%buttonClicked%"=="5" ( (if /i "%F5%"==" ON" (Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}" /f)) & (if /i "%F5%"=="OFF" (Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}" /f)) & goto This-PC ) >nul 2>&1 if "%buttonClicked%"=="6" ( (if /i "%F6%"==" ON" (Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}" /f)) & (if /i "%F6%"=="OFF" (Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}" /f)) & goto This-PC ) >nul 2>&1 if "%buttonClicked%"=="9" ( Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}" /f & Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}" /f & Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}" /f & Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}" /f & Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}" /f & Reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}" /f & goto This-PC ) >nul 2>&1 if "%buttonClicked%"=="10" ( Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}" /f & Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}" /f & Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}" /f & Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}" /f & Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}" /f & Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}" /f & goto This-PC ) >nul 2>&1 if "%buttonClicked%"=="14" goto Enable/Disable goto This-PC :verify-F reg query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\%~1" /s >nul if "%errorlevel%"=="0" (set "F%~2= ON") else (set "F%~2=OFF") exit/b ::============================================================================================================================================================================== :verify-GameMode reg query "HKEY_CURRENT_USER\SOFTWARE\Microsoft\GameBar" /v AllowAutoGameMode | find "0x1" >nul if "%errorlevel%"=="0" ( (set "GameMode=Enabled") & (set Button%~1Color="5F") ) else ( (set "GameMode=Disabled") & (set Button%~1Color="4F") ) exit/b :Enable-GameMode reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\GameBar" /v "AllowAutoGameMode" /t reg_dword /d 1 /f >nul call :msgbox ok 300 exit /b :Disable-GameMode reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\GameBar" /v "AllowAutoGameMode" /t reg_dword /d 0 /f >nul call :msgbox ok 300 exit /b ::============================================================================================================================================================================== ::============================================================================================================================================================================== ::============================================================================================================================================================================== ::============================================================================================================================================================================== :tweakA :: Works only on 10240 call :validateBuild 10240 if "%applyTweak%"=="0" exit /b ::replace next line with tweak code echo applying tweak 1... call :msgBox ok goto MainMenu :tweakB :: Works on 10586 and older builds call :validateBuild 10586 - if "%applyTweak%"=="0" exit /b ::replace next line with tweak code echo applying tweak 2... call :msgBox ok exit /b :tweakC :: Works on 10240 and newer builds call :validateBuild 10240 + if "%applyTweak%"=="0" exit /b ::replace next line with tweak code echo applying tweak 3... call :msgBox ok exit /b ::============================================================================================================================================================================== ::============================================================================================================================================================================== ::============================================================================================================================================================================== ::============================================================================================================================================================================== ::============================================================================================================================================================================== ::============================================================================================================================================================================== ::::::::::::::::::: :: Settings Menu :: ::::::::::::::::::: :settingsMenu call :ClearButtons call :verify-SkipIntro 7 call :Verify-RestartExplorer 8 call :Verify-skipBuildWarning 6 set "Title1= ________________________________________________________________________________________" set "Title2= ^| ___ ___ ____ ____ __ _ _ __ ___ ^|" set "Title3= ^| / __) ( _) (_ _) (_ _) ( ) ( \( ) / _) / __) ^|" set "Title4= ^| \__ \ ) _) )( )( )( ) ( ( ()) \__ ) ^|" set "Title5= ^| (___/ (___) (__) (__) (__) (_)\_) \__/ (___) ^|" set "Title6= ^|________________________________________________________________________________________^|" set "Title7= ^|Created by 'Yasser Da Silva' ^& Designed by 'johnye_pt'" set "button1=Create a Restore point" set "button3=Send Feedback (Reply to MDL thread)" set "button5=Change select Mode {'U'} Current: %SelectMode%" set "button7=Skip Inro animation? Current: %SkipIntro%" set "button9=What'NEW in this version (Change Log)" set "button2=Backup the Registry" set "button4=Send Feedback via eMail" set "button6=Skip warning on new Windows builds? Current: %skipBuildWarning%" set "button8=Auto restart Explorer.exe in [FE] options? Current: %RestartExplorer%" set "button14=RETURN TO MAIN MENU" & set Button14Color=%BackButtonColor% if /i "%SelectMode%"=="Mouse" ( set Button5Color=3F ) else ( set Button5Color=6F ) call :drawMenu %BB% ^ /c 0x1F /g 0 28 /d "Instructions :"^ /g 0 29 /d " [O] :The option requires an internet connection "^ /g 0 30 /d " [FE] :The option requires File Explorer to be restarted "^ /g 0 31 /d "[B:XX]:The option Runs on the 'X' Build mentiond and higher"^ /g 59 9 call :readInput if "%buttonClicked%"=="1" cls & Wmic.exe /Namespace:\\root\default Path SystemRestore Call CreateRestorePoint "%DATE%", 100, 7 & pause if "%buttonClicked%"=="2" call :backupregistry if "%buttonClicked%"=="3" Start www.goo.gl/BNjTJG if "%buttonClicked%"=="4" (start mailto:[email protected]?subject=Win%%2010%%20Toggle%%20Tweaker & GOTO settingsMenu) if "%buttonClicked%"=="5" (if /i "%SelectMode%"=="Mouse" ( set "SelectMode=KBD" ) else ( set "SelectMode=Mouse" ) & Goto settingsMenu ) if "%buttonClicked%"=="6" (if /i "%skipBuildWarning%"=="YES" (Reg.exe add "HKLM\SOFTWARE\ToggleTweaker" /v "skipBuildWarning" /t REG_SZ /d "NO" /f ) else (Reg.exe add "HKLM\SOFTWARE\ToggleTweaker" /v "skipBuildWarning" /t REG_SZ /d "YES" /f ) & Goto settingsMenu ) if "%buttonClicked%"=="7" (if /i "%SkipIntro%"=="YES" (Reg.exe add "HKLM\SOFTWARE\ToggleTweaker" /v "SkipIntro" /t REG_SZ /d "NO" /f ) else ( Reg.exe add "HKLM\SOFTWARE\ToggleTweaker" /v "SkipIntro" /t REG_SZ /d "YES" /f ) & Goto settingsMenu ) if "%buttonClicked%"=="8" (if /i "%RestartExplorer%"=="YES" (Reg.exe add "HKLM\SOFTWARE\ToggleTweaker" /v "RestartExplorer" /t REG_SZ /d "NO" /f ) else ( Reg.exe add "HKLM\SOFTWARE\ToggleTweaker" /v "RestartExplorer" /t REG_SZ /d "YES" /f & call :RestartExplorer ) & Goto settingsMenu ) if "%buttonClicked%"=="9" call :WhatsNEW if "%buttonClicked%"=="14" goto :MainMenu goto :settingsMenu :::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: function to create batbox.exe :: ::::::::::::::::::::::::::::::::::: :batbox echo Creating batbox.exe... if exist "%temp%\batbox.exe" exit /b for %%b in ( 4D5343460000000073030000000000002C000000000000000301010001000000 00000000470000000100010000060000000000000000FE4259B5200062617462 6F782E657865003FD9412724030006434BB5545F485361143F5737F0CF726B3A 102ABB528B1EC24813421026D3529AB59C184460D7ED6EF7CE79EFB8F74A562F 0B1D543EF5143DC60483C27AF0C14248B18710A4979ECA40426A0329A1B21ECA AF73EE9D4E21B287FAB6DF77CFF99DF37DDFEF3B3B779D1752C001800D5CC018 808F1C1C3ED879A41015FB9F56C064E942ED141758A8ED96649D4F6A6A4C1306 F8B0A028AAC1F789BC36A8F0B2C2B79E0DF1036A44ACDB557670638F601B4080 E3A0C3FBFDDC06B7044EAE9CE34EA2283041C3B505A48E9E450079B99B69C05B FC4B1457BC75DD6666DECD8F981BE02EF71797FDC7A32E9A100C7C1EB1E505D9 2CDD5BC7252AC57F1E92ABCA0771EB21D968029C98E76125D25F9967D1ED838C 8372D6F24E093AD9175832FFADCAD43C7F8C459F9442D39D1E8C3947C6913F15 7BB79A7BCD18CBA6D10BB24687B9E33226E4E6904E5DE37A9DE90A3C9C7926F1 98F48C73E401F2CC731FBD66BAB2335D6E8689B0336A13E6798C76B601772CB6 F7E2565EEAD64C1589A931C93092B34B2ECE4E1C6BB466EBE82C1DDD4E8A3ED3 5ED25137B163B861AE9ED8B7D452F182D42F945F4D111213920E14F28B908D57 B3C61233710903560539A9DA3CD0E257901F6EA600D664019744879B295EE44C 3F43EF9BFD303A3FD172A61FE13CDABC17FD9BEBB39F5CD7DFD3BDEEF155565D 6E63B4D8CC0E9EEF910E15745C5D47755EAB32AB245726A20A890C55275B4616 952417A44035BA71FC8498670A970F3F77CCCD7E2862E3F524D44EBFBB6D741F 3D46F7A4DF3847E885988B835574AF0EDE4893F9056F1874970F26101F111711 B6DD3EA8411C472C20A611FD31211C8D0CA89737DAEC4665A1E532F8CA8DA13F ED2E7013682FBA7FDFA29DA11E7F57775D6B2000A7DBBACEB4051AEA4D077EE0 02076E54833881E846488864FEB09DE2D8AAA2113222ED82124988E48744C3AF 2ABA9A103BF17F6A3BD32D0E192D86A1C97D8386B82DE21FD474550BAABA6CC8 AA42ABBA4421920F7628C941A385F213A298DCB6AE55D69309E18A79D40C6A9A 47BC422C2356106B799D7F8AE16D345931A264F5C644232C9916990382AC085A 4C475F1C920D93EFEF932C4B3734434D00FC02 ) Do >>t.dat (Echo.For b=1 To len^("%%b"^) Step 2 ECHO WScript.StdOut.Write Chr^(Clng^("&H"^&Mid^("%%b",b,2^)^)^) : Next) Cscript /b /e:vbs t.dat>batbox.ex_ Del /f /q /a t.dat >nul 2>&1 Expand -r batbox.ex_ >nul 2>&1 Del /f /q /a batbox.ex_ >nul 2>&1 move /y batbox.exe "%temp%" >nul 2>&1 exit /b :verify-SkipIntro reg query "%Main_Script_Reg_key%" /v SkipIntro | find "YES" >nul if "%errorlevel%"=="0" ( (set "SkipIntro=YES" ) & (set Button%~1Color="4F") ) else ( (set "SkipIntro=NO") & (set Button%~1Color="2F") ) exit /b :backupregistry cls setlocal set "path=%~dp0Registry Backup %date:~0,2%-%date:~3,2%-%date:~6,4%_%time:~0,2%-%time:~3,2%" mkdir "%Path%" >nul 2>&1 echo ^>^> Export : This operation could take up to 1Gb of space and some time echo ^>^> Export : Saving Files to "%PATH%" echo ^>^> Export : Please Wait .. for %%k in (CR CU LM U CC) do call :ExpReg %%k echo. pause exit /b :ExpReg %windir%\System32\reg.exe export HK%1 "%PATH%\HK%1.reg" >nul 2>&1 if "%errorlevel%"=="1" ( echo ^>^> Export : --HK%1-- Failed. ) else ( echo ^>^> Export : --HK%1-- Succeed. ) exit /b endlocal :Verify-skipBuildWarning reg query "%Main_Script_Reg_key%" /v skipBuildWarning | find "YES" >nul if "%errorlevel%"=="0" ( (set "skipBuildWarning=YES" ) & (set Button%~1Color="4F") ) else ( (set "skipBuildWarning=NO") & (set Button%~1Color="2F") ) exit /b ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: function to autorestart explorer according to settings :: :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :RestartExplorer call :Verify-RestartExplorer If /i "%RestartExplorer%"=="Yes" (taskkill /IM explorer.exe /F & explorer.exe) exit /b :Verify-RestartExplorer reg query "%Main_Script_Reg_key%" /v RestartExplorer | find "YES" >nul if "%errorlevel%"=="0" ( (set "RestartExplorer=YES" ) & (set Button%~1Color="2F") ) else ( (set "RestartExplorer=NO") & (set Button%~1Color="4F") ) exit /b ::::::::::::::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: function to Clear previous buttons entries :: :::::::::::::::::::::::::::::::::::::::::::::::: :ClearButtons for /l %%a in (1,1,14) do ( if %%a LEQ 7 set "Title%%a= " set "button%%a= " set "Button%%aColor=1F" ) set "buttonClicked=" set "NextMenu=0" %BB% /c 0x1F exit /b ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: function to align text in a variable by adding spaces :: :: parameters: textString destinationSize returnString :: ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :alignText setlocal set "text=%~1" rem get string length :lenLoop if not "!text:~%len%!"=="" set /a len+=1 & goto :lenLoop rem add spaces to both sides, starting from string length + 2 set /a len+=2 & for /l %%a in (!len!,2,%~2) do set "text= !text! " rem add an extra space at the end when spaces and length are uneven set /a len = %~2 - %len% & set /a len = !len! %% 2 if "%len%"=="1" set "text=%text% " endlocal & set "%~3=%text%" exit /b ::::::::::::::::::::::::::::::============================================================================================================================================================================== :: function to draw menus :: :::::::::::::::::::::::::::: :drawMenu cls echo. echo.%title1% echo.%title2% echo.%title3% echo.%title4% echo.%title5% echo.%title6% echo.%title7% %BB% /c 0xF1 If /i "%SelectMode%"=="Mouse" ( %BB% /g 4 8 & %BB% /d "|Use Your Mouse to select options :" ) else ( %BB% /g 4 8 & %BB% /d "|Use Your Keyboard Numbers to select options :" ) set Line="" for /l %%n in (1,1,14) do ( if not "!button%%n!"==" " ( call :CalculateTextPos %%n set T=!TextPos! :: Calculate Button X position set Number=%%n SET /a NUMmod2=!Number! %% 2 if !NUMmod2!==0 (set b=59 ) else ( Set b=1 ) :: Calculate Button Y position set /a C=Number/2 set /a C=Number-C set /a c=c*3+6 Set "L= " If !Number! GEQ 3 set L="|" :: Add spaces to button Key call :strlen STRLength Buttonkey%%n If !STRLength! EQU 1 ( set Buttonkey%%n= !Buttonkey%%n! ) else ( If not !STRLength! EQU 2 ( set Buttonkey%%n=%%n call :strlen STRLength Buttonkey%%n If !STRLength! EQU 1 set Buttonkey%%n= %%n ) ) If %%n EQU 1 set PreviousColor=1F If %%n EQU 2 set PreviousColor=1F If %%n EQU 3 set PreviousColor=!Button1Color! If %%n EQU 4 set PreviousColor=!Button2Color! If %%n EQU 5 set PreviousColor=!Button3Color! If %%n EQU 6 set PreviousColor=!Button4Color! If %%n EQU 7 set PreviousColor=!Button5Color! If %%n EQU 8 set PreviousColor=!Button6Color! If %%n EQU 9 set PreviousColor=!Button7Color! If %%n EQU 10 set PreviousColor=!Button8Color! If %%n EQU 11 set PreviousColor=!Button9Color! If %%n EQU 12 set PreviousColor=!Button10Color! If %%n EQU 13 set PreviousColor=!Button11Color! If %%n EQU 14 set PreviousColor=!Button12Color! set /a b+=1 set Line=!Line! /c 0x!PreviousColor! /g !b! !c! /d "_________________________________________________________" & set /a c+=1 & set /a b-=1 set Line=!Line! /c 0x!Button%%nColor! /g !b! !c! /d "| !Buttonkey%%n!. |" & set /a c+=1 set Line=!Line! /g !b! !c! /d "| |" set Line=!Line! /g !T! !c! /d "!button%%n!" & set /a c+=1 set Line=!Line! /g !b! !c! /d "|_________________________________________________________|" & set /a c+=1 ) ) %BB% !Line! %BB% ^ /c 0x1F /g 106 6 /d " __________"^ /c 0x2F /g 106 7 /d "| |"^ /g 106 8 /d "| SEARCH |"^ /g 106 9 /d "|__________|" If /i "%SelectMode%"=="Mouse" ( %BB% ^ /c 0x1F /g 111 1 /d " _______"^ /c 0x3F /g 111 2 /d "| "^ /g 111 3 /d "| USE "^ /g 111 4 /d "| KBD "^ /g 111 5 /d "|_______" ) else (%BB% ^ /c 0x1F /g 111 1 /d " _______"^ /c 0x3F /g 111 2 /d "| "^ /g 111 3 /d "|Press U"^ /g 111 4 /d "|'Mouse'"^ /g 111 5 /d "|_______" ) If not %NextMenu%==0 ( %BB% ^ /c 0x1F /g 108 2 /d " ___ __ "^ /g 108 3 /d "(___)\ \ "^ /g 108 4 /d " ___ ) )"^ /g 108 5 /d "(___)/_/ " ) %BB% /g 59 9 %BB% /c 0x1F exit /b ::::::::::::::::======================================================================================================================================================================== ::ClearButton :: :::::::::::::::: :ClearButton set Number=%~1 set Line="" :: Calculate Button X position SET /a NUMmod2=!Number! %% 2 if !NUMmod2!==0 (set b=59 ) else ( Set b=1 ) :: Calculate Button Y position set /a C=Number/2 set /a C=Number-C set /a c=c*3+6 set /a b+=1 set Line=!Line! /c 0x1F /g !b! !c! /d " " & set /a c+=1 & set /a b-=1 set Line=!Line! /g !b! !c! /d " " & set /a c+=1 set Line=!Line! /g !b! !c! /d " " & set /a c+=1 set Line=!Line! /g !b! !c! /d " " set Line=!Line! /g 59 9 %BB% !Line! exit /b ::::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: Calculate text position for buttons :: ::::::::::::::::::::::::::::::::::::::::: :CalculateTextPos call :strlen STRLength Button%~1 Set /a TextPos=56-STRLength Set /a TextPos=TextPos/2 SET /a NUMmod2=%~1 %% 2 if %NUMmod2%==0 (Set /a TextPos=TextPos+61 ) else ( Set /a TextPos=TextPos+3 ) exit /b ::::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: Function to select Input methode :: :::::::::::::::::::::::::::::::::::::: :readInput If /i "%SelectMode%"=="Mouse" ( goto readMouse ) else ( goto readKeyboard ) :::::::::::::::::::::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: function to read mouse on menus and Yes/No dialogs :: :::::::::::::::::::::::::::::::::::::::::::::::::::::::: :readMouse for /f "tokens=1,2,3 delims=:" %%a in ('%BB% /m') do ( %BB% /g 0 0 set "buttonClicked"="" %BB% /d "mouse: %%b %%a %%c " >nul 2>&1 if /i "%~1"=="YesNo" ( set "buttonClicked=NO" if %%c EQU 1 if %%b GEQ 29 if %%b LEQ 31 if %%a GEQ 76 if %%a LEQ 84 set "buttonClicked=YES" ) else ( if %%c EQU 1 if %%b GEQ 10 if %%b LEQ 12 if %%a GEQ 2 if %%a LEQ 59 set "buttonClicked=1" if %%c EQU 1 if %%b GEQ 13 if %%b LEQ 15 if %%a GEQ 2 if %%a LEQ 59 set "buttonClicked=3" if %%c EQU 1 if %%b GEQ 16 if %%b LEQ 18 if %%a GEQ 2 if %%a LEQ 59 set "buttonClicked=5" if %%c EQU 1 if %%b GEQ 19 if %%b LEQ 21 if %%a GEQ 2 if %%a LEQ 59 set "buttonClicked=7" if %%c EQU 1 if %%b GEQ 22 if %%b LEQ 24 if %%a GEQ 2 if %%a LEQ 59 set "buttonClicked=9" if %%c EQU 1 if %%b GEQ 25 if %%b LEQ 27 if %%a GEQ 2 if %%a LEQ 59 set "buttonClicked=11" if %%c EQU 1 if %%b GEQ 28 if %%b LEQ 30 if %%a GEQ 2 if %%a LEQ 59 set "buttonClicked=13" if %%c EQU 1 if %%b GEQ 10 if %%b LEQ 12 if %%a GEQ 60 if %%a LEQ 117 set "buttonClicked=2" if %%c EQU 1 if %%b GEQ 13 if %%b LEQ 15 if %%a GEQ 60 if %%a LEQ 117 set "buttonClicked=4" if %%c EQU 1 if %%b GEQ 16 if %%b LEQ 18 if %%a GEQ 60 if %%a LEQ 117 set "buttonClicked=6" if %%c EQU 1 if %%b GEQ 19 if %%b LEQ 21 if %%a GEQ 60 if %%a LEQ 117 set "buttonClicked=8" if %%c EQU 1 if %%b GEQ 22 if %%b LEQ 24 if %%a GEQ 60 if %%a LEQ 117 set "buttonClicked=10" if %%c EQU 1 if %%b GEQ 25 if %%b LEQ 27 if %%a GEQ 60 if %%a LEQ 117 set "buttonClicked=12" if %%c EQU 1 if %%b GEQ 28 if %%b LEQ 30 if %%a GEQ 60 if %%a LEQ 117 set "buttonClicked=14" if %%c EQU 1 if %%b GEQ 7 if %%b LEQ 9 if %%a GEQ 106 if %%a LEQ 117 call :searchTweaks if %%c EQU 1 if %%b GEQ 1 if %%b LEQ 5 if %%a GEQ 111 if %%a LEQ 119 ( If /i "%SelectMode%"=="Mouse" (set "SelectMode=KBD" ) else ( set "SelectMode=Mouse" ) ) ) if /i "%~1"=="text" ( if %%c EQU 1 if %%b GEQ 11 if %%b LEQ 15 if %%a GEQ 10 if %%a LEQ 18 set "buttonClicked=1" if %%c EQU 1 if %%b GEQ 11 if %%b LEQ 15 if %%a GEQ 20 if %%a LEQ 28 set "buttonClicked=2" if %%c EQU 1 if %%b GEQ 11 if %%b LEQ 15 if %%a GEQ 30 if %%a LEQ 38 set "buttonClicked=3" if %%c EQU 1 if %%b GEQ 11 if %%b LEQ 15 if %%a GEQ 40 if %%a LEQ 48 set "buttonClicked=4" if %%c EQU 1 if %%b GEQ 11 if %%b LEQ 15 if %%a GEQ 50 if %%a LEQ 58 set "buttonClicked=5" if %%c EQU 1 if %%b GEQ 11 if %%b LEQ 15 if %%a GEQ 60 if %%a LEQ 68 set "buttonClicked=6" if %%c EQU 1 if %%b GEQ 11 if %%b LEQ 15 if %%a GEQ 70 if %%a LEQ 78 set "buttonClicked=7" if %%c EQU 1 if %%b GEQ 11 if %%b LEQ 15 if %%a GEQ 80 if %%a LEQ 88 set "buttonClicked=8" if %%c EQU 1 if %%b GEQ 11 if %%b LEQ 15 if %%a GEQ 90 if %%a LEQ 98 set "buttonClicked=9" if %%c EQU 1 if %%b GEQ 11 if %%b LEQ 15 if %%a GEQ 100 if %%a LEQ 108 set "buttonClicked=0" if %%c EQU 1 if %%b GEQ 16 if %%b LEQ 20 if %%a GEQ 10 if %%a LEQ 18 set "buttonClicked=Q" if %%c EQU 1 if %%b GEQ 16 if %%b LEQ 20 if %%a GEQ 20 if %%a LEQ 28 set "buttonClicked=W" if %%c EQU 1 if %%b GEQ 16 if %%b LEQ 20 if %%a GEQ 30 if %%a LEQ 38 set "buttonClicked=E" if %%c EQU 1 if %%b GEQ 16 if %%b LEQ 20 if %%a GEQ 40 if %%a LEQ 48 set "buttonClicked=R" if %%c EQU 1 if %%b GEQ 16 if %%b LEQ 20 if %%a GEQ 50 if %%a LEQ 58 set "buttonClicked=T" if %%c EQU 1 if %%b GEQ 16 if %%b LEQ 20 if %%a GEQ 60 if %%a LEQ 68 set "buttonClicked=Y" if %%c EQU 1 if %%b GEQ 16 if %%b LEQ 20 if %%a GEQ 70 if %%a LEQ 78 set "buttonClicked=U" if %%c EQU 1 if %%b GEQ 16 if %%b LEQ 20 if %%a GEQ 80 if %%a LEQ 88 set "buttonClicked=I" if %%c EQU 1 if %%b GEQ 16 if %%b LEQ 20 if %%a GEQ 90 if %%a LEQ 98 set "buttonClicked=O" if %%c EQU 1 if %%b GEQ 16 if %%b LEQ 20 if %%a GEQ 100 if %%a LEQ 108 set "buttonClicked=P" if %%c EQU 1 if %%b GEQ 21 if %%b LEQ 25 if %%a GEQ 10 if %%a LEQ 18 set "buttonClicked=A" if %%c EQU 1 if %%b GEQ 21 if %%b LEQ 25 if %%a GEQ 20 if %%a LEQ 28 set "buttonClicked=S" if %%c EQU 1 if %%b GEQ 21 if %%b LEQ 25 if %%a GEQ 30 if %%a LEQ 38 set "buttonClicked=D" if %%c EQU 1 if %%b GEQ 21 if %%b LEQ 25 if %%a GEQ 40 if %%a LEQ 48 set "buttonClicked=F" if %%c EQU 1 if %%b GEQ 21 if %%b LEQ 25 if %%a GEQ 50 if %%a LEQ 58 set "buttonClicked=G" if %%c EQU 1 if %%b GEQ 21 if %%b LEQ 25 if %%a GEQ 60 if %%a LEQ 68 set "buttonClicked=H" if %%c EQU 1 if %%b GEQ 21 if %%b LEQ 25 if %%a GEQ 70 if %%a LEQ 78 set "buttonClicked=J" if %%c EQU 1 if %%b GEQ 21 if %%b LEQ 25 if %%a GEQ 80 if %%a LEQ 88 set "buttonClicked=K" if %%c EQU 1 if %%b GEQ 21 if %%b LEQ 25 if %%a GEQ 90 if %%a LEQ 98 set "buttonClicked=L" if %%c EQU 1 if %%b GEQ 21 if %%b LEQ 25 if %%a GEQ 100 if %%a LEQ 108 set "buttonClicked=END" if %%c EQU 1 if %%b GEQ 26 if %%b LEQ 30 if %%a GEQ 10 if %%a LEQ 18 set "buttonClicked=Z" if %%c EQU 1 if %%b GEQ 26 if %%b LEQ 30 if %%a GEQ 20 if %%a LEQ 28 set "buttonClicked=X" if %%c EQU 1 if %%b GEQ 26 if %%b LEQ 30 if %%a GEQ 30 if %%a LEQ 38 set "buttonClicked=C" if %%c EQU 1 if %%b GEQ 26 if %%b LEQ 30 if %%a GEQ 40 if %%a LEQ 48 set "buttonClicked=V" if %%c EQU 1 if %%b GEQ 26 if %%b LEQ 30 if %%a GEQ 50 if %%a LEQ 58 set "buttonClicked=B" if %%c EQU 1 if %%b GEQ 26 if %%b LEQ 30 if %%a GEQ 60 if %%a LEQ 68 set "buttonClicked=N" if %%c EQU 1 if %%b GEQ 26 if %%b LEQ 30 if %%a GEQ 70 if %%a LEQ 78 set "buttonClicked=M" if %%c EQU 1 if %%b GEQ 26 if %%b LEQ 30 if %%a GEQ 80 if %%a LEQ 98 set "buttonClicked=BACKSPACE" if %%c EQU 1 if %%b GEQ 26 if %%b LEQ 30 if %%a GEQ 100 if %%a LEQ 108 set "buttonClicked=Space" if %%c EQU 1 if %%b GEQ 1 if %%b LEQ 5 if %%a GEQ 111 if %%a LEQ 119 ( If /i "%SelectMode%"=="Mouse" (set "SelectMode=KBD" & %BB% /c 0x1F & goto searchTweaks ) else ( set "SelectMode=Mouse" & %BB% /c 0x1F & goto searchTweaks ) ) ) if %%c EQU 1 if %%b GEQ 3 if %%b LEQ 5 if %%a GEQ 108 if %%a LEQ 116 (Set NextMenu=0 & goto %NextMenu%) ) exit /b ::::::::::::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: Function to read keyboard input on menus :: :::::::::::::::::::::::::::::::::::::::::::::: :readkeyboard %BB% /c 0x1F %BB% /g 51 8 & %BB% /d " " & %BB% /g 51 8 set /p key= set "buttonClicked"="" if /i "%~1"=="YesNo" ( set "buttonClicked=NO" if %key% EQU 1 set "buttonClicked=YES" ) else ( if %key% EQU 1 set "buttonClicked=1" if %key% EQU 2 set "buttonClicked=2" if %key% EQU 3 set "buttonClicked=3" if %key% EQU 4 set "buttonClicked=4" if %key% EQU 5 set "buttonClicked=5" if %key% EQU 6 set "buttonClicked=6" if %key% EQU 7 set "buttonClicked=7" if %key% EQU 8 set "buttonClicked=8" if %key% EQU 9 set "buttonClicked=9" if %key% EQU 10 set "buttonClicked=10" if %key% EQU 11 set "buttonClicked=11" if %key% EQU 12 set "buttonClicked=12" if %key% EQU 13 set "buttonClicked=13" if %key% EQU 14 set "buttonClicked=14" if %key% EQU 0 set "buttonClicked=14" if /i %key% EQU S call :searchTweaks if /i %key% EQU U ( If /i "%SelectMode%"=="Mouse" (set "SelectMode=KBD" ) else ( set "SelectMode=Mouse" ) ) if /i %key% EQU Search call :searchTweaks if /i %key% EQU N (Set NextMenu=0 & goto %NextMenu%) if /i %key% EQU Next (Set NextMenu=0 & goto %NextMenu%) ) ) exit /b :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: function to check if current build applies to tweak :: ::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :validateBuild set "buildExists=0" set "applyTweak=0" for %%x in (%knownBuilds%) do if "%%x" EQU "%windowsBuild%" set "buildExists=1" If "%~2"=="+" ( if "%windowsBuild%" GEQ "%~1" (set "applyTweak=1" & exit /b ) ) If "%~2"=="-" ( if "%windowsBuild%" LEQ "%~1" (set "applyTweak=1" & exit /b ) ) if "!buildExists!"=="0" ( if /i "%skipBuildWarning%"=="yes" ( set "applyTweak=1" ) else ( call :msgBox UnknownBuild if /i "!buttonClicked!"=="YES" set "applyTweak=1" cls ) exit /b ) for %%x in (%*) do if "%%x"=="%windowsBuild%" set "applyTweak=1" if "%applyTweak%"=="0" call :msgBox No exit /b :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: function to display message buttons and Yes/No buttons :: :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :msgBox set "msgYesNo=0" if /i "%~1"=="ok" set "msgText= Operation Completed successfully. " & set "msgColor=0x2F" & goto ShowmsgBox if /i "%~1"=="no" set "msgText= This tweak doesn't work on this Windows build. " & set "msgColor=0x4F" & goto ShowmsgBox if /i "%~1"=="edge" set "msgText= MS Edge should be relaunched. " & set "msgColor=0x2F" & goto ShowmsgBox if /i "%~1"=="Confirm" set "msgText= Do you Confirm the Operation " & set "msgColor=0x5F" & set "msgYesNo=1" & goto ShowmsgBox if /i "%~1"=="UnknownBuild" set "msgText= Win-Build: %windowsBuild% is unknown, apply tweak anyway?" & set "msgColor=0x1F" & set "msgYesNo=1" & goto ShowmsgBox if /i "%~1"=="NewVersion" set "msgText= New version (V%NewV%).Download it? " & set "msgColor=0x5F" & set "msgYesNo=1" & goto ShowmsgBox set "msgText=%~1" :ShowmsgBox :: position text box according to whether or not it has yes/no buttons on the right if "%msgYesNo%"=="0" ( set "msgPosX=34" ) else ( set "msgPosX=24" ) %BB% /c 0x1F %BB% /g %msgPosX% 28 & %BB% /d " _________________________________________________ " %BB% /c %msgColor% %BB% /g %msgPosX% 29 & %BB% /d "| |" %BB% /g %msgPosX% 30 & %BB% /d "|%msgText%|" %BB% /g %msgPosX% 31 & %BB% /d "|_________________________________________________|" :: wait for a mouse click, OR print yes/no and check if YES was clicked, anywhere else is NO if "%msgYesNo%"=="0" ( If "%~2"=="" ( If /i "%SelectMode%"=="Mouse" ( %BB% /m >nul ) else ( %BB% /k ) exit /b ) else ( %BB% /w "%~2" exit /b ) ) else ( %BB% /c 0x1F %BB% /g 76 28 & %BB% /d " _______ " %BB% /c 0x2F %BB% /g 76 29 & %BB% /d "| |" %BB% /g 76 30 & %BB% /d "| YES |" %BB% /g 76 31 & %BB% /d "|_______|" %BB% /c 0x1F %BB% /g 87 28 & %BB% /d " _______ " %BB% /c 0x4F %BB% /g 87 29 & %BB% /d "| |" %BB% /g 87 30 & %BB% /d "| N O |" %BB% /g 87 31 & %BB% /d "|_______|" call :readMouse YesNo ) Color 1F exit /b :::::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: Function to Display Info messages :: ::::::::::::::::::::::::::::::::::::::: :Infomsgbox set "String=%~1" If "%~2"=="" ( set "msgColor=0x9F" ) else set "msgColor=0x%~2" call :strlen STRLength String set /a TextPosX=20+(76-%STRLength%)/2 %BB% /c 0x1F %BB% /g 20 28 & %BB% /d " ____________________________________________________________________________ " %BB% /c %msgColor% %BB% /g 20 29 & %BB% /d "| |" %BB% /g 20 30 & %BB% /d "| |" %BB% /g 20 31 & %BB% /d "|____________________________________________________________________________|" %BB% /g %TextPosX% 30 & %BB% /d "%String%" %BB% /g 0 0 %BB% /c 0x1F If "%~3"=="" ( If /i "%SelectMode%"=="Mouse" ( %BB% /m >nul ) else ( %BB% /k ) exit /b ) else ( %BB% /w "%~3" >nul exit /b ) ::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: function to check internet :: :::::::::::::::::::::::::::::::: :: first function input (%~1) is the server that you want to ping it :: second input is the menu to goto if Ping failed :Servercheck ping -n 1 %~1 >nul if errorlevel 1 ( %BB% /c 0x1F %BB% /g 34 3 & %BB% /d " _________________________________________________ " %BB% /c 0x4F %BB% /g 34 4 & %BB% /d "| |" %BB% /g 34 5 & %BB% /d "| Couldn't establish a reliable connection |" %BB% /g 34 6 & %BB% /d "|_________________________________________________|" %BB% /c 0x4F ping 127.0.0.1 -n 3 > NUL 2>&1 %BB% /g 0 0 /c 0x1F goto %~2 ) ::::::::::::::::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: function to download files from direct links :: :::::::::::::::::::::::::::::::::::::::::::::::::: :: first function input (%~1) is the link and the second one is the file name and extension :: Link should be presented like this to avoid problems with special characters : "Link_HERE" :Download echo strFileURL = "%~1" > Download.vbs echo strHDLocation = "%CD%\%~2" >> Download.vbs echo Set objXMLHTTP = CreateObject("MSXML2.ServerXMLHTTP") >> Download.vbs echo objXMLHTTP.open "GET", strFileURL, false >> Download.vbs echo objXMLHTTP.send() >> Download.vbs echo If objXMLHTTP.Status = 200 Then >> Download.vbs echo Set objADOStream = CreateObject("ADODB.Stream") >> Download.vbs echo objADOStream.Open>> Download.vbs echo objADOStream.Type = 1 >> Download.vbs echo objADOStream.Write objXMLHTTP.ResponseBody >> Download.vbs echo objADOStream.Position = 0 >> Download.vbs echo Set objFSO = Createobject("Scripting.FileSystemObject") >> Download.vbs echo If objFSO.Fileexists(strHDLocation) Then objFSO.DeleteFile strHDLocation >> Download.vbs echo Set objFSO = Nothing >> Download.vbs echo objADOStream.SaveToFile strHDLocation >> Download.vbs echo objADOStream.Close >> Download.vbs echo Set objADOStream = Nothing >> Download.vbs echo End if >> Download.vbs echo Set objXMLHTTP = Nothing >> Download.vbs cscript Download.vbs >nul 2>&1 del Download.vbs exit /b :::::::::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: function to extract files (.Zip Only) :: ::::::::::::::::::::::::::::::::::::::::::: :Unzip > Unzip.vbs ECHO ' >> Unzip.vbs ECHO. >> Unzip.vbs ECHO ' Dim ArgObj, var1, var2 >> Unzip.vbs ECHO Set ArgObj = WScript.Arguments >> Unzip.vbs ECHO. >> Unzip.vbs ECHO If (Wscript.Arguments.Count ^> 0) Then >> Unzip.vbs ECHO. var1 = ArgObj(0) >> Unzip.vbs ECHO Else >> Unzip.vbs ECHO. var1 = "" >> Unzip.vbs ECHO End if >> Unzip.vbs ECHO. >> Unzip.vbs ECHO If var1 = "" then >> Unzip.vbs ECHO. strFileZIP = "example.zip" >> Unzip.vbs ECHO Else >> Unzip.vbs ECHO. strFileZIP = var1 >> Unzip.vbs ECHO End if >> Unzip.vbs ECHO. >> Unzip.vbs ECHO 'The location of the zip file. >> Unzip.vbs ECHO REM Set WshShell = CreateObject("Wscript.Shell") >> Unzip.vbs ECHO REM CurDir = WshShell.ExpandEnvironmentStrings("%%cd%%") >> Unzip.vbs ECHO Dim sCurPath >> Unzip.vbs ECHO sCurPath = CreateObject("Scripting.FileSystemObject").GetAbsolutePathName(".") >> Unzip.vbs ECHO strZipFile = sCurPath ^& "\" ^& strFileZIP >> Unzip.vbs ECHO 'The folder the contents should be extracted to. >> Unzip.vbs ECHO outFolder = sCurPath ^& "\" >> Unzip.vbs ECHO. >> Unzip.vbs ECHO. WScript.Echo ( "Extracting file " ^& strFileZIP) >> Unzip.vbs ECHO. >> Unzip.vbs ECHO Set objShell = CreateObject( "Shell.Application" ) >> Unzip.vbs ECHO Set objSource = objShell.NameSpace(strZipFile).Items() >> Unzip.vbs ECHO Set objTarget = objShell.NameSpace(outFolder) >> Unzip.vbs ECHO intOptions = 256 >> Unzip.vbs ECHO objTarget.CopyHere objSource, intOptions >> Unzip.vbs ECHO. >> Unzip.vbs ECHO. WScript.Echo ( "Extracted." ) >> Unzip.vbs ECHO. cscript /B Unzip.vbs %~1 >nul 2>&1 del Unzip.vbs exit /b ::::::::::::::::::::::::::::::============================================================================================================================================================================== :: Calculates string Length :: :::::::::::::::::::::::::::::: :strlen <resultVar> <stringVar> ( setlocal EnableDelayedExpansion set "s=!%~2!#" set "len=0" for %%P in (4096 2048 1024 512 256 128 64 32 16 8 4 2 1) do ( if "!s:~%%P,1!" NEQ "" ( set /a "len+=%%P" set "s=!s:~%%P!" ) ) ) ( endlocal set "%~1=%len%" exit /b ) ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: function to get the button number to activate according to Input mode :: :: parameters: 1='Original Button Number (Mouse Mode)' 2='Button number in KBD mode' :: :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :GetActiveButton If /i "%SelectMode%"=="Mouse" ( set "ActiveButton%~1=%~1" ) else ( set "ActiveButton%~1=%~2" ) set Buttonkey%~1=%~2 exit /b :::::::::::::::::::::::::::::============================================================================================================================================================================== :: Calculates Folder Size :: :: call :FolderSize <Path> <Button Number> :: ::::::::::::::::::::::::::::::::::::::::::::: :FolderSize set Dir="%~1" for /f "tokens=1,3" %%a in ('dir /w /s /-c %Dir% ^| findstr "File(s)"') do set Bytes=%%b set /a KB=(%Bytes% /1024) set /a MB=(%KB% /1024) set /a GB=(%MB% /1024) If not %GB%==0 set FolderSize%~2=%GB% GB If %GB%==0 set FolderSize%~2=%MB% MB If %MB%==0 set FolderSize%~2=%KB% KB If %KB%==0 set FolderSize%~2=%Bytes% Bytes exit /b :::::::::::::::::::::::::::::::::::: :: function to draw title letters :: :: parameters: letter x y colors :: :::::::::::::::::::::::::::::::::::: :drawLetter setlocal set /a y1=%~3+1 & set /a y2=%~3+2 & set /a y3=%~3+3 rem letters width: A-6, B-5, C-5, D-6, E-6, F-5, G-6, H-6 I-4, J-6, K-6, L-6, M-8, N-6, O-6, P-5, Q-6, R-6, S-5, T-6, U-6, V-6, W-7, X-6, Y-6, Z-6 if /i "%~1"=="A" %BB% /c 0x%~4 /g %~2 %~3 /d " __ " /g %~2 %y1% /d " / _\ " /g %~2 %y2% /d "/ \\" /g %~2 %y3% /d "\_/\_/" if /i "%~1"=="B" %BB% /c 0x%~4 /g %~2 %~3 /d " ___ " /g %~2 %y1% /d "( ,)" /g %~2 %y2% /d " ) ,\" /g %~2 %y3% /d "(___)" if /i "%~1"=="C" %BB% /c 0x%~4 /g %~2 %~3 /d " __ " /g %~2 %y1% /d " / _)" /g %~2 %y2% /d "( (_ " /g %~2 %y3% /d " \__)" if /i "%~1"=="D" %BB% /c 0x%~4 /g %~2 %~3 /d " ___ " /g %~2 %y1% /d "( \ " /g %~2 %y2% /d " ) ) )" /g %~2 %y3% /d "(___/ " if /i "%~1"=="E" %BB% /c 0x%~4 /g %~2 %~3 /d " ____ " /g %~2 %y1% /d "( __)" /g %~2 %y2% /d " ) _) " /g %~2 %y3% /d "(____)" if /i "%~1"=="F" %BB% /c 0x%~4 /g %~2 %~3 /d " ___ " /g %~2 %y1% /d "( _)" /g %~2 %y2% /d " ) _)" /g %~2 %y3% /d "(_) " if /i "%~1"=="G" %BB% /c 0x%~4 /g %~2 %~3 /d " ___ " /g %~2 %y1% /d " / __)" /g %~2 %y2% /d "( (_ \\" /g %~2 %y3% /d " \___/" if /i "%~1"=="H" %BB% /c 0x%~4 /g %~2 %~3 /d " _ _ " /g %~2 %y1% /d "/ )( \" /g %~2 %y2% /d ") __ (" /g %~2 %y3% /d "\_)(_/" if /i "%~1"=="I" %BB% /c 0x%~4 /g %~2 %~3 /d " __ " /g %~2 %y1% /d "( )" /g %~2 %y2% /d " )( " /g %~2 %y3% /d "(__)" if /i "%~1"=="J" %BB% /c 0x%~4 /g %~2 %~3 /d " __ " /g %~2 %y1% /d " _( )" /g %~2 %y2% /d "/ \) \" /g %~2 %y3% /d "\____/" if /i "%~1"=="K" %BB% /c 0x%~4 /g %~2 %~3 /d " __ _ " /g %~2 %y1% /d "( / )" /g %~2 %y2% /d " ) ( " /g %~2 %y3% /d "(__\_)" if /i "%~1"=="L" %BB% /c 0x%~4 /g %~2 %~3 /d " __ " /g %~2 %y1% /d "( ) " /g %~2 %y2% /d "/ (_/\\" /g %~2 %y3% /d "\____/" if /i "%~1"=="M" %BB% /c 0x%~4 /g %~2 %~3 /d " __ __ " /g %~2 %y1% /d "( \/ )" /g %~2 %y2% /d " ) ( " /g %~2 %y3% /d "(_/\/\_)" if /i "%~1"=="N" %BB% /c 0x%~4 /g %~2 %~3 /d " _ _ " /g %~2 %y1% /d "( \( )" /g %~2 %y2% /d " ) ( " /g %~2 %y3% /d "(_)\_)" if /i "%~1"=="O" %BB% /c 0x%~4 /g %~2 %~3 /d " __ " /g %~2 %y1% /d " / \ " /g %~2 %y2% /d "( O )" /g %~2 %y3% /d " \__/ " if /i "%~1"=="P" %BB% /c 0x%~4 /g %~2 %~3 /d " ___ " /g %~2 %y1% /d "( ,\\" /g %~2 %y2% /d " ) _/" /g %~2 %y3% /d "(_) " if /i "%~1"=="Q" %BB% /c 0x%~4 /g %~2 %~3 /d " __ " /g %~2 %y1% /d " / \ " /g %~2 %y2% /d "( O )" /g %~2 %y3% /d " \__\)" if /i "%~1"=="R" %BB% /c 0x%~4 /g %~2 %~3 /d " ____ " /g %~2 %y1% /d "( _ \\" /g %~2 %y2% /d " ) /" /g %~2 %y3% /d "(__\_)" if /i "%~1"=="S" %BB% /c 0x%~4 /g %~2 %~3 /d " ___ " /g %~2 %y1% /d "/ __)" /g %~2 %y2% /d "\__ \\" /g %~2 %y3% /d "(___/" if /i "%~1"=="T" %BB% /c 0x%~4 /g %~2 %~3 /d " ____ " /g %~2 %y1% /d "(_ _)" /g %~2 %y2% /d " )( " /g %~2 %y3% /d " (__) " if /i "%~1"=="U" %BB% /c 0x%~4 /g %~2 %~3 /d " _ _ " /g %~2 %y1% /d "( )( )" /g %~2 %y2% /d " )()( " /g %~2 %y3% /d " \__/ " if /i "%~1"=="V" %BB% /c 0x%~4 /g %~2 %~3 /d " _ _ " /g %~2 %y1% /d "( )( )" /g %~2 %y2% /d " \\// " /g %~2 %y3% /d " (__) " if /i "%~1"=="W" %BB% /c 0x%~4 /g %~2 %~3 /d " _ _ " /g %~2 %y1% /d "/ )( \\" /g %~2 %y2% /d "\ /\ /" /g %~2 %y3% /d "(_/\_)" if /i "%~1"=="X" %BB% /c 0x%~4 /g %~2 %~3 /d " _ _ " /g %~2 %y1% /d "( \/ )" /g %~2 %y2% /d " ) ( " /g %~2 %y3% /d "(_/\_)" if /i "%~1"=="Y" %BB% /c 0x%~4 /g %~2 %~3 /d " _ _ " /g %~2 %y1% /d "( \/ )" /g %~2 %y2% /d " ) / " /g %~2 %y3% /d "(_/\_)" if /i "%~1"=="Z" %BB% /c 0x%~4 /g %~2 %~3 /d " _ _ " /g %~2 %y1% /d "( \/ )" /g %~2 %y2% /d " ) ( " /g %~2 %y3% /d "(_/\_)" if /i "%~1"=="/" %BB% /c 0x%~4 /g %~2 %~3 /d " _ " /g %~2 %y1% /d "| |" /g %~2 %y2% /d "| |" /g %~2 %y3% /d "|_|" if /i "%~1"=="\" %BB% /c 0x%~4 /g %~2 %~3 /d " " /g %~2 %y1% /d " " /g %~2 %y2% /d " " /g %~2 %y3% /d " " rem each letter line must use 6 spaces endlocal exit /b :::::::::::::::::::::::::::::::::::: :: function to draw title symbols :: :: parameters: line :: :::::::::::::::::::::::::::::::::::: :drawSymbols setlocal set "line=" if %~1 EQU 7 set line=%line% /c 0x1F /g 4 0 /d " _ " /g 107 0 /d " __ " if %~1 GEQ 6 set /a y=%~1-6 & set line=%line% /c 0x1F /g 4 !y! /d " /\\ " /g 107 !y! /d " / /\ " if %~1 GEQ 5 set /a y=%~1-5 & set line=%line% /c 0x1F /g 4 !y! /d " | //_ " /g 107 !y! /d " / / / " if %~1 GEQ 4 set /a y=%~1-4 & set line=%line% /c 0x1F /g 4 !y! /d " / \/\\ " /g 107 !y! /d "/_/ /\ " if %~1 GEQ 3 set /a y=%~1-3 & set line=%line% /c 0x1F /g 4 !y! /d " / /\_// " /g 107 !y! /d "\_\/\ \ " if %~1 GEQ 2 set /a y=%~1-2 & set line=%line% /c 0x1F /g 4 !y! /d "/ // " /g 107 !y! /d " \\ \ " if %~1 GEQ 1 set /a y=%~1-1 & set line=%line% /c 0x1F /g 4 !y! /d "\// " /g 107 !y! /d " \\/ " %BB% %line% endlocal exit /b :::::::::::::::::::::::::::::::::::::::::::: :: function to draw animated intro :: :: parameters: number (of intro sequence) :: :::::::::::::::::::::::::::::::::::::::::::: :intro setlocal if "%debug%"=="1" %BB% /c 0x1F /g 2 32 /d "animation = %~1" rem animation of box moving up for /l %%a in (30,-1,2) do ( set /a b=%%a+1 & set /a c=%%a+2 %BB% /c 0x1F /g 54 %%a /d " _______ "^ /g 54 !b! /d "|_______|"^ /g 54 !c! /d " " ) rem animation of box opening horizontally set "line=_______" for /l %%a in (54,-1,19) do ( set "line=!line!__" %BB% /g %%a 2 /d " !line! "^ /g %%a 3 /d "|!line!|" ) rem animation of box opening vertically set "boxlines=_______________________________________________________________________________________" set "boxspace= " %BB% /g 16 2 /d " %boxlines%"^ /g 16 3 /d "|%boxspace%|"^ /g 16 4 /d "|%boxspace%|"^ /g 16 5 /d "|%boxlines%|"^ /w 100^ /g 16 1 /d " %boxlines%"^ /g 16 2 /d "|%boxspace%|"^ /g 16 5 /d "|%boxspace%|"^ /g 16 6 /d "|%boxlines%|" rem animation of letters and symbols if "%~1"=="1" set "a=Td18 Od24 Gd30 Gd36 Ld42 Ed48 Td60 Wd66 Ed72 Ad78 Kd84 Ed90 Rd96 Rn96 En90 Kn84 An78 En72 Wn66 Tn60 En48 Ln42 Gn36 Gn30 On24 Tn18" if "%~1"=="2" set "a=Td60 Ed48 Wd66 Tn60 Ld42 Ed72 En48 Wn66 Gd36 Ad78 Ln42 En72 Gd30 Kd84 Gn36 An78 Od24 Ed90 Gn30 Kn84 Td18 Rd96 On24 En90 Tn18 Rn96" if "%~1"=="3" set "a=Td18 Od24 Tn18 Gd30 On24 Gd36 Gn30 Ld42 Gn36 Ed48 Ln42 Td60 En48 Wd66 Tn60 Ed72 Wn66 Ad78 En72 Kd84 An78 Ed90 Kn84 Rd96 En90 Rn96" if "%~1"=="4" set "a=/d19 /n19 \n19 Td18 /d24 /n24 \n24 Od24 /d30 /n30 \n30 Tn18 Gd30 /d36 /n36 \n36 On24 Gd36 /d42 /n42 \n42 Gn30 Ld42 /d48 /n48 \n48 Gn36 Ed48 /d55 /n55 \n55 Ln42 /d60 /n60 \n60 En48 Td60 /d66 /n66 \n66 Wd66 /d72 /n72 \n72 Tn60 Ed72 /d78 /n78 \n78 Wn66 Ad78 /d84 /n84 \n84 En72 Kd84 /d90 /n90 \n90 An78 Ed90 /d96 /n96 \n96 Kn84 Rd96" rem process groups of letters/numbers as individual lines by replacing spaces with LineFeed set "e=0" & for /f "tokens=1 delims=_" %%b in ("%a: =!LF!%") do ( rem draw letters set "c=%%b" & if /i "!c:~1,1!"=="d" ( set "d=17" ) else ( set "d=1F" ) call :drawLetter !c:~0,1! !c:~2! 2 !d! rem drop down lateral symbols vertically after every 3 cicles set /a e+=1 & set /a f=!e!%%3 if !f! EQU 0 if !e! LEQ 21 set /a f=!e!/3 & call :drawSymbols !f! ) endlocal exit /b :::::::::::::::::::::::::::============================================================================================================================================================================== :: Get Clipboard Content :: ::::::::::::::::::::::::::: :GetClipboard set Clipboard= :: Does powershell.exe exist within %PATH%? for %%I in (powershell.exe) do if "%%~$PATH:I" neq "" ( set getclip=powershell "Add-Type -AssemblyName System.Windows.Forms;$tb=New-Object System.Windows.Forms.TextBox;$tb.Multiline=$true;$tb.Paste();$tb.Text" ) else ( rem :: If not, compose and link C# application to retrieve clipboard text set getclip=%temp%\getclip.exe >"%temp%\c.cs" echo using System;using System.Threading;using System.Windows.Forms;class dummy{[STAThread] >>"%temp%\c.cs" echo public static void Main^(^){if^(Clipboard.ContainsText^(^)^) Console.Write^(Clipboard.GetText^(^)^);}} for /f "delims=" %%I in ('dir /b /s "%windir%\microsoft.net\*csc.exe"') do ( if not exist "!getclip!" "%%I" /nologo /out:"!getclip!" "%temp%\c.cs" 2>NUL ) del "%temp%\c.cs" if not exist "!getclip!" ( or newer, or install PowerShell. goto :EOF ) ) for /f "delims=" %%I in ('%getclip% ^| findstr /n "^"') do ( set "line=%%I" & set "line=!line:*:=!" ) :: This is the last line of the copied content set "Clipboard=!Line!" exit/b :::::::::::::::::::::::::::::::::::::============================================================================================================================================================================== :: function to search for tweaks :: ::::::::::::::::::::::::::::::::::: :searchTweaks cls echo. echo. echo. echo. ___________________________________________________________________________________________________ echo. ^| ^| echo. ^| SEARCH FOR: ^| echo. ^|___________________________________________________________________________________________________^| %BB% /c 0x1F /g 0 10 echo. _________ _________ _________ _________ _________ _________ _________ _________ _________ _________ echo. ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| echo. ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| echo. ^| 1 ^| 2 ^| 3 ^| 4 ^| 5 ^| 6 ^| 7 ^| 8 ^| 9 ^| 0 ^| echo. ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| echo. ^|_________^|_________^|_________^|_________^|_________^|_________^|_________^|_________^|_________^|_________^| echo. ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| echo. ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| echo. ^| Q ^| W ^| E ^| R ^| T ^| Y ^| U ^| I ^| O ^| P ^| echo. ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| echo. ^|_________^|_________^|_________^|_________^|_________^|_________^|_________^|_________^|_________^|_________^| echo. ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| echo. ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| echo. ^| A ^| S ^| D ^| F ^| G ^| H ^| J ^| K ^| L ^| END ^| echo. ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| echo. ^|_________^|_________^|_________^|_________^|_________^|_________^|_________^|_________^|_________^|_________^| echo. ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| echo. ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| echo. ^| Z ^| X ^| C ^| V ^| B ^| N ^| M ^| BACKSPACE ^| ^<-' ^| echo. ^| ^| ^| ^| ^| ^| ^| ^| ^| ^| echo. ^|_________^|_________^|_________^|_________^|_________^|_________^|_________^|___________________^|_________^| %BB% /c 0x1F /g 100 20 /d "_________" %BB% /c 0x4F /g 99 21 /d "| |" %BB% /c 0x4F /g 99 22 /d "| |" %BB% /c 0x4F /g 99 23 /d "| END |" %BB% /c 0x4F /g 99 24 /d "| |" %BB% /c 0x4F /g 99 25 /d "|_________|" %BB% /c 0x2F /g 99 26 /d "| |" %BB% /c 0x2F /g 99 27 /d "| |" %BB% /c 0x2F /g 99 28 /d "| Space |" %BB% /c 0x2F /g 99 29 /d "| |" %BB% /c 0x2F /g 99 30 /d "|_________|" If /i "%SelectMode%"=="Mouse" ( %BB% ^ /c 0x1F /g 111 1 /d " _______"^ /c 0x3F /g 111 2 /d "| "^ /g 111 3 /d "| USE "^ /g 111 4 /d "| KBD "^ /g 111 5 /d "|_______" ) else (%BB% ^ /c 0x1F /g 111 1 /d " _______"^ /c 0x3F /g 111 2 /d "| "^ /g 111 3 /d "|Press U"^ /g 111 4 /d "|'Mouse'"^ /g 111 5 /d "|_______" ) %BB% /c 0xF1 /g 23 5 /d " " set /a searchPos=24 set "searchString=" :loop %BB% /g %searchPos% 5 set "keys=8_backspace 13_enter 27_esc 32_space 48_0 49_1 50_2 51_3 52_4 53_5 54_6 55_7 56_8 57_9 65_A 66_B 67_C 68_D 69_E 70_F 71_G 72_H 73_I 74_J 75_K 76_L 77_M 78_N 79_O 80_P 81_Q 82_R 83_S 84_T 85_U 86_V 87_W 88_X 89_Y 90_Z 97_a 98_b 99_c 100_d 101_e 102_f 103_g 104_h 105_i 106_j 107_k 108_l 109_m 110_n 111_o 112_p 113_q 114_r 115_s 116_t 117_u 118_v 119_w 120_x 121_y 122_z 292_left 293_up 294_right 295_down" set "keys=%keys: =!LF!%" If /i "%SelectMode%"=="Mouse" (call :readMouse text ) else (%BB% ^ %BB% /G 24 5 set /p searchString= If /i "!searchString!"=="END" exit /b If /i "!searchString!"=="u" ( If /i "%SelectMode%"=="Mouse" (set "SelectMode=KBD" & %BB% /c 0x1F & goto searchTweaks ) else ( set "SelectMode=Mouse" & %BB% /c 0x1F & goto searchTweaks ) ) goto Runsearch ) if "%buttonClicked%"=="END" %BB% /c 0x1F & %BB% /g 0 0 & goto Runsearch if "%buttonClicked%"=="BACKSPACE" if %searchPos% GEQ 25 set /a searchPos-=1 & %BB% /g !searchPos! 5 /d " " & %BB% /g !searchPos! 5 & set "searchString=%searchString:~0,-1%" if "%buttonClicked%"=="Space" set "searchString=%searchString% " & %BB% /g !searchPos! 5 /d " " & set /a searchPos+=1 for %%a in (1 2 3 4 5 6 7 8 9 0 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z ) do if "%buttonClicked%" EQU "%%a" if %searchPos% LEQ 106 %BB% /g %searchPos% 5 /d "%buttonClicked%" & set /a searchPos+=1 & set "searchString=%searchString%%buttonClicked%" goto :loop :Runsearch %BB% /c 0x1F If "!searchString!"=="" exit /b ( echo Windows / Office KMS activation echo Check Windows Activation Status : 1=^>1 echo Check Office Activation Status : 1=^>2 echo Activate Windows/Office Using KMSPico : 1=^>3 echo Manage Built-in apps and restore old ones echo Remove/restore Windows built-in apps from Users : 2=^>1 echo Restore Old Windows photo viewer : 2=^>2 echo Uninstall/restore Cortana [O] : 2=^>3 echo Restore Legacy Calculator Classic Win32 [O] : 2=^>4 echo Uninstall/restore Microsoft Edge [O] : 2=^>5 echo Restore Win 7 Task manager [O] : 2=^>6 echo Uninstall/restore Internet Explorer 11 [O] : 2=^>7 echo Restore Classic MSConfig [O] : 2=^>8 echo Uninstall, Disable and reenable Onedrive : 2=^>9 echo Install Windows DVD Player app [O] : 2=^>10 echo Uninstall Contact Support Get Help App [O] : 2=^>11 echo Restore Classic Paint app [B:14986] [O] : 2=^>12 echo Uninstall WindowsFeedback App [O] : 2=^>13 echo Enable/Disable stuff In Windows10 echo Windows Defender : 3=^1 echo Default Quick Access view in Explorer : 3=^2 echo Windows Firewall : 3=^3 echo Show BSOD details instead of the sad smiley : 3=^4 echo Manage Folders In 'This PC' : 3=^5 echo This PC _ Downloads Folder : 3=^5=^1 echo This PC _ Pictures Folder : 3=^5=^2 echo This PC _ Music Folder : 3=^5=^3 echo This PC _ Desktop Folder : 3=^5=^4 echo This PC _ Documents Folder : 3=^5=^5 echo This PC _ Videos Folder : 3=^5=^6 echo This PC _ Remove All Folders From This PC : 3=^5=^9 echo This PC _ Add All Folders to This PC : 3=^5=^10 echo Password Reveal Button : 3=^6 echo Lockscreen : 3=^7 echo Safely Remove Hardware Tray Icon : 3=^8 echo Windows/Store Smart Screen Filter : 3=^9 echo Replace PowerShell with CMD in Win X menu : 3=^10 echo User Interface Tweaks echo Dark Theme For Apps : 4=^>1 echo Thumbnail Previews in File explorer : 4=^>2 echo Volume Control UI : 4=^>3 echo Taskview button in Taskbar : 4=^>4 echo Battery Status UI : 4=^>5 echo Show Delete-Confirmation-Dialog Prompt Details : 4=^>6 echo Alt-Tab Screen UI : 4=^>7 echo Transparency and Blur in: Taskbar-Clock... : 4=^>8 echo Context Menu Tweaks : 4=^>9 echo 'Grant Admin Full Control' In Files and Folders : 4=^>9=^>1 echo Select Context menu : 4=^>9=^>2 echo Pin to Quick access : 4=^>9=^>3 echo Classic Personalize to Desktop : 4=^>9=^>4 echo Screen Resolution menu in Desktop : 4=^>9=^>5 echo Power Options in Desktop : 4=^>9=^>6 echo Bluetooth menu in Desktop : 4=^>9=^>7 echo Add Open with Notepad to Files : 4=^>9=^>8 echo Copy File Location to Clipboard : 4=^>9=^>9 echo Change Logon Background Image/accent-color : 4=^>10 echo Change OEM Information : 4=^>11 echo Colourise/Decolourise Start Me,Taskbar and Title bars : 4=^>12 echo Colourise/Decolourise Windows Title bars and borders : 4=^>12=^>1 echo Colourise Start Menu ^& Taskbar : 4=^>12=^>2 echo Set Inactive Title Bar Color : 4=^>12=^>3 echo Taskbar Thumbnail size : 4=^>13 echo Toggle Windows Update status echo Toggle Windows Update status : 5 echo Manage Windows Features echo Show Windows features list : 6=^>1 echo Show 'Turn Windows features on or off' window : 6=^>2 echo Enable a feature : 6=^>3 echo Disable a feature : 6=^>4 echo Disable and Remove feature Payload {clean feature files} : 6=^>5 echo Manage User Accounts echo Show me my User accounts : 7=^>1 echo Built-in Administrator Account : 7=^>2 echo Add NEW user account : 7=^>3 echo Delete a user account : 7=^>4 echo Change specific user account Password : 7=^>5 echo Speed Up PC Performance echo Calculate Restart Time : 8=^>1 echo Clean Update Junk : 8=^>2 echo Clean TEMP Folder : 8=^>3 echo Clean Prefetch Folder : 8=^>4 echo Start Disk Cleanup {Not automatic} : 8=^>5 echo Disable : Unnecessary services,BitLocker,Encrypting... : 8=^>6 echo Game Mode : 8=^>7 echo Manage Microsoft Edge browser echo Internet Tweaks and Fixes echo Fix Empty 'Network Connections'Folder {Network Adapters} : 10=^>1 echo Restore 'Windows Firewall'+'Network Adapter' settings : 10=^>2 echo Release and renew the IP address from DHCP server : 10=^>3 echo Disable Limit Reservable Bandwidth network : 10=^>4 echo Flush Windows DNS Cache {ipconfig /flushdns} : 10=^>5 echo Convert Pro/Home version to LTSB echo Turn Pro/Home version to LTSB (Kind of) : 11=^1 ) >TWoptions.txt cls for /f "tokens=1,* delims=:" %%a in ('findstr /i /l /c:"%searchString%" "TWoptions.txt"') do (echo(%%a:%%b) echo. pause del TWoptions.txt >nul 2>&1 exit /b ::============================================================================================================================================================================== :WhatsNEW echo ___________________________________________________________________________________________________________________ echo ^| ____ _ _ ____ __ __ _ ____ ____ ___ _ _ __ __ _ ___ ____ __ __ ___ ^| echo ^| (_ _)/ )( \( __) / _\ ( / )( __)( _ \ / __)/ )( \ / _\ ( ( \ / __)( __) ( ) / \ / __) ^| echo ^| )( \ /\ / ) _) / \ ) ( ) _) ) / ( (__ ) __ (/ \/ /( (_ \ ) _) / (_/\( O )( (_ \ ^| echo ^| (__) (_/\_)(____)\_/\_/(__\_)(____)(__\_) \___)\_)(_/\_/\_/\_)__) \___/(____) \____/ \__/ \___/ ^| echo ^|___________________________________________________________________________________________________________________^| echo ^| Version : %CurV% (12/Feb/2016) ^| echo ^| This is a completely new version of Toggle Tweaker rewritten from scratch, so a lot of things has changed : ^| echo ^| ^| echo ^| # The script Now can accept Mouse clicks as Input methode (You can change it from the Settings) ^| echo ^| ^| echo ^| # Almost all old options still exists and some are improved ^| echo ^| ^| echo ^| # App removal section:Added New apps 3D Paint-3D View ~ Multi operations in one command ~ Apps Current Status ^| echo ^| ^| echo ^| # 'Undo All' is removed because of the difficulty of tracking every single change made with the tweaker ^| echo ^| and added instead options to create a restore Point and to backup the Registry ^| echo ^| ^| echo ^| # A lot of options will show you the current status (Enabled/Disabled) instead of just applying It ^| echo ^| ^| echo ^| # Uninstalling Onedrive Will remove it's packages from windows ^| echo ^| ^| echo ^| # Uninstalling Internet Explorer 11 is added to Windows apps menu with the ability to restore it ^| echo ^| ^| echo ^| # Uninstalling Edge / Cortana Works with a new script now to avoid previous problems ^| echo ^| ^| echo ^| # 'PC Performance' Menu is completely changed because the old one workded only for SSD Users ^| echo ^| ^| echo ^| # Added the option to restore 'Old MSConfig' and 'Classic Paint' for Build 14986 ^| echo ^| ^| echo ^| ^| echo ^|___________________________________________________________________________________________________________________^| call :readInput exit/b
CHEF-KOCH/regtweaks
Win 10/All Versions/Security/All-in-one solution by Yasser Da Silver/Toggle Tweaker.bat
bat
mpl-2.0
241,592
hub4com-2.1.0.0-386\com2tcp --baud 115200 \\.\COM19 11000
jdolinay/avr_debug
start_proxy.bat
bat
lgpl-3.0
57
:: by tumagonx :: this piece is under public domain @echo off echo WARNING: IT IS ILLEGAL TO PATCH SOFTWARE THAT FORBID BINARY MODIFICATION! echo Enter to continue... pause>nul 2>&1 :: initvar set gdiori=g d i 3 2 . d l l set gdimod=g d i x p . d l l set uspori=u s p 3 2 . d l l set uspmod=u s p x p . d l l set usrori=u s e r 3 2 . d l l set usrmod=u s e r x p . d l l set advori=a d v a p i 3 2 . d l l set advmod=a d v a p i x p . d l l set shlori=s h e l l 3 2 . d l l set shlmod=s h e l l x p . d l l set crtori=m s v c r t . d l l set crtmod=x p v c r t . d l l set dexori=d 3 d 9 . d l l set dexmod=d 3 d x . d l l set wskori=w s 2 _ 3 2 . d l l set wskmod=w s 2 _ x p . d l l set krnori=k e r n e l 3 2 . d l l set krnmod=k e r n e l x p . d l l set UPXPE= set USIGN= set USPOK= set nop= set krn= set adv= set usr= set wsk= set gdi= set usp= set shl= set crt= set dex= for %%I in ("gsar.exe") do if not exist "%%~$PATH:I" echo Error: gsar not found&pause & goto :EOF for %%I in ("pehdr-lite.exe") do if not exist "%%~$PATH:I" echo Error: pehdr-lite not found&pause & goto :EOF for %%I in ("ldd.exe") do if exist "%%~$PATH:I" set LDD=1 for %%I in ("peflags.exe") do if exist "%%~$PATH:I" set PFLAG=1 for %%I in ("osslsigncode.exe") do if exist "%%~$PATH:I" set USIGN=1 for %%I in ("upx.exe") do if exist "%%~$PATH:I" set UPXPE=1 if exist "%CommonProgramFiles%\Microsoft Shared\OFFICE14\usp10.dll" set USPOK=1 echo. echo 0) PE flags only 5) gdi32.dll echo 1) kernel32.dll 6) usp10.dll [if installed] echo 2) advapi32.dll 7) shell32.dll echo 3) user32.dll 8) msvcrt.dll [use with caution!] echo 4) ws2_32.dll 9) d3d9.dll [only for d3d9ex app] echo. echo Specify patch modes in comma separated value(s) [default: all] set /P switches=Patch mode ? if "%switches%" EQU "" set switches=0,1,2,3,4,5,6,7,8,9 call :XOMARGPARSE %switches:,= % if "%~1" equ "" echo Error: no input specified&pause & goto :EOF if not exist "%~1\*" goto :XOMPERFILE cd /d "%~1" if not "%ERRORLEVEL%" equ "0" echo Error: directory not accessible&pause & goto :EOF echo Will perform patch to all executables in: "%~1" echo Enter to continue... pause>nul 2>&1 for /f "delims=/ usebackq" %%F in (`dir *.exe *.dll /s /a-d /b /oen`) do ( echo. echo Patching "%%~nxF"... call :XOMPATCHER "%%~dpnxF" ) echo Finished... pause& exit :XOMARGPARSE if "%1" EQU "0" set nop=1 if "%1" EQU "1" set krn=1& set nop= if "%1" EQU "2" set adv=1& set nop= if "%1" EQU "3" set usr=1& set nop= if "%1" EQU "4" set wsk=1& set nop= if "%1" EQU "5" set gdi=1& set nop= if "%1" EQU "6" set usp=1& set nop= if "%1" EQU "7" set shl=1& set nop= if "%1" EQU "8" set crt=1& set nop= if "%1" EQU "9" set dex=1& set nop= shift /1 if not "%~1" EQU "" goto :XOMARGPARSE goto :EOF :XOMPERFILE if not exist "%~1" shift /1&& goto :XOMPERFILE echo Patching "%~nx1"... call :XOMPATCHER "%~dpnx1" shift /1 if not "%~1" EQU "" goto :XOMPERFILE echo Finished... pause& exit :XOMPATCHER :: error handling? attrib -r "%~1" && copy /y "%~1" "%~dpnx1.bak" >nul 2>&1 if "%USIGN%" equ "1" osslsigncode remove-signature -in "%~dpnx1" -out "%TEMP%\%~nx1" && move /y "%TEMP%\%~nx1" "%~dpnx1" >nul 2>&1 if "%UPXPE%" equ "1" upx -k -d "%~dpnx1" >nul 2>&1 if "%nop%" EQU "1" goto :nop if "%krn%" EQU "1" ( gsar -o -i -s:x00%krnori: =%:x00 -r:x00%krnmod: =%:x00 "%~dpnx1" gsar -o -i -s:x90%krnori: =%:x00 -r:x90%krnmod: =%:x00 "%~dpnx1" gsar -o -i -s:x00%krnori: =:x00%:x00 -r:x00%krnmod: =:x00%:x00 "%~dpnx1" ) if "%adv%" EQU "1" ( gsar -o -i -s:x00%advori: =%:x00 -r:x00%advmod: =%:x00 "%~dpnx1" gsar -o -i -s:x90%advori: =%:x00 -r:x90%advmod: =%:x00 "%~dpnx1" gsar -o -i -s:x00%advori: =:x00%:x00 -r:x00%advmod: =:x00%:x00 "%~dpnx1" ) if "%crt%" EQU "1" ( gsar -o -i -s:x00%crtori: =%:x00 -r:x00%crtmod: =%:x00 "%~dpnx1" gsar -o -i -s:x90%crtori: =%:x00 -r:x90%crtmod: =%:x00 "%~dpnx1" gsar -o -i -s:x00%crtori: =:x00%:x00 -r:x00%crtmod: =:x00%:x00 "%~dpnx1" ) if "%gdi%" EQU "1" ( gsar -o -i -s:x00%gdiori: =%:x00 -r:x00%gdimod: =%:x00 "%~dpnx1" gsar -o -i -s:x90%gdiori: =%:x00 -r:x90%gdimod: =%:x00 "%~dpnx1" gsar -o -i -s:x00%gdiori: =:x00%:x00 -r:x00%gdimod: =:x00%:x00 "%~dpnx1" ) if "%shl%" EQU "1" ( gsar -o -i -s:x00%shlori: =%:x00 -r:x00%shlmod: =%:x00 "%~dpnx1" gsar -o -i -s:x90%shlori: =%:x00 -r:x90%shlmod: =%:x00 "%~dpnx1" gsar -o -i -s:x00%shlori: =:x00%:x00 -r:x00%shlmod: =:x00%:x00 "%~dpnx1" ) if "%usr%" EQU "1" ( gsar -o -i -s:x00%usrori: =%:x00 -r:x00%usrmod: =%:x00 "%~dpnx1" gsar -o -i -s:x90%usrori: =%:x00 -r:x90%usrmod: =%:x00 "%~dpnx1" gsar -o -i -s:x00%usrori: =:x00%:x00 -r:x00%usrmod: =:x00%:x00 "%~dpnx1" ) if "%wsk%" EQU "1" ( gsar -o -i -s:x00%wskori: =%:x00 -r:x00%wskmod: =%:x00 "%~dpnx1" gsar -o -i -s:x90%wskori: =%:x00 -r:x90%wskmod: =%:x00 "%~dpnx1" gsar -o -i -s:x00%wskori: =:x00%:x00 -r:x00%wskmod: =:x00%:x00 "%~dpnx1" ) if "%dex%" EQU "1" ( gsar -o -i -s:x00%dexori: =%:x00 -r:x00%dexmod: =%:x00 "%~dpnx1" gsar -o -i -s:x90%dexori: =%:x00 -r:x90%dexmod: =%:x00 "%~dpnx1" gsar -o -i -s:x00%dexori: =:x00%:x00 -r:x00%dexmod: =:x00%:x00 "%~dpnx1" ) if "%usp%" EQU "1" if "%USPOK%" EQU "1" ( gsar -o -i -s:x00%uspori: =%:x00 -r:x00%uspmod: =%:x00 "%~dpnx1" gsar -o -i -s:x90%uspori: =%:x00 -r:x90%uspmod: =%:x00 "%~dpnx1" gsar -o -i -s:x00%uspori: =:x00%:x00 -r:x00%uspmod: =:x00%:x00 "%~dpnx1" ) :nop if "%PFLAG%" EQU "1" peflags --bigaddr=true "%~dpnx1" pehdr-lite "%~dpnx1" -subsysver 5.1 echo. if "%~x1" EQU ".exe" if "%LDD%" EQU "1" ldd "%~dpnx1" ::TODO make exclusion for common ms vc runtime, usually 6.0 enforced in vc 120 above, ::but it can be as early as vc 80 aka vista sdk, these CRTs should never be patched...
tumagonx/XomPie
xpatcher.cmd
bat
lgpl-3.0
5,635
@echo off REM EVS *requires* .NET compiler version 6.0 or higher and Framework version not less than 4.5. "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\amd64\MSBuild.exe" ..\Source\EasyVesselSwitch.csproj /t:Clean,Build /p:Configuration=Release
ihsoft/EasyVesselSwitch
Tools/make_binary.cmd
bat
unlicense
283
../node_modules/forever/bin/forever stop Slave.js
GuillaumeDua/GRSM
Scripts/StopHiddenSlave.bat
bat
apache-2.0
50
REM Assumes that $GUROBI_HOME$ and $GRB_LICENSE_FILE$ are set and that maven is installed and on the path set maven_bin="mvn" for /f "tokens=1,2 delims==" %%a in ('findstr /B VERSION %GRB_LICENSE_FILE%') do set GRB_VER_NAME=%%a&set GRB_VER=%%b echo Found Gurobi Version: %GRB_VER% if not "%GRB_VER%"=="6" ( echo ERROR: Gurobi Version 6 is required ) else ( call %maven_bin% install:install-file -Dfile=%GUROBI_HOME%/lib/gurobi.jar -DgroupId=gurobi -DartifactId=gurobi -Dversion=6.5 -Dpackaging=jar echo Added gurobi.jar to local maven repository. call %maven_bin% clean )
hwang207/mpg_java
mpg_java/install_gurobi_maven_win.bat
bat
apache-2.0
577
escript filter_dwells %*
pentlandedge/s4607_extra
filter_dwells.bat
bat
apache-2.0
25
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pysemeels.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pysemeels.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
drix00/pysemeels
docs/make.bat
bat
apache-2.0
6,707
"c:\program files\matlab\r2007b\sys\lcc\bin\lccmake" -f hil14_test_sfun.lmk
NIVeriStandAdd-Ons/ECU-HIL-Demo
Plant Model/sfprj/build/hil14_test/sfun/src/hil14_test_sfun.bat
bat
bsd-2-clause
76
cmd_arch/arm/mach-msm/msm-buspm-dev.ko := /home/friedrich420/kernel/arm-eabi-5.2-A15/bin/arm-eabi-ld -EL -r -T /home/friedrich420/kernel/note4/KernelN910P-5_1_1SOURCE4_LINUXUPDATES/scripts/module-common.lds --build-id -o arch/arm/mach-msm/msm-buspm-dev.ko arch/arm/mach-msm/msm-buspm-dev.o arch/arm/mach-msm/msm-buspm-dev.mod.o
friedrich420/Sprint-Note-4-Android-5.1.1-Kernel
arch/arm/mach-msm/.msm-buspm-dev.ko.cmd
bat
gpl-2.0
330
cmd_crypto/crypto.o := /media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Samsung/TrendPlus/GT-S7580_JB_Opensource/rk-prebuilts/bin/arm-eabi-ld.bfd -EL -r -o crypto/crypto.o crypto/api.o crypto/cipher.o crypto/compress.o
EPDCenterSpain/kernel_Archos_97_Titan
crypto/.crypto.o.cmd
bat
gpl-2.0
236
:: This script finds the tests of the specified type in the repository and run them using nunit-console. :: It is horrendously slow, and there *will* be a better way to do this. echo Always remember to compile before running tests this way. :: Enables use of the !var! syntax. setlocal enabledelayedexpansion set fastTestSuffix=Test.Fast.dll set slowTestSuffix=Test.Slow.dll set repositoryRoot=%CD%\..\ set nunitConsoleLocation=!repositoryroot!src\packages\NUnit.Runners.2.6.0.12051\tools\nunit-console-x86.exe set slowTestCategories=Slow set fastTestCategories=Fast set teststorun=%1 @echo off set nunitCommand=!nunitConsoleLocation! if !teststorun! == "f" ( set suffix=!fastTestSuffix! set testCategoriesToExclude=!slowTestCategories! echo Running fast tests... ) else ( set suffix=!slowTestSuffix! set testCategoriesToExclude=!fastTestCategories! echo Running slow tests... ) FOR /F "DELIMS==" %%d in ('DIR "!repositoryRoot!src\" /AD /B') DO ( set directory=!repositoryRoot!src\%%d\bin\Debug\ for /F "delims==" %%f in ('DIR "!directory!" /B') do ( echo %%f|findstr /i !suffix! >nul: if not !errorlevel!==1 ( echo %%f|findstr /i !suffix!.config >nul: if !errorlevel!==1 (set nunitCommand=!nunitCommand! !directory!%%f) ) ) ) call %nunitCommand% /nologo /exclude:!testCategoriesToExclude!,WIP
benaston/NFeature
build/run-tests.bat
bat
gpl-3.0
1,324
universe = vanilla executable = job_core_io.pl output = job_core_input_van.out error = job_core_input_van.err log = job_core_input_van.log input = job_core_input.in transfer_files = NEVER Notification = NEVER queue
htcondor/htcondor
src/condor_tests/job_core_input_van.cmd
bat
apache-2.0
221
@echo off REM Set following to python version you want to use REM Otherwise can comment out... set PYTHONBIN=c:\Python27-32bit %PYTHONBIN%\python.exe %PYTHONBIN%\Lib\pydoc.py -w picoscope %PYTHONBIN%\python.exe %PYTHONBIN%\Lib\pydoc.py -w picoscope.picobase %PYTHONBIN%\python.exe %PYTHONBIN%\Lib\pydoc.py -w picoscope.ps5000a %PYTHONBIN%\python.exe %PYTHONBIN%\Lib\pydoc.py -w picoscope.ps6000 move *.html doc\.
ElOceanografo/pico-python
makedocs.bat
bat
bsd-2-clause
412
echo "Generating RoboticsAnimatSim CodeBlocks Solution" ..\..\..\bin\premake4m --os=linux --file=Solution.lua codeblocks TIMEOUT /T 2 ..\..\..\bin\fart *.cbp "C:/Projects/AnimatLabSDK/AnimatLabPublicSource/include" "../../../include" TIMEOUT /T 2 ..\..\..\bin\fart *.cbp "C:/Projects/AnimatLabSDK/AnimatLabPublicSource/Libraries/StdUtils" "../../../Libraries/StdUtils" TIMEOUT /T 2 ..\..\..\bin\fart *.cbp "C:/Projects/AnimatLabSDK/AnimatLabPublicSource/Libraries/AnimatSim" "../../../Libraries/AnimatSim" TIMEOUT /T 2 ..\..\..\bin\fart *.cbp "C:/Projects/AnimatLabSDK/AnimatLabPublicSource/Libraries/RoboticsAnimatSim" "../../../Libraries/RoboticsAnimatSim" TIMEOUT /T 2 ..\..\..\bin\fart *.cbp "C:/Projects/AnimatLabSDK/AnimatLabPublicSource/bin" "../../../bin" TIMEOUT /T 2 ..\..\..\bin\fart *.cbp "C:/Projects/AnimatLabSDK/3rdParty/stlsoft-1.9.117/include" "../../../../3rdParty/stlsoft-1.9.117/include" TIMEOUT /T 2 ..\..\..\bin\fart *.cbp "C:/Projects/AnimatLabSDK/3rdParty/DynamixelSDK/linux/include" "../../../../3rdParty/DynamixelSDK/linux/include" TIMEOUT /T 2 ..\..\..\bin\fart *.cbp "C:/Projects/AnimatLabSDK/3rdParty/openFrameworksArduino/src" "../../../../3rdParty/openFrameworksArduino/src" @pause
NeuroRoboticTech/AnimatLabPublicSource
Libraries/RoboticsAnimatSim/Projects_CodeBlocks/GenerateSolution.bat
bat
bsd-3-clause
1,214
@ECHO OFF REM program.exe [object name] [sequence name] [file extension for images:"jpg"] [num of particles:1] [AR param:0.0] [threshold Neff:0.1] [edgeSmoothSize:1] [cannyLow:20] [cannyHigh:40] [sampleStep:0.005] [maxD:32] [dullEdge:0] [threshold for ransac:0] [noiseRateLow:0.001] [noiseRateHigh:0.01] [detSave:"."] [threshold for FDCM:0.2] ::set obj=tea_box ::set seq=seq_tea_box_synth_wbg_01 set imgext=png set N=1 set ARparam=0.0 set Neff=0.1 set edgeSmoothSize=1 set cannyLow=20 set cannyHigh=40 REM general obj > 0.005 (5mm), car door > 0.05 (5cm) ::set sampleStep=0.005 set sampleStep=0.002 REM general obj > 32, cardoor > 16 set maxD=32 REM teabox, opencvbook > 0, cardoor, starbucscup > 1 set dullEdge=0 REM 0 or 20.0 set ransacTh=0.0 set destSave=. set noiseRateLow=0.0005 set noiseRateHigh=0.005 REM N(1)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(0)================================= REM N(100)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(0)=============================== REM N(100)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(20)============================== REM N(100)_AR(0.5)_Neff(0.0)_smooth(1)_ransac(0)=============================== REM N(100)_AR(0.5)_Neff(0.0)_smooth(1)_ransac(20)============================== REM set destSave=G:\IJRR11_exp\03182011_synth REM set destSave=G:\IJRR11_exp\03202011_synth REM set destSave=G:\IJRR11_exp\03212011_synth REM set destSave=G:\IJRR11_exp\03222011_synth_origAR set destSave=G:\IJRR11_exp\03232011_synth_origAR REM tex_box set obj=tea_box set seq1=seq_%obj%_synth_wbg_01 set seq2=seq_%obj%_synth_ebg_01 set seq3=seq_%obj%_synth_hbg_01 REM N(1)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(0)================================= set N=1 set ARparam=0.0 set Neff=0.0 set ransacTh=0.0 ::edgeBasedTracker_IRLS.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_IRLS.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_IRLS.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(0)=============================== set N=100 set ARparam=0.0 set Neff=0.0 set ransacTh=0.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(20)============================== set N=100 set ARparam=0.0 set Neff=0.0 set ransacTh=20.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.5)_Neff(0.0)_smooth(1)_ransac(0)=============================== set N=100 set ARparam=0.5 set Neff=0.0 set ransacTh=0.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.5)_Neff(0.0)_smooth(1)_ransac(20)============================== set N=100 set ARparam=0.5 set Neff=0.0 set ransacTh=20.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM opencvbook set obj=opencvbook set seq1=seq_%obj%_synth_wbg_01 set seq2=seq_%obj%_synth_ebg_01 set seq3=seq_%obj%_synth_hbg_01 REM N(1)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(0)================================= set N=1 set ARparam=0.0 set Neff=0.0 set ransacTh=0.0 ::edgeBasedTracker_IRLS.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_IRLS.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_IRLS.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(0)=============================== set N=100 set ARparam=0.0 set Neff=0.0 set ransacTh=0.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(20)============================== set N=100 set ARparam=0.0 set Neff=0.0 set ransacTh=20.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.5)_Neff(0.0)_smooth(1)_ransac(0)=============================== set N=100 set ARparam=0.5 set Neff=0.0 set ransacTh=0.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.5)_Neff(0.0)_smooth(1)_ransac(20)============================== set N=100 set ARparam=0.5 set Neff=0.0 set ransacTh=20.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM starbucks_cup set obj=starbucks_cup set seq1=seq_%obj%_synth_wbg_01 set seq2=seq_%obj%_synth_ebg_01 set seq3=seq_%obj%_synth_hbg_01 set dullEdge=1 REM N(1)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(0)================================= set N=1 set ARparam=0.0 set Neff=0.0 set ransacTh=0.0 ::edgeBasedTracker_IRLS.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_IRLS.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_IRLS.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(0)=============================== set N=100 set ARparam=0.0 set Neff=0.0 set ransacTh=0.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(20)============================== set N=100 set ARparam=0.0 set Neff=0.0 set ransacTh=20.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.5)_Neff(0.0)_smooth(1)_ransac(0)=============================== set N=100 set ARparam=0.5 set Neff=0.0 set ransacTh=0.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.5)_Neff(0.0)_smooth(1)_ransac(20)============================== set N=100 set ARparam=0.5 set Neff=0.0 set ransacTh=20.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM GMcardoor set obj=GMcardoor set seq1=seq_%obj%_synth_wbg_01 set seq2=seq_%obj%_synth_ebg_01 set seq3=seq_%obj%_synth_hbg_01 set dullEdge=0 set sampleStep=0.02 REM N(1)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(0)================================= set N=1 set ARparam=0.0 set Neff=0.0 set ransacTh=0.0 ::edgeBasedTracker_IRLS.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_IRLS.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_IRLS.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(0)=============================== set N=100 set ARparam=0.0 set Neff=0.0 set ransacTh=0.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.0)_Neff(0.0)_smooth(1)_ransac(20)============================== set N=100 set ARparam=0.0 set Neff=0.0 set ransacTh=20.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.5)_Neff(0.0)_smooth(1)_ransac(0)=============================== set N=100 set ARparam=0.5 set Neff=0.0 set ransacTh=0.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% REM N(100)_AR(0.5)_Neff(0.0)_smooth(1)_ransac(20)============================== set N=100 set ARparam=0.5 set Neff=0.0 set ransacTh=20.0 edgeBasedTracker_PF.exe %obj% %seq1% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% ::edgeBasedTracker_PF.exe %obj% %seq2% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave% edgeBasedTracker_PF.exe %obj% %seq3% %imgext% %N% %ARparam% %Neff% %edgeSmoothSize% %cannyLow% %cannyHigh% %sampleStep% %maxD% %dullEdge% %ransacTh% %noiseRateLow% %noiseRateHigh% %destSave%
CognitiveRobotics/object_tracking_2D
scripts/cc_exe_ijrr11_synth_b.cmd
bat
bsd-3-clause
18,852
executable = /bin/echo arguments = OK universe = scheduler output = $(job).out error = $(job).err log = submit-I.log Notification = NEVER queue
htcondor/htcondor
src/condor_tests/job_dagman_splice-I.cmd
bat
apache-2.0
175
python -m ep.compare TestSet5 CellStar Tracker
Fafa87/EP
examples/COMPARE_TS5.bat
bat
mit
47
set DEBUG=UserLogon.* & nodemon
jarvisji/NodejsDemos
UserLogon/serve.cmd
bat
mit
31
@rem @rem The MIT License (MIT) @rem @rem Copyright (c) 2014 Kristian Kutin @rem @rem Permission is hereby granted, free of charge, to any person obtaining a copy @rem of this software and associated documentation files (the "Software"), to deal @rem in the Software without restriction, including without limitation the rights @rem to use, copy, modify, merge, publish, distribute, sublicense, and/or sell @rem copies of the Software, and to permit persons to whom the Software is @rem furnished to do so, subject to the following conditions: @rem @rem The above copyright notice and this permission notice shall be included in all @rem copies or substantial portions of the Software. @rem @rem THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR @rem IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @rem FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE @rem AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER @rem LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, @rem OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE @rem SOFTWARE. @rem @Echo Off @rem ================================================================================ @rem === @rem === void main() @rem === @rem === This script sets up the environment for SonarQube and starts SonarQube. @rem === set "initializerPath=%~dp0" set initializerRunner=setEnv.bat set environmentCheck=checkEnv.bat set sonarVersion=5.3 set "sonarPath=C:\sonarqube-6.7.7\bin\windows-x86-64" set sonarRunner=StartSonar.bat set "windowTitle=SonarQube %sonarVersion%" title %windowTitle% cd /D "%initializerPath%" call %initializerRunner% 2>nul if %ERRORLEVEL%==0 ( rem OK ) else ( echo ERROR %ERRORLEVEL%: The environment couldn't be set up! >&2 pause exit /b %ERRORLEVEL% ) call %environmentCheck% 2>nul if %ERRORLEVEL%==0 ( rem OK ) else ( echo ERROR %ERRORLEVEL%: The environment couldn't be set up! >&2 pause exit /b %ERRORLEVEL% ) cd /D "%sonarPath%" 2>nul if %ERRORLEVEL%==0 ( rem OK ) else ( echo ERROR %ERRORLEVEL%: The path to sonar ^(%sonarPath%^) is invalid! >&2 pause exit /b %ERRORLEVEL% ) echo. echo. call %sonarRunner% if %ERRORLEVEL%==0 ( rem OK echo ^(%ERRORLEVEL%^) ) else ( if %ERRORLEVEL%==130 ( echo ^(%ERRORLEVEL%^) Shutdown by Ctrl+C. ) else ( echo ERROR %ERRORLEVEL%: An error occurred while invoking the sonar runner! >&2 pause exit /b %ERRORLEVEL% ) ) pause set initializerPath= set initializerRunner= set sonarVersion= set sonarPath= set sonarRunner= set windowTitle=
gammalgris/batch-utilities
environments/sonarqube/startSonar.bat
bat
mit
2,653
@ECHO OFF powershell -NoProfile -ExecutionPolicy Bypass -Command "& '.\build.ps1'" -Target DeployToS3 PAUSE
gniriki/gniriki.com
deploy.bat
bat
mit
107
bcdedit /set {bootmgr} displaybootmenu yes
Ianonn21/vm-utils
scripts/legacy-bootmenu-enable.cmd
bat
mit
42
c:\centralticket\CentralTicket.exe //IS ^ --Install="C:\centralticket\CentralTicket.exe" ^ --Jvm=auto --Startup=auto --StartMode=jvm --StopMode=jvm ^ --Classpath="C:\centralticket\centralticket-1.0-SNAPSHOT-jar-with-dependencies.jar" ^ --StartClass="com.quicktravel.centralticket.App" --StartMethod="start" ^ --StartParams="443;keystore.jks;password" ^ --StopClass="com.quicktravel.centralticket.App" --StopMethod="stop" ^ --LogPath="c:\centralticket\logs" --LogLevel="Debug" ^ --StdOutput=auto --StdError=auto ^ --StopTimeout=1
sealink/central_ticket
scripts/install.bat
bat
mit
547
call "mexopts.bat" nmake -f untitled_sfun.mak
jhonantans/TG
Mayara/Códigos/slprj/_sfprj/untitled/_self/sfun/src/untitled_sfun.bat
bat
mit
46
cmd_drivers/mtd/tests/mtd_stresstest.ko := /media/android_source/CyanogenMod/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -T /media/android_source/qrd-gb-dsds-7225/kernel/scripts/module-common.lds --build-id -o drivers/mtd/tests/mtd_stresstest.ko drivers/mtd/tests/mtd_stresstest.o drivers/mtd/tests/mtd_stresstest.mod.o
freebsdmax/gsmart1315_kernel
drivers/mtd/tests/.mtd_stresstest.ko.cmd
bat
gpl-2.0
351
cmd_net/ipv4/xfrm4_mode_transport.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o net/ipv4/xfrm4_mode_transport.ko net/ipv4/xfrm4_mode_transport.o net/ipv4/xfrm4_mode_transport.mod.o
avareldalton85/rpi2-linux-rt
net/ipv4/.xfrm4_mode_transport.ko.cmd
bat
gpl-2.0
287
cmd_libbb/mode_string.o := arm-linux-musleabihf-gcc -Wp,-MD,libbb/.mode_string.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -g -O0 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(mode_string)" -D"KBUILD_MODNAME=KBUILD_STR(mode_string)" -c -o libbb/mode_string.o libbb/mode_string.c deps_libbb/mode_string.o := \ libbb/mode_string.c \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/assert.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/features.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/stat.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/alltypes.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stat.h \ include/libbb.h \ $(wildcard include/config/feature/shadowpasswds.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/feature/utmp.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/xz.h) \ $(wildcard include/config/feature/seamless/lzma.h) \ $(wildcard include/config/feature/seamless/bz2.h) \ $(wildcard include/config/feature/seamless/gz.h) \ $(wildcard include/config/feature/seamless/z.h) \ $(wildcard include/config/feature/check/names.h) \ $(wildcard include/config/feature/prefer/applets.h) \ $(wildcard include/config/long/opts.h) \ $(wildcard include/config/feature/getopt/long.h) \ $(wildcard include/config/feature/pidfile.h) \ $(wildcard include/config/feature/syslog.h) \ $(wildcard include/config/feature/individual.h) \ $(wildcard include/config/echo.h) \ $(wildcard include/config/printf.h) \ $(wildcard include/config/test.h) \ $(wildcard include/config/kill.h) \ $(wildcard include/config/chown.h) \ $(wildcard include/config/ls.h) \ $(wildcard include/config/xxx.h) \ $(wildcard include/config/route.h) \ $(wildcard include/config/feature/hwib.h) \ $(wildcard include/config/desktop.h) \ $(wildcard include/config/feature/crond/d.h) \ $(wildcard include/config/use/bb/crypt.h) \ $(wildcard include/config/feature/adduser/to/group.h) \ $(wildcard include/config/feature/del/user/from/group.h) \ $(wildcard include/config/ioctl/hex2str/error.h) \ $(wildcard include/config/feature/editing.h) \ $(wildcard include/config/feature/editing/history.h) \ $(wildcard include/config/feature/editing/savehistory.h) \ $(wildcard include/config/feature/tab/completion.h) \ $(wildcard include/config/feature/username/completion.h) \ $(wildcard include/config/feature/editing/vi.h) \ $(wildcard include/config/feature/editing/save/on/exit.h) \ $(wildcard include/config/pmap.h) \ $(wildcard include/config/feature/show/threads.h) \ $(wildcard include/config/feature/ps/additional/columns.h) \ $(wildcard include/config/feature/topmem.h) \ $(wildcard include/config/feature/top/smp/process.h) \ $(wildcard include/config/killall.h) \ $(wildcard include/config/pgrep.h) \ $(wildcard include/config/pkill.h) \ $(wildcard include/config/pidof.h) \ $(wildcard include/config/sestatus.h) \ $(wildcard include/config/unicode/support.h) \ $(wildcard include/config/feature/mtab/support.h) \ $(wildcard include/config/feature/clean/up.h) \ $(wildcard include/config/feature/devfs.h) \ include/platform.h \ $(wildcard include/config/werror.h) \ $(wildcard include/config/big/endian.h) \ $(wildcard include/config/little/endian.h) \ $(wildcard include/config/nommu.h) \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/byteswap.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/endian.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdbool.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/unistd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/posix.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/ctype.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/dirent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/inttypes.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netdb.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netinet/in.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdio.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdlib.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/alloca.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdarg.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stddef.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/string.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/strings.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/libgen.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/poll.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/select.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/sysmacros.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/wait.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/param.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/pwd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/grp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/mntent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statvfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmpx.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/locale.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ libbb/mode_string.o: $(deps_libbb/mode_string.o) $(deps_libbb/mode_string.o):
ThinkIntegrate/busybox
libbb/.mode_string.o.cmd
bat
gpl-2.0
11,495
cmd_drivers/acpi/acpica/built-in.o := ld -m elf_i386 -r -o drivers/acpi/acpica/built-in.o drivers/acpi/acpica/acpi.o
madhwang/linuxKernel
drivers/acpi/acpica/.built-in.o.cmd
bat
gpl-2.0
121
@echo off rd /s /q C:\Users\Bailm\AppData\Roaming\.emacs.d mklink /d C:\Users\Bailm\AppData\Roaming\.emacs.d E:\works\software\Emacs\.emacs.d pause
Billin9/dotfiles
install/Windows/environment-variable.bat
bat
gpl-2.0
155
cmd_mm/vmstat.o := arm-linux-gnueabihf-gcc -Wp,-MD,mm/.vmstat.o.d -nostdinc -isystem /usr/lib/gcc/arm-linux-gnueabihf/4.6/include -I/home/tyler/dev/rk3188/tylermk908/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-rk3188/include -Iarch/arm/plat-rk/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -marm -fno-dwarf2-cfi-asm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -Wno-unused-but-set-variable -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -DCC_HAVE_ASM_GOTO -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(vmstat)" -D"KBUILD_MODNAME=KBUILD_STR(vmstat)" -c -o mm/vmstat.o mm/vmstat.c source_mm/vmstat.o := mm/vmstat.c deps_mm/vmstat.o := \ $(wildcard include/config/vm/event/counters.h) \ $(wildcard include/config/hotplug.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/cmpxchg/local.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/transparent/hugepage.h) \ $(wildcard include/config/vm/events/counters.h) \ $(wildcard include/config/debug/fs.h) \ include/linux/fs.h \ $(wildcard include/config/security.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/fsnotify.h) \ $(wildcard include/config/ima.h) \ $(wildcard include/config/fs/posix/acl.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/blk_types.h \ $(wildcard include/config/blk/dev/integrity.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/arch/dma/addr/t/64bit.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/posix_types.h \ include/linux/linkage.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/linkage.h \ include/linux/wait.h \ $(wildcard include/config/lockdep.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/const.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/typecheck.h \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/linux/bitops.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/bitops.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/system.h \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/cpu/32v6k.h) \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/v6.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/irqflags.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/hwcap.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/arch_hweight.h \ include/asm-generic/bitops/const_hweight.h \ include/asm-generic/bitops/lock.h \ include/asm-generic/bitops/le.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /usr/lib/gcc/arm-linux-gnueabihf/4.6/include/stdarg.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/printk.h \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ include/linux/init.h \ $(wildcard include/config/modules.h) \ include/linux/dynamic_debug.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/div64.h \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/prove/rcu.h) \ include/linux/rwlock_types.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/spinlock.h \ $(wildcard include/config/thumb2/kernel.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/processor.h \ $(wildcard include/config/have/hw/breakpoint.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/arm/errata/754327.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/hw_breakpoint.h \ include/linux/rwlock.h \ include/linux/spinlock_api_smp.h \ $(wildcard include/config/inline/spin/lock.h) \ $(wildcard include/config/inline/spin/lock/bh.h) \ $(wildcard include/config/inline/spin/lock/irq.h) \ $(wildcard include/config/inline/spin/lock/irqsave.h) \ $(wildcard include/config/inline/spin/trylock.h) \ $(wildcard include/config/inline/spin/trylock/bh.h) \ $(wildcard include/config/inline/spin/unlock.h) \ $(wildcard include/config/inline/spin/unlock/bh.h) \ $(wildcard include/config/inline/spin/unlock/irq.h) \ $(wildcard include/config/inline/spin/unlock/irqrestore.h) \ include/linux/rwlock_api_smp.h \ $(wildcard include/config/inline/read/lock.h) \ $(wildcard include/config/inline/write/lock.h) \ $(wildcard include/config/inline/read/lock/bh.h) \ $(wildcard include/config/inline/write/lock/bh.h) \ $(wildcard include/config/inline/read/lock/irq.h) \ $(wildcard include/config/inline/write/lock/irq.h) \ $(wildcard include/config/inline/read/lock/irqsave.h) \ $(wildcard include/config/inline/write/lock/irqsave.h) \ $(wildcard include/config/inline/read/trylock.h) \ $(wildcard include/config/inline/write/trylock.h) \ $(wildcard include/config/inline/read/unlock.h) \ $(wildcard include/config/inline/write/unlock.h) \ $(wildcard include/config/inline/read/unlock/bh.h) \ $(wildcard include/config/inline/write/unlock/bh.h) \ $(wildcard include/config/inline/read/unlock/irq.h) \ $(wildcard include/config/inline/write/unlock/irq.h) \ $(wildcard include/config/inline/read/unlock/irqrestore.h) \ $(wildcard include/config/inline/write/unlock/irqrestore.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic-long.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/current.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/tiny/rcu.h) \ $(wildcard include/config/tiny/preempt/rcu.h) \ $(wildcard include/config/debug/objects/rcu/head.h) \ $(wildcard include/config/preempt/rt.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/string.h \ include/linux/seqlock.h \ include/linux/completion.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/rcutree.h \ include/linux/rculist_bl.h \ include/linux/list_bl.h \ include/linux/bit_spinlock.h \ include/linux/path.h \ include/linux/stat.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/math64.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/pid.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ $(wildcard include/config/have/arch/mutex/cpu/relax.h) \ include/linux/capability.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ $(wildcard include/config/quota/netlink/interface.h) \ include/linux/errno.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/percpu_counter.h \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/smp.h \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/inet.h \ include/linux/fcntl.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/mm.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/ksm.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ $(wildcard include/config/hugetlbfs.h) \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/have/arch/pfn/valid.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/copy/fa.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/glue.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/have/tcm.h) \ $(wildcard include/config/arm/patch/phys/virt.h) \ $(wildcard include/config/arm/patch/phys/virt/16bit.h) \ arch/arm/mach-rk3188/include/mach/memory.h \ arch/arm/plat-rk/include/plat/memory.h \ include/linux/version.h \ arch/arm/mach-rk3188/include/mach/io.h \ arch/arm/plat-rk/include/plat/io.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/sizes.h \ include/asm-generic/sizes.h \ include/asm-generic/memory_model.h \ include/asm-generic/getorder.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/memory/hotremove.h) \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/sched/book.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/debug/virtual.h) \ include/linux/rbtree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/auxvec.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ include/linux/range.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/pgtable.h \ $(wildcard include/config/highpte.h) \ include/asm-generic/4level-fixup.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/proc-fns.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/glue-proc.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/mohawk.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6k.h) \ $(wildcard include/config/cpu/v7.h) \ arch/arm/mach-rk3188/include/mach/vmalloc.h \ arch/arm/include/generated/../../mach-rk30/include/mach/vmalloc.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/pgtable-hwdef.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/arch/uses/pg/uncached.h) \ $(wildcard include/config/memory/failure.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/s390.h) \ include/linux/huge_mm.h \ include/linux/vmstat.h \ include/linux/vm_event_item.h \ include/linux/module.h \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/event/tracing.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/constructors.h) \ $(wildcard include/config/debug/set/module/ronx.h) \ include/linux/kmod.h \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ $(wildcard include/config/freezer.h) \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/jiffies.h \ include/linux/timex.h \ include/linux/param.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/timex.h \ arch/arm/mach-rk3188/include/mach/timex.h \ arch/arm/plat-rk/include/plat/timex.h \ include/linux/sysctl.h \ include/linux/elf.h \ include/linux/elf-em.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/elf.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kobject_ns.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ppc64.h) \ include/linux/tracepoint.h \ include/linux/jump_label.h \ $(wildcard include/config/jump/label.h) \ include/linux/export.h \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/modversions.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/trace/define_trace.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/failslab.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slab.h) \ include/linux/slub_def.h \ $(wildcard include/config/slub/stats.h) \ $(wildcard include/config/slub/debug.h) \ include/linux/kmemleak.h \ $(wildcard include/config/debug/kmemleak.h) \ include/linux/cpu.h \ $(wildcard include/config/arch/cpu/probe/release.h) \ $(wildcard include/config/pm/sleep/smp.h) \ include/linux/sysdev.h \ include/linux/pm.h \ $(wildcard include/config/pm.h) \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/pm/runtime.h) \ include/linux/node.h \ $(wildcard include/config/memory/hotplug/sparse.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/lockup/detector.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/sched/autogroup.h) \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/fanotify.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/perf/events.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/cgroup/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/rcu/boost.h) \ $(wildcard include/config/compat/brk.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/irq/time/accounting.h) \ $(wildcard include/config/debug/stack/usage.h) \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/ipcbuf.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/sigcontext.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/proportions.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /home/tyler/dev/rk3188/tylermk908/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ $(wildcard include/config/timerfd.h) \ include/linux/timerqueue.h \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ $(wildcard include/config/user/ns.h) \ include/linux/key.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/writeback.h \ include/linux/compaction.h \ include/linux/proc_fs.h \ $(wildcard include/config/proc/devicetree.h) \ $(wildcard include/config/proc/kcore.h) \ include/linux/magic.h \ include/linux/seq_file.h \ include/linux/debugfs.h \ mm/vmstat.o: $(deps_mm/vmstat.o) $(deps_mm/vmstat.o):
tyeo098/MK908-Kernel-NAND
mm/.vmstat.o.cmd
bat
gpl-2.0
26,704
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=source set BUILDDIR=build set SPHINXPROJ=EasyAVR if "%1" == "" goto help %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% :end popd
dhowland/EasyAVR
docs/make.bat
bat
gpl-2.0
779
cmd_net/ipv6/xfrm6_state.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,net/ipv6/.xfrm6_state.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(xfrm6_state)" -D"KBUILD_MODNAME=KBUILD_STR(ipv6)" -c -o net/ipv6/xfrm6_state.o net/ipv6/xfrm6_state.c deps_net/ipv6/xfrm6_state.o := \ net/ipv6/xfrm6_state.c \ $(wildcard include/config/ipv6/mip6.h) \ include/net/xfrm.h \ $(wildcard include/config/xfrm/statistics.h) \ $(wildcard include/config/net/ns.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/xfrm/sub/policy.h) \ $(wildcard include/config/security/network/xfrm.h) \ $(wildcard include/config/xfrm.h) \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/xfrm/migrate.h) \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ include/linux/xfrm.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ include/linux/posix_types.h \ include/linux/stddef.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/posix_types.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ include/linux/spinlock.h \ $(wildcard include/config/smp.h) \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/typecheck.h \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/bitops.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/memory.h \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem.h) \ include/linux/const.h \ arch/arm/plat-pnx/include/mach/memory.h \ $(wildcard include/config/nkernel.h) \ $(wildcard include/config/mach/pnx/realloc.h) \ $(wildcard include/config/android/pmem.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/linux/linkage.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/linkage.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/irqflags.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/arm/thumb.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \ include/asm/nkern.h \ $(wildcard include/config/nkernel/console.h) \ include/asm/nk/f_nk.h \ include/asm/nk/nk_f.h \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/cmpxchg.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/lock.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/processor.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/printk/debug.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include/stdarg.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/ratelimit.h \ include/linux/param.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_printk.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/spinlock_up.h \ include/linux/spinlock_api_up.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/atomic.h \ include/asm-generic/atomic.h \ include/linux/skbuff.h \ $(wildcard include/config/nf/conntrack.h) \ $(wildcard include/config/bridge/netfilter.h) \ $(wildcard include/config/has/dma.h) \ $(wildcard include/config/net/sched.h) \ $(wildcard include/config/net/cls/act.h) \ $(wildcard include/config/ipv6/ndisc/nodetype.h) \ $(wildcard include/config/mac80211.h) \ $(wildcard include/config/net/dma.h) \ $(wildcard include/config/network/secmark.h) \ include/linux/time.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/seqlock.h \ include/linux/math64.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/div64.h \ include/linux/net.h \ include/linux/socket.h \ $(wildcard include/config/proc/fs.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/socket.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/sockios.h \ include/linux/sockios.h \ include/linux/uio.h \ include/linux/random.h \ include/linux/ioctl.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/irqnr.h \ include/linux/wait.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/current.h \ include/linux/fcntl.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/sysctl.h \ include/linux/textsearch.h \ include/linux/module.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/sysfs.h) \ include/linux/stat.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/stat.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/highmem.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/unevictable/lru.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/ifar.h) \ $(wildcard include/config/cpu/pabrt/noifar.h) \ include/asm-generic/page.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/errno.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/mutex-debug.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/cpumask.h \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/elf.h \ include/linux/elf-em.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/elf.h \ $(wildcard include/config/gcov/profile.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/marker.h \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slub_def.h \ $(wildcard include/config/slub/stats.h) \ $(wildcard include/config/slub/debug.h) \ include/linux/workqueue.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/jiffies.h \ include/linux/timex.h \ $(wildcard include/config/no/hz.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/timex.h \ arch/arm/plat-pnx/include/mach/timex.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/completion.h \ include/linux/rcuclassic.h \ $(wildcard include/config/rcu/cpu/stall/detector.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/module.h \ include/linux/err.h \ include/net/checksum.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/uaccess.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/checksum.h \ include/linux/in6.h \ include/linux/dmaengine.h \ $(wildcard include/config/dma/engine.h) \ include/linux/device.h \ $(wildcard include/config/debug/devres.h) \ include/linux/ioport.h \ include/linux/klist.h \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ include/linux/semaphore.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/device.h \ $(wildcard include/config/dmabounce.h) \ include/linux/pm_wakeup.h \ $(wildcard include/config/pm.h) \ include/linux/dma-mapping.h \ $(wildcard include/config/have/dma/attrs.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/dma-mapping.h \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/auxvec.h \ include/linux/prio_tree.h \ include/linux/rbtree.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ include/linux/scatterlist.h \ $(wildcard include/config/debug/sg.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/scatterlist.h \ include/linux/mm.h \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/shmem.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ include/linux/mmdebug.h \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/debug/virtual.h) \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable.h \ include/asm-generic/4level-fixup.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/proc-fns.h \ $(wildcard include/config/cpu/32.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6.h) \ $(wildcard include/config/cpu/v7.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/cpu-single.h \ arch/arm/plat-pnx/include/mach/vmalloc.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable-hwdef.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/ia64/uncached/allocator.h) \ $(wildcard include/config/s390.h) \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/io.h \ arch/arm/plat-pnx/include/mach/io.h \ arch/arm/plat-pnx/include/mach/hardware.h \ $(wildcard include/config/vaddr.h) \ arch/arm/plat-pnx/include/mach/cpu.h \ $(wildcard include/config/arch/pnx67xx.h) \ $(wildcard include/config/arch/pnx67xx/v2.h) \ $(wildcard include/config/arch/pnx6708.h) \ $(wildcard include/config/arch/pnx6711.h) \ $(wildcard include/config/arch/pnx6712.h) \ arch/arm/plat-pnx/include/mach/regs-pnx67xx.h \ $(wildcard include/config/offset.h) \ $(wildcard include/config/reg.h) \ $(wildcard include/config/value.h) \ include/asm-generic/dma-coherent.h \ $(wildcard include/config/have/generic/dma/coherent.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/pfkeyv2.h \ include/linux/ipsec.h \ include/linux/audit.h \ $(wildcard include/config/change.h) \ $(wildcard include/config/audit.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/x86/ptrace/bts.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ include/linux/capability.h \ $(wildcard include/config/security/file/capabilities.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/ipcbuf.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/signal.h \ include/asm-generic/signal.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/sigcontext.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/fs_struct.h \ include/linux/path.h \ include/linux/pid.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/security.h) \ include/linux/key.h \ include/linux/aio.h \ $(wildcard include/config/aio.h) \ include/linux/aio_abi.h \ include/net/sock.h \ include/linux/list_nulls.h \ include/linux/netdevice.h \ $(wildcard include/config/dcb.h) \ $(wildcard include/config/wlan/80211.h) \ $(wildcard include/config/ax25.h) \ $(wildcard include/config/mac80211/mesh.h) \ $(wildcard include/config/tr.h) \ $(wildcard include/config/net/ipip.h) \ $(wildcard include/config/net/ipgre.h) \ $(wildcard include/config/ipv6/sit.h) \ $(wildcard include/config/ipv6/tunnel.h) \ $(wildcard include/config/netpoll.h) \ $(wildcard include/config/net/poll/controller.h) \ $(wildcard include/config/wireless/ext.h) \ $(wildcard include/config/net/dsa.h) \ $(wildcard include/config/compat/net/dev/ops.h) \ $(wildcard include/config/net/dsa/tag/dsa.h) \ $(wildcard include/config/net/dsa/tag/trailer.h) \ $(wildcard include/config/netpoll/trap.h) \ include/linux/if.h \ include/linux/hdlc/ioctl.h \ include/linux/if_ether.h \ include/linux/if_packet.h \ include/linux/delay.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/delay.h \ include/net/net_namespace.h \ $(wildcard include/config/ipv6.h) \ $(wildcard include/config/ip/dccp.h) \ $(wildcard include/config/netfilter.h) \ $(wildcard include/config/net.h) \ include/net/netns/core.h \ include/net/netns/mib.h \ include/net/snmp.h \ include/linux/snmp.h \ include/net/netns/unix.h \ include/net/netns/packet.h \ include/net/netns/ipv4.h \ $(wildcard include/config/ip/multiple/tables.h) \ include/net/inet_frag.h \ include/net/netns/ipv6.h \ $(wildcard include/config/ipv6/multiple/tables.h) \ $(wildcard include/config/ipv6/mroute.h) \ $(wildcard include/config/ipv6/pimsm/v2.h) \ include/net/netns/dccp.h \ include/net/netns/x_tables.h \ include/linux/netfilter.h \ $(wildcard include/config/netfilter/debug.h) \ $(wildcard include/config/nf/nat/needed.h) \ include/linux/in.h \ include/net/flow.h \ include/linux/proc_fs.h \ $(wildcard include/config/proc/devicetree.h) \ $(wildcard include/config/proc/kcore.h) \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/radix-tree.h \ include/linux/fiemap.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/magic.h \ include/net/netns/conntrack.h \ $(wildcard include/config/nf/conntrack/events.h) \ include/net/netns/xfrm.h \ include/linux/seq_file_net.h \ include/linux/seq_file.h \ include/net/dsa.h \ include/linux/interrupt.h \ $(wildcard include/config/generic/irq/probe.h) \ include/linux/irqreturn.h \ include/linux/hardirq.h \ $(wildcard include/config/virt/cpu/accounting.h) \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/dynamic/ftrace.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/hardirq.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/irq.h \ arch/arm/plat-pnx/include/mach/irqs.h \ include/linux/irq_cpustat.h \ include/linux/security.h \ $(wildcard include/config/security/path.h) \ $(wildcard include/config/security/network.h) \ $(wildcard include/config/securityfs.h) \ include/linux/binfmts.h \ include/linux/shm.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/shmparam.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/shmbuf.h \ include/linux/msg.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/msgbuf.h \ include/linux/filter.h \ include/linux/rculist_nulls.h \ include/net/dst.h \ $(wildcard include/config/net/cls/route.h) \ include/linux/rtnetlink.h \ include/linux/netlink.h \ include/linux/if_link.h \ include/linux/if_addr.h \ include/linux/neighbour.h \ include/net/neighbour.h \ include/net/rtnetlink.h \ include/net/netlink.h \ include/net/ip.h \ $(wildcard include/config/inet.h) \ include/linux/ip.h \ include/net/inet_sock.h \ include/linux/jhash.h \ include/net/request_sock.h \ include/linux/bug.h \ include/net/netns/hash.h \ include/linux/ipv6.h \ $(wildcard include/config/ipv6/privacy.h) \ $(wildcard include/config/ipv6/router/pref.h) \ $(wildcard include/config/ipv6/route/info.h) \ $(wildcard include/config/ipv6/optimistic/dad.h) \ $(wildcard include/config/ipv6/subtrees.h) \ include/linux/icmpv6.h \ include/linux/tcp.h \ $(wildcard include/config/tcp/md5sig.h) \ include/net/inet_connection_sock.h \ include/linux/poll.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/poll.h \ include/asm-generic/poll.h \ include/net/inet_timewait_sock.h \ include/net/tcp_states.h \ include/net/timewait_sock.h \ include/linux/udp.h \ include/net/route.h \ include/net/inetpeer.h \ include/linux/in_route.h \ include/linux/route.h \ include/net/ipv6.h \ include/net/if_inet6.h \ include/net/ndisc.h \ include/net/ip6_fib.h \ include/linux/ipv6_route.h \ include/linux/netfilter_ipv6.h \ include/net/dsfield.h \ include/net/addrconf.h \ net/ipv6/xfrm6_state.o: $(deps_net/ipv6/xfrm6_state.o) $(deps_net/ipv6/xfrm6_state.o):
yohanes/Acer-BeTouch-E130-Linux-Kernel
net/ipv6/.xfrm6_state.o.cmd
bat
gpl-2.0
28,444
cmd_sound/pci/pcxhr/built-in.o := rm -f sound/pci/pcxhr/built-in.o; /home/spacecaker/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin/arm-none-eabi-ar rcs sound/pci/pcxhr/built-in.o
spacecaker/Stock_spacecaker_kernel
sound/pci/pcxhr/.built-in.o.cmd
bat
gpl-2.0
188
cmd_arch/x86/kernel/cpu/mcheck/p5.o := gcc -Wp,-MD,arch/x86/kernel/cpu/mcheck/.p5.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(p5)" -D"KBUILD_MODNAME=KBUILD_STR(p5)" -c -o arch/x86/kernel/cpu/mcheck/p5.o arch/x86/kernel/cpu/mcheck/p5.c deps_arch/x86/kernel/cpu/mcheck/p5.o := \ arch/x86/kernel/cpu/mcheck/p5.c \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/compiler.h \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc4.h \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/lsf.h) \ $(wildcard include/config/resources/64bit.h) \ include/linux/posix_types.h \ include/linux/stddef.h \ include/asm/posix_types.h \ $(wildcard include/config/x86/32.h) \ include/asm/posix_types_32.h \ include/asm/types.h \ $(wildcard include/config/x86/64.h) \ $(wildcard include/config/highmem64g.h) \ include/asm-generic/int-ll64.h \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/numa.h) \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ include/linux/linkage.h \ include/asm/linkage.h \ $(wildcard include/config/x86/alignment/16.h) \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ include/asm/bitops.h \ $(wildcard include/config/x86/cmov.h) \ include/asm/alternative.h \ $(wildcard include/config/smp.h) \ $(wildcard include/config/paravirt.h) \ include/asm/asm.h \ include/asm/cpufeature.h \ $(wildcard include/config/x86/invlpg.h) \ include/asm/required-features.h \ $(wildcard include/config/x86/minimum/cpu/family.h) \ $(wildcard include/config/math/emulation.h) \ $(wildcard include/config/x86/pae.h) \ $(wildcard include/config/x86/use/3dnow.h) \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/ext2-non-atomic.h \ include/asm-generic/bitops/le.h \ include/asm/byteorder.h \ $(wildcard include/config/x86/bswap.h) \ include/linux/byteorder/little_endian.h \ include/linux/byteorder/swab.h \ include/linux/byteorder/generic.h \ include/asm-generic/bitops/minix.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ include/linux/interrupt.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/high/res/timers.h) \ $(wildcard include/config/generic/irq/probe.h) \ $(wildcard include/config/proc/fs.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/asm/thread_info.h \ include/asm/thread_info_32.h \ $(wildcard include/config/4kstacks.h) \ $(wildcard include/config/debug/stack/usage.h) \ include/asm/page.h \ include/linux/const.h \ include/asm/page_32.h \ $(wildcard include/config/highmem4g.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/x86/3dnow.h) \ include/linux/string.h \ include/asm/string.h \ include/asm/string_32.h \ include/asm-generic/pgtable-nopmd.h \ include/asm-generic/pgtable-nopud.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/out/of/line/pfn/to/page.h) \ include/asm-generic/page.h \ include/asm/processor.h \ $(wildcard include/config/x86/vsmp.h) \ $(wildcard include/config/x86/ht.h) \ $(wildcard include/config/x86/debugctlmsr.h) \ include/asm/processor-flags.h \ include/asm/vm86.h \ $(wildcard include/config/vm86.h) \ include/asm/ptrace.h \ include/asm/ptrace-abi.h \ include/asm/segment.h \ include/asm/ds.h \ include/asm/math_emu.h \ include/asm/sigcontext.h \ include/asm/current.h \ include/asm/current_32.h \ include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/asm/system.h \ $(wildcard include/config/ia32/emulation.h) \ $(wildcard include/config/x86/ppro/fence.h) \ $(wildcard include/config/x86/oostore.h) \ include/asm/cmpxchg.h \ include/asm/cmpxchg_32.h \ $(wildcard include/config/x86/cmpxchg.h) \ $(wildcard include/config/x86/cmpxchg64.h) \ include/asm/nops.h \ $(wildcard include/config/mk7.h) \ $(wildcard include/config/x86/p6/nop.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/asm/irqflags.h \ $(wildcard include/config/debug/lock/alloc.h) \ include/asm/msr.h \ include/asm/msr-index.h \ include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/errno.h \ include/asm/desc_defs.h \ include/linux/personality.h \ include/linux/cpumask.h \ $(wildcard include/config/have/cpumask/of/cpu/map.h) \ $(wildcard include/config/hotplug/cpu.h) \ include/linux/bitmap.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/asm/cache.h \ $(wildcard include/config/x86/l1/cache/shift.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/irqreturn.h \ include/linux/hardirq.h \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/no/hz.h) \ include/linux/smp_lock.h \ $(wildcard include/config/lock/kernel.h) \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/debug/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ $(wildcard include/config/mm/owner.h) \ include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/capability.h \ include/linux/timex.h \ include/linux/time.h \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/prove/locking.h) \ include/asm/spinlock.h \ include/asm/atomic.h \ include/asm/atomic_32.h \ $(wildcard include/config/m386.h) \ include/asm-generic/atomic.h \ include/asm/rwlock.h \ include/linux/spinlock_api_smp.h \ include/linux/math64.h \ include/asm/div64.h \ include/asm/timex.h \ $(wildcard include/config/x86/elan.h) \ $(wildcard include/config/x86/rdc321x.h) \ include/asm/tsc.h \ $(wildcard include/config/x86/tsc.h) \ include/linux/jiffies.h \ include/linux/rbtree.h \ include/linux/nodemask.h \ $(wildcard include/config/highmem.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/mm_types.h \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/mmu.h) \ include/linux/auxvec.h \ include/asm/auxvec.h \ include/linux/prio_tree.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/asm/rwsem.h \ include/linux/completion.h \ include/linux/wait.h \ include/asm/mmu.h \ include/linux/mutex.h \ include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/smp.h \ include/asm/smp.h \ $(wildcard include/config/x86/local/apic.h) \ $(wildcard include/config/x86/io/apic.h) \ $(wildcard include/config/x86/32/smp.h) \ $(wildcard include/config/x86/64/smp.h) \ include/asm/mpspec.h \ $(wildcard include/config/mca.h) \ $(wildcard include/config/eisa.h) \ $(wildcard include/config/acpi.h) \ include/asm/mpspec_def.h \ include/asm-x86/mach-default/mach_mpspec.h \ include/asm/apic.h \ $(wildcard include/config/x86/good/apic.h) \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ include/linux/delay.h \ include/asm/delay.h \ include/asm/fixmap.h \ include/asm/fixmap_32.h \ $(wildcard include/config/x86/visws/apic.h) \ $(wildcard include/config/x86/f00f/bug.h) \ $(wildcard include/config/x86/cyclone/timer.h) \ $(wildcard include/config/pci/mmconfig.h) \ $(wildcard include/config/provide/ohci1394/dma/init.h) \ include/asm/acpi.h \ $(wildcard include/config/acpi/numa.h) \ include/acpi/pdc_intel.h \ include/asm/numa.h \ include/asm/numa_32.h \ include/asm/apicdef.h \ include/asm/kmap_types.h \ $(wildcard include/config/debug/highmem.h) \ include/asm/io_apic.h \ include/asm/pda.h \ include/asm-x86/mach-default/mach_apicdef.h \ include/linux/sem.h \ include/linux/ipc.h \ include/asm/ipcbuf.h \ include/linux/kref.h \ include/asm/sembuf.h \ include/linux/signal.h \ include/asm/signal.h \ include/asm-generic/signal.h \ include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/fs_struct.h \ include/linux/path.h \ include/linux/pid.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slabinfo.h) \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/asm/topology.h \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/x86/64/acpi/numa.h) \ include/asm-generic/topology.h \ include/asm/sparsemem.h \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ include/linux/rcuclassic.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/asm/seccomp.h \ include/asm/seccomp_32.h \ include/linux/unistd.h \ include/asm/unistd.h \ include/asm/unistd_32.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/param.h \ include/linux/resource.h \ include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/linux/hrtimer.h \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/latencytop.h \ include/linux/aio.h \ include/linux/workqueue.h \ include/linux/aio_abi.h \ include/linux/uio.h \ include/asm/hardirq.h \ include/asm/hardirq_32.h \ include/linux/irq.h \ $(wildcard include/config/s390.h) \ $(wildcard include/config/irq/per/cpu.h) \ $(wildcard include/config/irq/release/method.h) \ $(wildcard include/config/generic/pending/irq.h) \ $(wildcard include/config/irqbalance.h) \ $(wildcard include/config/auto/irq/affinity.h) \ $(wildcard include/config/generic/hardirqs/no//do/irq.h) \ include/asm/irq.h \ include/asm/irq_32.h \ include/asm-x86/mach-default/irq_vectors.h \ include/asm-x86/mach-default/irq_vectors_limits.h \ include/asm/irq_regs.h \ include/asm/irq_regs_32.h \ include/asm/hw_irq.h \ include/asm/hw_irq_32.h \ include/linux/profile.h \ $(wildcard include/config/profiling.h) \ include/asm/sections.h \ include/asm-generic/sections.h \ include/linux/irq_cpustat.h \ arch/x86/kernel/cpu/mcheck/mce.h \ include/asm/mce.h \ $(wildcard include/config/x86/mce/intel.h) \ $(wildcard include/config/x86/mce/amd.h) \ $(wildcard include/config/x86/mce.h) \ arch/x86/kernel/cpu/mcheck/p5.o: $(deps_arch/x86/kernel/cpu/mcheck/p5.o) $(deps_arch/x86/kernel/cpu/mcheck/p5.o):
namgk/kernel-tut
arch/x86/kernel/cpu/mcheck/.p5.o.cmd
bat
gpl-2.0
16,453
cmd_sound/soc/msm/snd-soc-apq8074.o := /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld -EL -r -o sound/soc/msm/snd-soc-apq8074.o sound/soc/msm/apq8074.o
Envious-Data/shinano-sirius_msm8974abpro
sound/soc/msm/.snd-soc-apq8074.o.cmd
bat
gpl-2.0
184
cmd_/home/yutingkao23/linuxcnc-add-hal-ethercat/src/limit2.o := ld -m elf_i386 -r -o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/limit2.o /home/yutingkao23/linuxcnc-add-hal-ethercat/src/objects/hal/components/limit2.o
CalvinHsu1223/LinuxCNC-EtherCAT-HAL-Driver
src/.limit2.o.cmd
bat
gpl-2.0
225
cmd_arch/arm/mach-msm/smd_debug.o := arm-linux-gnueabi-gcc -Wp,-MD,arch/arm/mach-msm/.smd_debug.o.d -nostdinc -isystem /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include -Iinclude -I/home/benoit/kernel_android/32/es209ra/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fno-dwarf2-cfi-asm -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(smd_debug)" -D"KBUILD_MODNAME=KBUILD_STR(smd_debug)" -c -o arch/arm/mach-msm/smd_debug.o arch/arm/mach-msm/smd_debug.c deps_arch/arm/mach-msm/smd_debug.o := \ arch/arm/mach-msm/smd_debug.c \ $(wildcard include/config/debug/fs.h) \ include/linux/debugfs.h \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/fsnotify.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/fs/posix/acl.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/linkage.h \ include/linux/wait.h \ $(wildcard include/config/lockdep.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/stddef.h \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/posix_types.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/processor.h \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/cpu/32v6k.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hwcap.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/msm.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/linux/typecheck.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irqflags.h \ include/asm-generic/cmpxchg-local.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitops.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/lock.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include/stdarg.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/ratelimit.h \ include/linux/param.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_debug.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/div64.h \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/spinlock_up.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/atomic.h \ include/asm-generic/atomic-long.h \ include/linux/spinlock_api_up.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/current.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/rcupdate.h \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/string.h \ include/linux/seqlock.h \ include/linux/completion.h \ include/linux/rcutree.h \ $(wildcard include/config/no/hz.h) \ include/linux/path.h \ include/linux/stat.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/math64.h \ include/linux/kobject.h \ $(wildcard include/config/hotplug.h) \ include/linux/sysfs.h \ include/linux/errno.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/kref.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/init.h \ $(wildcard include/config/modules.h) \ include/linux/pid.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/capability.h \ $(wildcard include/config/security/file/capabilities.h) \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/inet.h \ include/linux/fcntl.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/ctype.h \ arch/arm/mach-msm/include/mach/msm_iomap.h \ $(wildcard include/config/arch/msm7x30.h) \ $(wildcard include/config/arch/qsd8x50.h) \ $(wildcard include/config/arch/msm8x60.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sizes.h \ arch/arm/mach-msm/include/mach/msm_iomap-8x50.h \ $(wildcard include/config/mach/es209ra.h) \ $(wildcard include/config/msm/debug/uart.h) \ arch/arm/mach-msm/smd_private.h \ $(wildcard include/config/msm/smd/pkg4.h) \ $(wildcard include/config/msm/smd/pkg3.h) \ $(wildcard include/config/msm/n/way/smsm.h) \ arch/arm/mach-msm/smd_debug.o: $(deps_arch/arm/mach-msm/smd_debug.o) $(deps_arch/arm/mach-msm/smd_debug.o):
b8e5n/KTG-kernel_es209ra
arch/arm/mach-msm/.smd_debug.o.cmd
bat
gpl-2.0
10,910
#!ipxe sanboot --no-describe --drive 0x81
IWillFindYou/SecurityBootManager
utils/ipxe.cmd
bat
gpl-3.0
41
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 1>NUL 2>NUL if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\HMPy.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\HMPy.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
enriquecoronadozu/HMPy
docs/make.bat
bat
gpl-3.0
7,254
@ECHO OFF :: :: Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. :: For licensing, see LICENSE.html or http://ckeditor.com/license :: :: Generates .po translation files using JavaScript language files as source files. :: PO file can be used to update translations in CKEditor UI Translation Center: :: https://www.transifex.net/projects/p/ckeditor/ :: CLS ECHO. SET PLUGINS=(a11yhelp devtools placeholder specialchar uicolor) SET TARGETDIR=po :: Cleanup target folder IF NOT EXIST %TARGETDIR% GOTO :start SET /P ANSWER=The target directory ("%TARGETDIR%") already exists. Do you want to delete it (y/n)? if /i {%ANSWER%}=={y} (goto :yes) if /i {%ANSWER%}=={yes} (goto :yes) echo Target directory already exists ("%TARGETDIR%"), nothing to do. exit /b 1 :yes rmdir /S /Q %TARGETDIR% :start mkdir %TARGETDIR% :: Generate po file for core java -jar langtool/langtool.jar export -c=config -f=gettext -m=meta/ckeditor.core/meta.txt ../../_source/lang/ %TARGETDIR%/ckeditor.core/ :: Generate po files for plugins for %%P in %PLUGINS% do ( java -jar langtool/langtool.jar export -c=config -f=gettext -m=meta/ckeditor.plugin-%%P/meta.txt ../../_source/plugins/%%P/lang/ %TARGETDIR%/ckeditor.plugin-%%P/ )
kodene/MyBB_CKEditor
ckeditor/_dev/langtool/langtool_export_po.bat
bat
gpl-3.0
1,229
::!/bin/csh -f ::***************************************************************************** :: (c) Copyright 2009 Xilinx, Inc. All rights reserved. :: :: This file contains confidential and proprietary information :: of Xilinx, Inc. and is protected under U.S. and :: international copyright and other intellectual property :: laws. :: :: DISCLAIMER :: This disclaimer is not a license and does not grant any :: rights to the materials distributed herewith. Except as :: otherwise provided in a valid license issued to you by :: Xilinx, and to the maximum extent permitted by applicable :: law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND :: WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES :: AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING :: BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- :: INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and :: (2) Xilinx shall not be liable (whether in contract or tort, :: including negligence, or under any other theory of :: liability) for any loss or damage of any kind or nature :: related to, arising under or in connection with these :: materials, including for any direct, or any indirect, :: special, incidental, or consequential loss or damage :: (including loss of data, profits, goodwill, or any type of :: loss or damage suffered as a result of any action brought :: by a third party) even if such damage or loss was :: reasonably foreseeable or Xilinx had been advised of the :: possibility of the same. :: :: CRITICAL APPLICATIONS :: Xilinx products are not designed or intended to be fail- :: safe, or for use in any application requiring fail-safe :: performance, such as life-support or safety devices or :: systems, Class III medical devices, nuclear facilities, :: applications related to the deployment of airbags, or any :: other applications that could lead to death, personal :: injury, or severe property or environmental damage :: (individually and collectively, "Critical :: Applications"). Customer assumes the sole risk and :: liability of any use of Xilinx products in Critical :: Applications, subject only to applicable laws and :: regulations governing limitations on product liability. :: :: THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS :: PART OF THIS FILE AT ALL TIMES. :: :: **************************************************************************** :: ____ ____ :: / /\/ / :: /___/ \ / Vendor : Xilinx :: \ \ \/ Version : 3.92 :: \ \ Application : MIG :: / / Filename : ise_flow.bat :: /___/ /\ Date Last Modified : $Date: 2011/06/02 07:16:55 $ :: \ \ / \ Date Created : Fri Feb 06 2009 :: \___\/\___\ :: :: Device : Spartan-6 :: Design Name : DDR/DDR2/DDR3/LPDDR :: Purpose : Batch file to run PAR through ISE batch mode :: Reference : :: Revision History : :: **************************************************************************** call rem_files.bat echo Synthesis Tool: XST mkdir "../synth/__projnav" > ise_flow_results.txt mkdir "../synth/xst" >> ise_flow_results.txt mkdir "../synth/xst/work" >> ise_flow_results.txt xst -ifn ise_run.txt -ofn mem_interface_top.syr -intstyle ise >> ise_flow_results.txt ngdbuild -intstyle ise -dd ../synth/_ngo -uc ATLYS_DDR.ucf -p xc6slx45csg324-3 ATLYS_DDR.ngc ATLYS_DDR.ngd >> ise_flow_results.txt map -intstyle ise -detail -w -pr off -c 100 -o ATLYS_DDR_map.ncd ATLYS_DDR.ngd ATLYS_DDR.pcf >> ise_flow_results.txt par -w -intstyle ise -ol std ATLYS_DDR_map.ncd ATLYS_DDR.ncd ATLYS_DDR.pcf >> ise_flow_results.txt trce -e 100 ATLYS_DDR.ncd ATLYS_DDR.pcf >> ise_flow_results.txt bitgen -intstyle ise -f mem_interface_top.ut ATLYS_DDR.ncd >> ise_flow_results.txt echo done!
achan1989/In64
FPGA/SD_card_test.srcs/sources_1/ip/mig_v3_92_0/ATLYS_DDR/user_design/par/ise_flow.bat
bat
lgpl-3.0
3,821
set mainJar=lib\drools-solver-examples-${project.version}.jar set mainClass=org.drools.solver.examples.app.ExamplesApp echo "Usage: runExamples.bat" echo "For example: runExamples.bat" echo "Some notes:" echo "- Working dir should be the directory of this script." echo "- Java is recommended to be JDK and java 6 for optimal performance" echo "- The environment variable JAVA_HOME should be set to the JDK installation directory" echo " For example: set JAVA_HOME="C:\Program Files\Java\jdk1.6.0" echo echo "Starting examples app..." # -Xmx128M or less works too, but it might be slower %JAVA_HOME%\bin\java -server -Xmx256M -cp %mainJar% %mainClass%
bobmcwhirter/drools
drools-solver/src/main/assembly/scripts/runExamples.bat
bat
apache-2.0
655
@ECHO OFF REM A mongodb startup script echo "Initiate MongoDB service: Mongod" cd "C:\Program Files\MongoDB\Server\3.4\bin" start cmd /k mongod --port 27017 REM start cmd /k mongod --dbpath "C:\Program Files\MongoDB\data" --logappend --port 27017 echo "Waiting 5 seconds for server to initialize its statefulness..." timeout /t 5 echo "Initiate MongoDB terminal: Mongo" start cmd /k mongo.exe
hackmods/Script-Depot
batch/StartMongoDB.bat
bat
apache-2.0
413
@ECHO off set LUVI_PUBLISH_USER=virgo-agent-toolkit set LUVI_PUBLISH_REPO=luvi set GENERATOR=Visual Studio 12 reg query HKEY_CLASSES_ROOT\VisualStudio.DTE.14.0 >nul 2>nul IF %errorlevel%==0 set GENERATOR=Visual Studio 14 set GENERATOR64=%GENERATOR% Win64 for /f %%i in ('git describe') do set LUVI_TAG=%%i IF NOT "x%1" == "x" GOTO :%1 GOTO :build :regular ECHO "Building regular64" cmake -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithPCRE=ON -DWithLPEG=ON -DWithSharedPCRE=OFF -H. -Bbuild -G"%GENERATOR64%" GOTO :end :regular-asm ECHO "Building regular64 asm" cmake -DWithOpenSSLASM=ON -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithPCRE=ON -DWithLPEG=ON -DWithSharedPCRE=OFF -H. -Bbuild -G"%GENERATOR64%" GOTO :end :sigar ECHO "Building sigar64 asm" cmake -DWithSigar=ON -DWithOpenSSLASM=ON -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithLPEG=ON -DWithPCRE=ON -DWithSharedPCRE=OFF -H. -Bbuild -G"%GENERATOR64%" GOTO :end :regular32 ECHO "Building regular32" cmake -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithPCRE=ON -DWithLPEG=ON -DWithSharedPCRE=OFF -H. -Bbuild -G"%GENERATOR%" GOTO :end :regular32-asm ECHO "Building regular32 asm" cmake -DWithOpenSSLASM=ON -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithPCRE=ON -DWithLPEG=ON -DWithSharedPCRE=OFF -H. -Bbuild -G"%GENERATOR%" GOTO :end :sigar32 ECHO "Building sigar32 asm" cmake -DWithSigar=ON -DWithOpenSSLASM=ON -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithLPEG=ON -DWithPCRE=ON -DWithSharedPCRE=OFF -H. -Bbuild -G"%GENERATOR%" GOTO :end :tiny ECHO "Building tiny64" cmake -H. -Bbuild -G"%GENERATOR64%" GOTO :end :tiny32 ECHO "Building tiny32" cmake -H. -Bbuild -G"%GENERATOR%" GOTO :end :build IF NOT EXIST build CALL Make.bat regular cmake --build build --config Release -- /maxcpucount COPY build\Release\luvi.exe . GOTO :end :test IF NOT EXIST luvi.exe CALL Make.bat luvi.exe samples\test.app -- 1 2 3 4 luvi.exe samples\test.app -o test.exe test.exe 1 2 3 4 DEL /Q test.exe GOTO :end :winsvc IF NOT EXIST luvi.exe CALL Make.bat DEL /Q winsvc.exe luvi.exe samples\winsvc.app -o winsvc.exe GOTO :end :repl IF NOT EXIST luvi.exe CALL Make.bat DEL /Q repl.exe luvi.exe samples/repl.app -o repl.exe GOTO :end :clean IF EXIST build RMDIR /S /Q build IF EXIST luvi.exe DEL /F /Q luvi.exe GOTO :end :reset git submodule update --init --recursive git clean -f -d git checkout . GOTO :end :artifacts-tiny IF NOT EXIST artifacts MKDIR artifacts COPY build\Release\luvi.exe artifacts\luvi-tiny-Windows-amd64.exe COPY build\Release\luvi.lib artifacts\luvi-tiny-Windows-amd64.lib COPY build\Release\luvi_renamed.lib artifacts\luvi_renamed-tiny-Windows-amd64.lib GOTO :end :artifacts-tiny32 IF NOT EXIST artifacts MKDIR artifacts COPY build\Release\luvi.exe artifacts\luvi-tiny-Windows-ia32.exe COPY build\Release\luvi.lib artifacts\luvi-tiny-Windows-ia32.lib COPY build\Release\luvi_renamed.lib artifacts\luvi_renamed-tiny-Windows-ia32.lib GOTO :end :artifacts-regular :artifacts-regular-asm IF NOT EXIST artifacts MKDIR artifacts COPY build\Release\luvi.exe artifacts\luvi-regular-Windows-amd64.exe COPY build\Release\luvi.lib artifacts\luvi-regular-Windows-amd64.lib COPY build\Release\luvi_renamed.lib artifacts\luvi_renamed-regular-Windows-amd64.lib GOTO :end :artifacts-sigar IF NOT EXIST artifacts MKDIR artifacts COPY build\Release\luvi.exe artifacts\luvi-sigar-Windows-amd64.exe COPY build\Release\luvi.lib artifacts\luvi-sigar-Windows-amd64.lib COPY build\Release\luvi_renamed.lib artifacts\luvi_renamed-sigar-Windows-amd64.lib GOTO :end :artifacts-regular32 :artifacts-regular32-asm IF NOT EXIST artifacts MKDIR artifacts COPY build\Release\luvi.exe artifacts\luvi-regular-Windows-ia32.exe COPY build\Release\luvi.lib artifacts\luvi-regular-Windows-ia32.lib COPY build\Release\luvi_renamed.lib artifacts\luvi_renamed-regular-Windows-ia32.lib GOTO :end :artifacts-sigar32 IF NOT EXIST artifacts MKDIR artifacts COPY build\Release\luvi.exe artifacts\luvi-sigar-Windows-ia32.exe COPY build\Release\luvi.lib artifacts\luvi-sigar-Windows-ia32.lib COPY build\Release\luvi_renamed.lib artifacts\luvi_renamed-sigar-Windows-ia32.lib GOTO :end :publish-tiny CALL make.bat reset CALL make.bat tiny CALL make.bat test github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file luvi.exe --name luvi-tiny-Windows-amd64.exe github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file build\Release\luvi.lib --name luvi-tiny-Windows-amd64.lib github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file build\Release\luvi_renamed.lib --name luvi_renamed-tiny-Windows-amd64.lib GOTO :end :publish-tiny32 CALL make.bat reset CALL make.bat tiny32 CALL make.bat test github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file luvi.exe --name luvi-tiny-Windows-ia32.exe github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file build\Release\luvi.lib --name luvi-tiny-Windows-ia32.lib github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file build\Release\luvi_renamed.lib --name luvi_renamed-tiny-Windows-ia32.lib GOTO :end :publish-regular CALL make.bat reset CALL make.bat regular-asm CALL make.bat test github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file luvi.exe --name luvi-regular-Windows-amd64.exe github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file build\Release\luvi.lib --name luvi-regular-Windows-amd64.lib github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file build\Release\luvi_renamed.lib --name luvi_renamed-regular-Windows-amd64.lib GOTO :end :publish-sigar CALL make.bat reset CALL make.bat sigar CALL make.bat test github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file luvi.exe --name luvi-sigar-Windows-amd64.exe github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file build\Release\luvi.lib --name luvi-sigar-Windows-amd64.lib github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file build\Release\luvi_renamed.lib --name luvi_renamed-sigar-Windows-amd64.lib GOTO :end :publish-regular32 CALL make.bat reset CALL make.bat regular32-asm CALL make.bat test github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file luvi.exe --name luvi-regular-Windows-ia32.exe github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file build\Release\luvi.lib --name luvi-regular-Windows-ia32.lib github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file build\Release\luvi_renamed.lib --name luvi_renamed-regular-Windows-ia32.lib GOTO :end :publish-sigar32 CALL make.bat reset CALL make.bat sigar32 CALL make.bat test github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file luvi.exe --name luvi-sigar-Windows-ia32.exe github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file build\Release\luvi.lib --name luvi-sigar-Windows-ia32.lib github-release upload --user %LUVI_PUBLISH_USER% --repo %LUVI_PUBLISH_REPO% --tag %LUVI_TAG% --file build\Release\luvi_renamed.lib --name luvi_renamed-sigar-Windows-ia32.lib GOTO :end :publish CALL make.bat clean CALL make.bat publish-tiny CALL make.bat clean CALL make.bat publish-tiny32 CALL make.bat clean CALL make.bat publish-regular CALL make.bat clean CALL make.bat publish-regular32 :end
virgo-agent-toolkit/luvi
make.bat
bat
apache-2.0
7,746
@setlocal @if "%~2" == "" echo Usage: pdfWords in.pdf out.txt @set IN=%~1 @SET OUT=%~2 @set PDFBOX=C:\Program Files (x86)\PDFBox\pdfbox-app-1.7.1.jar java -jar "%PDFBOX%" ExtractText -console "%IN%" > "%OUT%"
oharasteve/eagle
samples/www/utilities/pdfWords.bat
bat
apache-2.0
213
protoc.exe message.proto --cpp_out=./ --java_out=../sdk/src pause
bubichain/blockchain
src/proto/protoc.bat
bat
apache-2.0
66
@ECHO OFF ::---------------------------------------------------------------------- :: @@product_full@@ startup script. ::---------------------------------------------------------------------- :: --------------------------------------------------------------------- :: Ensure IDE_HOME points to the directory where the IDE is installed. :: --------------------------------------------------------------------- SET IDE_BIN_DIR=%~dp0 FOR /F "delims=" %%i in ("%IDE_BIN_DIR%\..") DO SET IDE_HOME=%%~fi :: --------------------------------------------------------------------- :: Locate a JDK installation directory which will be used to run the IDE. :: Try (in order): @@product_uc@@_JDK, @@vm_options@@.jdk, ..\jre, JDK_HOME, JAVA_HOME. :: --------------------------------------------------------------------- SET JDK= IF EXIST "%@@product_uc@@_JDK%" SET JDK=%@@product_uc@@_JDK% IF EXIST "%JDK%" GOTO check SET BITS=64 SET USER_JDK64_FILE=%APPDATA%\@@product_vendor@@\@@system_selector@@\@@vm_options@@.jdk SET BITS= SET USER_JDK_FILE=%APPDATA%\@@product_vendor@@\@@system_selector@@\@@vm_options@@.jdk IF EXIST "%USER_JDK64_FILE%" ( SET /P JDK=<%USER_JDK64_FILE% ) ELSE ( IF EXIST "%USER_JDK_FILE%" SET /P JDK=<%USER_JDK_FILE% ) IF NOT "%JDK%" == "" ( IF NOT EXIST "%JDK%" SET JDK="%IDE_HOME%\%JDK%" IF EXIST "%JDK%" GOTO check ) IF "%PROCESSOR_ARCHITECTURE%" == "AMD64" ( IF EXIST "%IDE_HOME%\jbr" SET JDK=%IDE_HOME%\jbr IF EXIST "%JDK%" GOTO check ) IF EXIST "%IDE_HOME%\jre32" SET JDK=%IDE_HOME%\jre32 IF EXIST "%JDK%" GOTO check IF EXIST "%JDK_HOME%" SET JDK=%JDK_HOME% IF EXIST "%JDK%" GOTO check IF EXIST "%JAVA_HOME%" SET JDK=%JAVA_HOME% :check SET JAVA_EXE=%JDK%\bin\java.exe IF NOT EXIST "%JAVA_EXE%" SET JAVA_EXE=%JDK%\jre\bin\java.exe IF NOT EXIST "%JAVA_EXE%" ( ECHO ERROR: cannot start @@product_full@@. ECHO No JDK found. Please validate either @@product_uc@@_JDK, JDK_HOME or JAVA_HOME points to valid JDK installation. EXIT /B ) SET JRE=%JDK% IF EXIST "%JRE%\jre" SET JRE=%JDK%\jre IF EXIST "%JRE%\lib\amd64" ( SET BITS=64 ) ELSE ( IF EXIST "%JRE%\bin\windowsaccessbridge-64.dll" SET BITS=64 ) :: --------------------------------------------------------------------- :: Collect JVM options and properties. :: --------------------------------------------------------------------- IF NOT "%@@product_uc@@_PROPERTIES%" == "" SET IDE_PROPERTIES_PROPERTY="-Didea.properties.file=%@@product_uc@@_PROPERTIES%" :: explicit SET VM_OPTIONS_FILE=%@@product_uc@@_VM_OPTIONS% IF NOT EXIST "%VM_OPTIONS_FILE%" ( :: Toolbox SET VM_OPTIONS_FILE=%IDE_HOME%.vmoptions ) IF NOT EXIST "%VM_OPTIONS_FILE%" ( :: user-overridden SET VM_OPTIONS_FILE=%APPDATA%\@@product_vendor@@\@@system_selector@@\@@vm_options@@.vmoptions ) IF NOT EXIST "%VM_OPTIONS_FILE%" ( :: default, standard installation SET VM_OPTIONS_FILE=%IDE_BIN_DIR%\@@vm_options@@.vmoptions ) IF NOT EXIST "%VM_OPTIONS_FILE%" ( :: default, universal package SET VM_OPTIONS_FILE=%IDE_BIN_DIR%\win\@@vm_options@@.vmoptions ) IF NOT EXIST "%VM_OPTIONS_FILE%" ( ECHO ERROR: cannot find VM options file. ) SET ACC= FOR /F "eol=# usebackq delims=" %%i IN ("%VM_OPTIONS_FILE%") DO CALL "%IDE_BIN_DIR%\append.bat" "%%i" IF EXIST "%VM_OPTIONS_FILE%" SET ACC=%ACC% -Djb.vmOptionsFile="%VM_OPTIONS_FILE%" SET COMMON_JVM_ARGS="-XX:ErrorFile=%USERPROFILE%\java_error_in_@@product_uc@@_%%p.log" "-XX:HeapDumpPath=%USERPROFILE%\java_error_in_@@product_uc@@.hprof" -Didea.paths.selector=@@system_selector@@ %IDE_PROPERTIES_PROPERTY% SET IDE_JVM_ARGS=@@ide_jvm_args@@ SET ALL_JVM_ARGS=%ACC% %COMMON_JVM_ARGS% %IDE_JVM_ARGS% @@class_path@@ IF NOT "%@@product_uc@@_CLASS_PATH%" == "" SET CLASS_PATH=%CLASS_PATH%;%@@product_uc@@_CLASS_PATH% :: --------------------------------------------------------------------- :: Run the IDE. :: --------------------------------------------------------------------- SET OLD_PATH=%PATH% SET PATH=%IDE_BIN_DIR%;%PATH% "%JAVA_EXE%" %ALL_JVM_ARGS% -cp "%CLASS_PATH%" com.intellij.idea.Main %* SET PATH=%OLD_PATH%
leafclick/intellij-community
platform/build-scripts/resources/win/scripts/executable-template.bat
bat
apache-2.0
4,037
@echo off bii arduino:build pause exit
ArduinoIDE/Arduino-PyQt-IDE
bii-ide/resources/script/win/build.bat
bat
mit
38
cmd_drivers/mmc/built-in.o := arm-linux-gnueabihf-ld -EL -r -o drivers/mmc/built-in.o drivers/mmc/core/built-in.o drivers/mmc/card/built-in.o drivers/mmc/host/built-in.o
Dee-UK/D33_KK_Kernel
drivers/mmc/.built-in.o.cmd
bat
gpl-2.0
175
@ECHO OFF REM ---------------------------------------------------------------------- REM PHP version 5 REM ---------------------------------------------------------------------- REM Copyright (c) 1997-2004 The PHP Group REM ---------------------------------------------------------------------- REM This source file is subject to version 3.0 of the PHP license, REM that is bundled with this package in the file LICENSE, and is REM available at through the world-wide-web at REM http://www.php.net/license/3_0.txt. REM If you did not receive a copy of the PHP license and are unable to REM obtain it through the world-wide-web, please send a note to REM [email protected] so we can mail you a copy immediately. REM ---------------------------------------------------------------------- REM Authors: Alexander Merz ([email protected]) REM ---------------------------------------------------------------------- REM REM Last updated 02/08/2004 ($Id$ is not replaced if the file is binary) REM change this lines to match the paths of your system REM ------------------- REM Test to see if this is a raw pear.bat (uninstalled version) SET TMPTMPTMPTMPT=@includ SET PMTPMTPMT=%TMPTMPTMPTMPT%e_path@ FOR %%x IN ("\xampp\php\pear") DO (if %%x=="%PMTPMTPMT%" GOTO :NOTINSTALLED) REM Check PEAR global ENV, set them if they do not exist IF "%PHP_PEAR_INSTALL_DIR%"=="" SET "PHP_PEAR_INSTALL_DIR=\xampp\php\pear" IF "%PHP_PEAR_BIN_DIR%"=="" SET "PHP_PEAR_BIN_DIR=\xampp\php" IF "%PHP_PEAR_PHP_BIN%"=="" SET "PHP_PEAR_PHP_BIN=\xampp\php\.\php.exe" GOTO :INSTALLED :NOTINSTALLED ECHO WARNING: This is a raw, uninstalled pear.bat REM Check to see if we can grab the directory of this file (Windows NT+) IF %~n0 == pear ( FOR %%x IN (cli\php.exe php.exe) DO (if "%%~$PATH:x" NEQ "" ( SET "PHP_PEAR_PHP_BIN=%%~$PATH:x" echo Using PHP Executable "%PHP_PEAR_PHP_BIN%" "%PHP_PEAR_PHP_BIN%" -v GOTO :NEXTTEST )) GOTO :FAILAUTODETECT :NEXTTEST IF "%PHP_PEAR_PHP_BIN%" NEQ "" ( REM We can use this PHP to run a temporary php file to get the dirname of pear echo ^<?php $s=getcwd^(^);chdir^($a=dirname^(__FILE__^).'\\'^);if^(stristr^($a,'\\scripts'^)^)$a=dirname^(dirname^($a^)^).'\\';$f=fopen^($s.'\\~a.a','wb'^);echo$s.'\\~a.a';fwrite^($f,$a^);fclose^($f^);chdir^($s^);?^> > ~~getloc.php "%PHP_PEAR_PHP_BIN%" ~~getloc.php set /p PHP_PEAR_BIN_DIR=fakeprompt < ~a.a DEL ~a.a DEL ~~getloc.php set "PHP_PEAR_INSTALL_DIR=%PHP_PEAR_BIN_DIR%pear" REM Make sure there is a pearcmd.php at our disposal IF NOT EXIST %PHP_PEAR_INSTALL_DIR%\pearcmd.php ( IF EXIST %PHP_PEAR_INSTALL_DIR%\scripts\pearcmd.php COPY %PHP_PEAR_INSTALL_DIR%\scripts\pearcmd.php %PHP_PEAR_INSTALL_DIR%\pearcmd.php IF EXIST pearcmd.php COPY pearcmd.php %PHP_PEAR_INSTALL_DIR%\pearcmd.php IF EXIST %~dp0\scripts\pearcmd.php COPY %~dp0\scripts\pearcmd.php %PHP_PEAR_INSTALL_DIR%\pearcmd.php ) ) GOTO :INSTALLED ) ELSE ( REM Windows Me/98 cannot succeed, so allow the batch to fail ) :FAILAUTODETECT echo WARNING: failed to auto-detect pear information :INSTALLED REM Check Folders and files IF NOT EXIST "%PHP_PEAR_INSTALL_DIR%" GOTO PEAR_INSTALL_ERROR IF NOT EXIST "%PHP_PEAR_INSTALL_DIR%\pearcmd.php" GOTO PEAR_INSTALL_ERROR2 IF NOT EXIST "%PHP_PEAR_BIN_DIR%" GOTO PEAR_BIN_ERROR IF NOT EXIST "%PHP_PEAR_PHP_BIN%" GOTO PEAR_PHPBIN_ERROR REM launch pearcmd GOTO RUN :PEAR_INSTALL_ERROR ECHO PHP_PEAR_INSTALL_DIR is not set correctly. ECHO Please fix it using your environment variable or modify ECHO the default value in pear.bat ECHO The current value is: ECHO %PHP_PEAR_INSTALL_DIR% GOTO END :PEAR_INSTALL_ERROR2 ECHO PHP_PEAR_INSTALL_DIR is not set correctly. ECHO pearcmd.php could not be found there. ECHO Please fix it using your environment variable or modify ECHO the default value in pear.bat ECHO The current value is: ECHO %PHP_PEAR_INSTALL_DIR% GOTO END :PEAR_BIN_ERROR ECHO PHP_PEAR_BIN_DIR is not set correctly. ECHO Please fix it using your environment variable or modify ECHO the default value in pear.bat ECHO The current value is: ECHO %PHP_PEAR_BIN_DIR% GOTO END :PEAR_PHPBIN_ERROR ECHO PHP_PEAR_PHP_BIN is not set correctly. ECHO Please fix it using your environment variable or modify ECHO the default value in pear.bat ECHO The current value is: ECHO %PHP_PEAR_PHP_BIN% GOTO END :RUN "%PHP_PEAR_PHP_BIN%" -C -n -d date.timezone=UTC -d output_buffering=1 -d safe_mode=0 -d "include_path='%PHP_PEAR_INSTALL_DIR%'" -d register_argc_argv="On" -d variables_order=EGPCS -f "%PHP_PEAR_INSTALL_DIR%\peclcmd.php" -- %1 %2 %3 %4 %5 %6 %7 %8 %9 :END @ECHO ON
thebagmaster/WEB_COT
php/pecl.bat
bat
gpl-2.0
4,533
cmd_lib/built-in.o := arm-eabi-ld -EL -r -o lib/built-in.o lib/bcd.o lib/div64.o lib/sort.o lib/parser.o lib/halfmd4.o lib/debug_locks.o lib/random32.o lib/bust_spinlocks.o lib/hexdump.o lib/kasprintf.o lib/bitmap.o lib/scatterlist.o lib/string_helpers.o lib/gcd.o lib/lcm.o lib/list_sort.o lib/uuid.o lib/flex_array.o lib/bsearch.o lib/find_last_bit.o lib/kstrtox.o lib/iomap_copy.o lib/devres.o lib/hweight.o lib/list_debug.o lib/bitrev.o lib/crc-ccitt.o lib/crc16.o lib/crc32.o lib/libcrc32c.o lib/genalloc.o lib/zlib_inflate/built-in.o lib/zlib_deflate/built-in.o lib/reed_solomon/built-in.o lib/lzo/built-in.o lib/textsearch.o lib/ts_kmp.o lib/ts_bm.o lib/ts_fsm.o lib/percpu_counter.o lib/nlattr.o lib/cpu_rmap.o
MrHyde03/android_kernel_samsung_espressovzw
lib/.built-in.o.cmd
bat
gpl-2.0
724
INSTSRV inadyn remove
ipwndev/DSLinux-Mirror
user/inadyn/bin/win32/remove_inadyn_service.bat
bat
gpl-2.0
22
# ========== Copyright Header Begin ========================================== # # OpenSPARC T1 Processor File: sjm_5.cmd # Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES. # # The above named program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public # License version 2 as published by the Free Software Foundation. # # The above named program is distributed in the hope that it will be # useful, but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public # License along with this work; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # # ========== Copyright Header End ============================================ CONFIG id=30 iosyncadr=0x7EF00BEEF00 TIMEOUT 100000 IOSYNC LABEL_0: PRINT waiting 500 cycles WAIT 500 #================================================== # id=1, alg=11, addr=0x1240, loopaddr=0x1280, size=0x9, type=writer, data=0x25749 #================================================== PRINT id=1, alg=11, addr=0x1240, loopaddr=0x1280, size=0x9, type=writer, data=0x25749 WRITEBLK 0x01170001240 + 0x00000000 0x00006495 0x00000000 0x00006496 + 0x00000000 0x00006497 0x00000000 0x00006498 + 0x00000000 0x00006499 0x00000000 0x0000649a + 0x00000000 0x0000649b 0x00000000 0x0000649c WRITEIO 0x61170001280 8 0xF0F0F0F0 0xF0F0F0F0 #================================================== # id=5, alg=10, addr=0x1b00, loopaddr=0x1b38, size=0x8, type=writer, data=0x18867 #================================================== PRINT id=5, alg=10, addr=0x1b00, loopaddr=0x1b38, size=0x8, type=writer, data=0x18867 WRITEBLK 0x01170001b00 + 0x00000000 0x000049b3 0x00000000 0x000049b4 + 0x00000000 0x000049b5 0x00000000 0x000049b6 + 0x00000000 0x000049b7 0x00000000 0x000049b8 + 0x00000000 0x000049b9 0x00000000 0x000049ba #================================================== # id=10, alg=12, addr=0x0dc0, loopaddr=0x0e00, size=0x9, type=writer, data=0x25869 #================================================== PRINT id=10, alg=12, addr=0x0dc0, loopaddr=0x0e00, size=0x9, type=writer, data=0x25869 WRITEBLK 0x01170000dc0 + 0x00000000 0x0000650d 0x00000000 0x0000650e + 0x00000000 0x0000650f 0x00000000 0x00006510 + 0x00000000 0x00006511 0x00000000 0x00006512 + 0x00000000 0x00006513 0x00000000 0x00006514 WRITEMSK 0x01170000e00 0xFF00000000000000 + 0xf0f0f0f0 0xf0f0f0f0 0xdddddddd 0xdddddddd + 0xdeadbee0 0xdeadbee0 0xdeadbee0 0xdeadbee0 + 0xdeadbee0 0xdeadbee0 0xdeadbee0 0xdeadbee0 + 0xa6a6a6a6 0xa6a6a6a6 0xf1f1f1f1 0xf1f1f1f1 #================================================== # id=11, alg=0, addr=0x04f0, loopaddr=0x04f0, size=0x2, type=writer, data=0x12523 #================================================== PRINT id=11, alg=0, addr=0x04f0, loopaddr=0x04f0, size=0x2, type=writer, data=0x12523 WRITEIO 0x611700004f0 8 0x000030eb 0x000030ec #================================================== # id=13, alg=10, addr=0x0340, loopaddr=0x0378, size=0x8, type=writer, data=0x25265 #================================================== PRINT id=13, alg=10, addr=0x0340, loopaddr=0x0378, size=0x8, type=writer, data=0x25265 WRITEBLK 0x01170000340 + 0x00000000 0x000062b1 0x00000000 0x000062b2 + 0x00000000 0x000062b3 0x00000000 0x000062b4 + 0x00000000 0x000062b5 0x00000000 0x000062b6 + 0x00000000 0x000062b7 0x00000000 0x000062b8 #================================================== # id=18, alg=12, addr=0x0480, loopaddr=0x04c0, size=0x9, type=writer, data=0x14636 #================================================== PRINT id=18, alg=12, addr=0x0480, loopaddr=0x04c0, size=0x9, type=writer, data=0x14636 WRITEBLK 0x01170000480 + 0x00000000 0x0000392c 0x00000000 0x0000392d + 0x00000000 0x0000392e 0x00000000 0x0000392f + 0x00000000 0x00003930 0x00000000 0x00003931 + 0x00000000 0x00003932 0x00000000 0x00003933 WRITEMSK 0x011700004c0 0xFF00000000000000 + 0xf0f0f0f0 0xf0f0f0f0 0xdddddddd 0xdddddddd + 0xdeadbee0 0xdeadbee0 0xdeadbee0 0xdeadbee0 + 0xdeadbee0 0xdeadbee0 0xdeadbee0 0xdeadbee0 + 0xa6a6a6a6 0xa6a6a6a6 0xf1f1f1f1 0xf1f1f1f1 #================================================== # id=20, alg=0, addr=0x1e90, loopaddr=0x1e90, size=0x2, type=writer, data=0x31662 #================================================== PRINT id=20, alg=0, addr=0x1e90, loopaddr=0x1e90, size=0x2, type=writer, data=0x31662 WRITEIO 0x61170001e90 8 0x00007bae 0x00007baf #================================================== # id=21, alg=10, addr=0x19c0, loopaddr=0x19f8, size=0x8, type=writer, data=0x18718 #================================================== PRINT id=21, alg=10, addr=0x19c0, loopaddr=0x19f8, size=0x8, type=writer, data=0x18718 WRITEBLK 0x011700019c0 + 0x00000000 0x0000491e 0x00000000 0x0000491f + 0x00000000 0x00004920 0x00000000 0x00004921 + 0x00000000 0x00004922 0x00000000 0x00004923 + 0x00000000 0x00004924 0x00000000 0x00004925 #================================================== # id=24, alg=0, addr=0x18a0, loopaddr=0x18a0, size=0x2, type=writer, data=0x23694 #================================================== PRINT id=24, alg=0, addr=0x18a0, loopaddr=0x18a0, size=0x2, type=writer, data=0x23694 WRITEIO 0x611700018a0 8 0x00005c8e 0x00005c8f #================================================== # id=27, alg=10, addr=0x1680, loopaddr=0x16b8, size=0x8, type=writer, data=0x3973 #================================================== PRINT id=27, alg=10, addr=0x1680, loopaddr=0x16b8, size=0x8, type=writer, data=0x3973 WRITEBLK 0x01170001680 + 0x00000000 0x00000f85 0x00000000 0x00000f86 + 0x00000000 0x00000f87 0x00000000 0x00000f88 + 0x00000000 0x00000f89 0x00000000 0x00000f8a + 0x00000000 0x00000f8b 0x00000000 0x00000f8c #================================================== # id=31, alg=0, addr=0x12c8, loopaddr=0x12c8, size=0x2, type=writer, data=0x15644 #================================================== PRINT id=31, alg=0, addr=0x12c8, loopaddr=0x12c8, size=0x2, type=writer, data=0x15644 WRITEIO 0x611700012c8 8 0x00003d1c 0x00003d1d #================================================== # id=32, alg=12, addr=0x1840, loopaddr=0x1880, size=0x9, type=writer, data=0x4185 #================================================== PRINT id=32, alg=12, addr=0x1840, loopaddr=0x1880, size=0x9, type=writer, data=0x4185 WRITEBLK 0x01170001840 + 0x00000000 0x00001059 0x00000000 0x0000105a + 0x00000000 0x0000105b 0x00000000 0x0000105c + 0x00000000 0x0000105d 0x00000000 0x0000105e + 0x00000000 0x0000105f 0x00000000 0x00001060 WRITEMSK 0x01170001880 0xFF00000000000000 + 0xf0f0f0f0 0xf0f0f0f0 0xdddddddd 0xdddddddd + 0xdeadbee0 0xdeadbee0 0xdeadbee0 0xdeadbee0 + 0xdeadbee0 0xdeadbee0 0xdeadbee0 0xdeadbee0 + 0xa6a6a6a6 0xa6a6a6a6 0xf1f1f1f1 0xf1f1f1f1 #================================================== # id=33, alg=0, addr=0x1000, loopaddr=0x1000, size=0x2, type=writer, data=0x27681 #================================================== PRINT id=33, alg=0, addr=0x1000, loopaddr=0x1000, size=0x2, type=writer, data=0x27681 WRITEIO 0x61170001000 8 0x00006c21 0x00006c22 #================================================== # id=34, alg=11, addr=0x02c0, loopaddr=0x0300, size=0x9, type=writer, data=0x28106 #================================================== PRINT id=34, alg=11, addr=0x02c0, loopaddr=0x0300, size=0x9, type=writer, data=0x28106 WRITEBLK 0x011700002c0 + 0x00000000 0x00006dca 0x00000000 0x00006dcb + 0x00000000 0x00006dcc 0x00000000 0x00006dcd + 0x00000000 0x00006dce 0x00000000 0x00006dcf + 0x00000000 0x00006dd0 0x00000000 0x00006dd1 WRITEIO 0x61170000300 8 0xF0F0F0F0 0xF0F0F0F0 #================================================== # id=40, alg=0, addr=0x0e90, loopaddr=0x0e90, size=0x2, type=writer, data=0x27355 #================================================== PRINT id=40, alg=0, addr=0x0e90, loopaddr=0x0e90, size=0x2, type=writer, data=0x27355 WRITEIO 0x61170000e90 8 0x00006adb 0x00006adc #================================================== # id=43, alg=10, addr=0x0440, loopaddr=0x0478, size=0x8, type=writer, data=0x20383 #================================================== PRINT id=43, alg=10, addr=0x0440, loopaddr=0x0478, size=0x8, type=writer, data=0x20383 WRITEBLK 0x01170000440 + 0x00000000 0x00004f9f 0x00000000 0x00004fa0 + 0x00000000 0x00004fa1 0x00000000 0x00004fa2 + 0x00000000 0x00004fa3 0x00000000 0x00004fa4 + 0x00000000 0x00004fa5 0x00000000 0x00004fa6 #================================================== # id=47, alg=0, addr=0x0390, loopaddr=0x0390, size=0x2, type=writer, data=0x28970 #================================================== PRINT id=47, alg=0, addr=0x0390, loopaddr=0x0390, size=0x2, type=writer, data=0x28970 WRITEIO 0x61170000390 8 0x0000712a 0x0000712b #================================================== # id=61, alg=11, addr=0x16c0, loopaddr=0x1700, size=0x9, type=writer, data=0x29064 #================================================== PRINT id=61, alg=11, addr=0x16c0, loopaddr=0x1700, size=0x9, type=writer, data=0x29064 WRITEBLK 0x011700016c0 + 0x00000000 0x00007188 0x00000000 0x00007189 + 0x00000000 0x0000718a 0x00000000 0x0000718b + 0x00000000 0x0000718c 0x00000000 0x0000718d + 0x00000000 0x0000718e 0x00000000 0x0000718f WRITEIO 0x61170001700 8 0xF0F0F0F0 0xF0F0F0F0 #================================================== # id=40, alg=0, addr=0x0e90, loopaddr=0x0e90, size=0x2, type=checker, data=0x27355 #================================================== PRINT id=40, alg=0, addr=0x0e90, loopaddr=0x0e90, size=0x2, type=checker, data=0x27355 READIO 0x61170000e90 8 0x00006adb 0x00006adc #================================================== # id=47, alg=0, addr=0x0390, loopaddr=0x0390, size=0x2, type=checker, data=0x28970 #================================================== PRINT id=47, alg=0, addr=0x0390, loopaddr=0x0390, size=0x2, type=checker, data=0x28970 READIO 0x61170000390 8 0x0000712a 0x0000712b #================================================== # id=33, alg=0, addr=0x1000, loopaddr=0x1000, size=0x2, type=checker, data=0x27681 #================================================== PRINT id=33, alg=0, addr=0x1000, loopaddr=0x1000, size=0x2, type=checker, data=0x27681 READIO 0x61170001000 8 0x00006c21 0x00006c22 #================================================== # id=11, alg=0, addr=0x04f0, loopaddr=0x04f0, size=0x2, type=checker, data=0x12523 #================================================== PRINT id=11, alg=0, addr=0x04f0, loopaddr=0x04f0, size=0x2, type=checker, data=0x12523 READIO 0x611700004f0 8 0x000030eb 0x000030ec #================================================== # id=20, alg=0, addr=0x1e90, loopaddr=0x1e90, size=0x2, type=checker, data=0x31662 #================================================== PRINT id=20, alg=0, addr=0x1e90, loopaddr=0x1e90, size=0x2, type=checker, data=0x31662 READIO 0x61170001e90 8 0x00007bae 0x00007baf #================================================== # id=24, alg=0, addr=0x18a0, loopaddr=0x18a0, size=0x2, type=checker, data=0x23694 #================================================== PRINT id=24, alg=0, addr=0x18a0, loopaddr=0x18a0, size=0x2, type=checker, data=0x23694 READIO 0x611700018a0 8 0x00005c8e 0x00005c8f #================================================== # id=31, alg=0, addr=0x12c8, loopaddr=0x12c8, size=0x2, type=checker, data=0x15644 #================================================== PRINT id=31, alg=0, addr=0x12c8, loopaddr=0x12c8, size=0x2, type=checker, data=0x15644 READIO 0x611700012c8 8 0x00003d1c 0x00003d1d BA LABEL_0
trivoldus28/pulsarch-verilog
verif/diag/assembly/arch/error/err_dram_rdd_dacc/sjm_5.cmd
bat
gpl-2.0
11,772
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 2> nul if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\aduana.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\aduana.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
okey/aduana
doc/make.bat
bat
bsd-3-clause
7,244
@echo off :START php -e PHPInSimMod.php %1 %2 goto START pause
Dygear/PRISM
PRISM.bat
bat
mit
62
@echo off perl -w %~dpn0 %*
dbarowy/groff
arch/mingw/pdfmom.cmd
bat
gpl-3.0
30
@echo off set CHECK_PORT=0 for /f "tokens=*" %%x IN ("%*") DO SET "SUB_CMD_LINE_ARGS=%%x" :EXTRACT_ARG if "%SUB_CMD_LINE_ARGS%" == "" goto :eof for /f "tokens=1* delims= " %%x in ("%SUB_CMD_LINE_ARGS%") DO ( set "SUB_CMD_LINE_ARG=%%x" set "SUB_CMD_LINE_ARGS=%%y" :: shift to the next tag goto CHECK_ARG ) if not "%SUB_CMD_LINE_ARGS%" == "" goto EXTRACT_ARG :: loop to process the next arg goto :eof :: finished processing all args :CHECK_ARG :: if "%SUB_CMD_LINE_ARG%" == "" goto :EOF if %CHECK_PORT% == 1 goto CHECK_IS_PORT if not "x%SUB_CMD_LINE_ARG:-j=%" == "x%SUB_CMD_LINE_ARG%" goto JMX_CHECK_PORT if not "x%SUB_CMD_LINE_ARG:--jmx=%" == "x%SUB_CMD_LINE_ARG%" goto JMX_CHECK_PORT set OPTNAME=--jmx= if "%SUB_CMD_LINE_ARG:~0,6%" == %OPTNAME% goto JMX_6_PORT_SET set OPTNAME=-j= if "%SUB_CMD_LINE_ARG:~0,3%" == %OPTNAME% goto JMX_3_PORT_SET set OPTNAME=--jmx if "%SUB_CMD_LINE_ARG:~0,5%" == %OPTNAME% goto JMX_5_PORT_SET set OPTNAME=-j if "%SUB_CMD_LINE_ARG:~0,2%" == %OPTNAME% goto JMX_2_PORT_SET set OPTNAME=--j if "%SUB_CMD_LINE_ARG:~0,3%" == %OPTNAME% goto JMX_3_PORT_SET goto ADD_TO_JAVA_ARGS :CHECK_IS_PORT echo Check if is port %SUB_CMD_LINE_ARG% set CHECK_PORT=0 if "%SUB_CMD_LINE_ARG:~0,1%" == "-" goto ADD_TO_JAVA_ARGS set JMX_PORT=%SUB_CMD_LINE_ARG% echo JMX_PORT=%JMX_PORT% goto EXTRACT_ARG :JMX_CHECK_PORT echo "JMX enabled" set JMX_ENABLED=1 set CHECK_PORT=1 echo CHECK_PORT=%CHECK_PORT% goto EXTRACT_ARG :JMX_2_PORT_SET set JMX_ENABLED=1 set JMX_PORT=%SUB_CMD_LINE_ARG:~2% echo JMX_PORT=%JMX_PORT% goto EXTRACT_ARG :JMX_3_PORT_SET set JMX_ENABLED=1 set JMX_PORT=%SUB_CMD_LINE_ARG:~3% echo JMX_PORT=%JMX_PORT% goto EXTRACT_ARG :JMX_5_PORT_SET set JMX_ENABLED=1 set JMX_PORT=%SUB_CMD_LINE_ARG:~5% echo JMX_PORT=%JMX_PORT% goto EXTRACT_ARG :JMX_6_PORT_SET set JMX_ENABLED=1 set JMX_PORT=%SUB_CMD_LINE_ARG:~6% echo JMX_PORT=%JMX_PORT% goto EXTRACT_ARG :ADD_TO_JAVA_ARGS echo Adding "%SUB_CMD_LINE_ARG%" to JAVA_ARGS... for /f "delims=" %%G IN ("%JAVA_ARGS%") DO SET "JAVA_ARGS=%%~G" set "JAVA_ARGS=%JAVA_ARGS% %SUB_CMD_LINE_ARG%" goto EXTRACT_ARG
hungerburg/exist
bin/batch.d/get_opts.bat
bat
lgpl-2.1
2,228
@echo off setlocal REM Copyright 2006-2010 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the REM Amazon Software License (the "License"). You may not use this file except in compliance with the License. A copy of the REM License is located at http://aws.amazon.com/asl or in the "license" file accompanying this file. This file is distributed on an "AS REM IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific REM language governing permissions and limitations under the License. REM Set intermediate env vars because the %VAR:x=y% notation below REM (which replaces the string x with the string y in VAR) REM doesn't handle undefined environment variables. This way REM we're always dealing with defined variables in those tests. set CHK_HOME=_%EC2_HOME% if "%CHK_HOME:"=%" == "_" goto HOME_MISSING "%EC2_HOME:"=%\bin\ec2-cmd" DeleteDiskImage %* goto DONE :HOME_MISSING echo EC2_HOME is not set exit /b 1 :DONE
capotej/whim
ec2_home/ec2-api-tools-1.6.3.1/bin/ec2ddi.cmd
bat
mit
1,037
@ECHO OFF REM Command file for Sphinx documentation set SPHINXBUILD=sphinx-build set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\PyMongo.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PyMongo.ghc goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
openlabs/mongo-python-driver
doc/make.bat
bat
apache-2.0
3,073
@echo off set xv_path=C:\\Xilinx\\Vivado\\2016.4\\bin echo "xvhdl -m64 --relax -prj system_wrapper_vhdl.prj" call %xv_path%/xvhdl -m64 --relax -prj system_wrapper_vhdl.prj -log xvhdl.log call type xvhdl.log > compile.log if "%errorlevel%"=="1" goto END if "%errorlevel%"=="0" goto SUCCESS :END exit 1 :SUCCESS exit 0
lasalvavida/Zybo-Open-Source-Video-IP-Toolbox
examples/test_cdma/test_cdma.sim/sim_1/synth/func/compile.bat
bat
mit
318
start powershell -executionpolicy bypass -noexit -command "import-module '%~dp0\PrtgAPI.psd1'; cd ~"
lordmilko/PrtgAPI
src/PrtgAPI.PowerShell/PowerShell/Resources/PrtgAPI.cmd
bat
mit
100
@echo off setlocal %TB-PLATFORM-PROJECTS-DRIVE% pushd %TB-PLATFORM-PROJECTS-DRIVE%\%TB-PLATFORM-PROJECTS-PATH%\Bin\TradeWright.TradeBuild.ExternalComponents regsvr32 -S COMCT332.OCX if errorlevel 1 pause regsvr32 -S MSCOMCT2.OCX if errorlevel 1 pause regsvr32 -S MSDATGRD.OCX if errorlevel 1 pause regsvr32 -S MSFLXGRD.OCX if errorlevel 1 pause regsvr32 -S MSWINSCK.OCX if errorlevel 1 pause regsvr32 -S TABCTL32.OCX if errorlevel 1 pause regsvr32 -S TLBINF32.DLL if errorlevel 1 pause popd
rlktradewright/tradebuild-platform
Build/registerExternalComponents.bat
bat
mit
500
@ECHO OFF SETLOCAL EnableDelayedExpansion SET ANYCPU_PATH="src\dotnet-ildasm.Sample\bin\Any Cpu\Release" SET TARGET_RELEASE_FOLDER=Any Cpu\Release IF NOT EXIST %ANYCPU_PATH% ( SET TARGET_RELEASE_FOLDER=Release ) ECHO Using target folder: %TARGET_RELEASE_FOLDER% ECHO Executing dotnet core ildasm against netstandard2.0 library... dotnet run --project src\dotnet-ildasm\dotnet-ildasm.csproj --framework netcoreapp2.2 "src\dotnet-ildasm.Sample\bin\%TARGET_RELEASE_FOLDER%\netstandard2.0\dotnet-ildasm.Sample.dll" -o netcore_netstandard20.il if %ERRORLEVEL% EQU 0 ECHO DONE ECHO Executing dotnet core ildasm against net45 library... dotnet run --project src\dotnet-ildasm\dotnet-ildasm.csproj --framework netcoreapp2.2 "src\dotnet-ildasm.Sample\bin\%TARGET_RELEASE_FOLDER%\net45\dotnet-ildasm.Sample.exe" -o netcore_net45.il if %ERRORLEVEL% EQU 0 ECHO DONE ENDLOCAL
pjbgf/dotnet-ildasm
run-cross-checks.cmd
bat
mit
877
@echo off start agent.py -V --show-video remote_control.py pause
dkrikun/ffmpeg-rcd
go.bat
bat
mit
66
".nuget\NuGet.exe" push bulky.1.0.5.nupkg
teves-castro/bulky
push-nuget.bat
bat
mit
41
CALL make.bat clean CALL make.bat html
westpark/wallball
docs/rebuild.cmd
bat
mit
41
cd .. coffee -c -o js -w coffee/app3.coffee
uniite/pyirc
client/web/script/cc.bat
bat
mit
44
@echo off cd /d %0\.. git clean -fdx pause
Nant-y-Cwm/nant-y-cwm.github.io
_clean.bat
bat
mit
42
cmd_lib/hweight.o := arm-linux-gnueabi-gcc -Wp,-MD,lib/.hweight.o.d -nostdinc -isystem /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include -Iinclude -I/home/benoit/kernel_android/32/es209ra/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -Os -marm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fno-dwarf2-cfi-asm -fconserve-stack -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(hweight)" -D"KBUILD_MODNAME=KBUILD_STR(hweight)" -c -o lib/hweight.o lib/hweight.c deps_lib/hweight.o := \ lib/hweight.c \ include/linux/module.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/tracepoints.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/event/tracing.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/constructors.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/posix_types.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/processor.h \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/cpu/32v6k.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/hwcap.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/system.h \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/msm.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ include/linux/linkage.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/linkage.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/linux/typecheck.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/irqflags.h \ include/asm-generic/cmpxchg-local.h \ include/linux/stat.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/numa.h) \ /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include/stdarg.h \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/last/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bitops.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/lock.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/ratelimit.h \ include/linux/param.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/dynamic_debug.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/div64.h \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/domain.h \ $(wildcard include/config/verify/permission/fault.h) \ $(wildcard include/config/io/36.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/linux/spinlock_types_up.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ include/linux/spinlock_up.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/atomic.h \ include/asm-generic/atomic-long.h \ include/linux/spinlock_api_up.h \ include/linux/math64.h \ include/linux/kmod.h \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ $(wildcard include/config/debug/vm.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/wait.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/current.h \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/linux/nodemask.h \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/string.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/copy/fa.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ $(wildcard include/config/memory/hotplug/sparse.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/glue.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/abrt/lv4t.h) \ $(wildcard include/config/cpu/abrt/ev4.h) \ $(wildcard include/config/cpu/abrt/ev4t.h) \ $(wildcard include/config/cpu/abrt/ev5tj.h) \ $(wildcard include/config/cpu/abrt/ev5t.h) \ $(wildcard include/config/cpu/abrt/ev6.h) \ $(wildcard include/config/cpu/abrt/ev7.h) \ $(wildcard include/config/cpu/pabrt/legacy.h) \ $(wildcard include/config/cpu/pabrt/v6.h) \ $(wildcard include/config/cpu/pabrt/v7.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/thumb2/kernel.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ include/linux/const.h \ arch/arm/mach-msm/include/mach/memory.h \ $(wildcard include/config/phys/offset.h) \ $(wildcard include/config/arch/msm7x30.h) \ $(wildcard include/config/vmsplit/3g.h) \ $(wildcard include/config/arch/msm/arm11.h) \ $(wildcard include/config/cache/l2x0.h) \ $(wildcard include/config/arch/msm/scorpion.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/sizes.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/sparsemem/vmemmap.h) \ include/asm-generic/getorder.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ $(wildcard include/config/memory/hotremove.h) \ include/linux/notifier.h \ include/linux/errno.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/virtual.h) \ include/linux/elf.h \ include/linux/elf-em.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/elf.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/tracepoint.h \ include/linux/rcupdate.h \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/tree/rcu.h) \ include/linux/completion.h \ include/linux/rcutree.h \ $(wildcard include/config/no/hz.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ include/linux/percpu.h \ $(wildcard include/config/have/legacy/per/cpu/area.h) \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/debug/kmemleak.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ include/linux/slob_def.h \ include/linux/pfn.h \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ /home/benoit/kernel_android/32/es209ra/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/trace/define_trace.h \ lib/hweight.o: $(deps_lib/hweight.o) $(deps_lib/hweight.o):
b8e5n/KTG-kernel_es209ra
lib/.hweight.o.cmd
bat
gpl-2.0
14,365
cmd_drivers/rtc/rtc-core.o := /home/knesi/arm-2010q1/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/rtc/rtc-core.o drivers/rtc/class.o drivers/rtc/interface.o
DrGrip/tiamat-2.6.38-LEO-Dr_Grip
drivers/rtc/.rtc-core.o.cmd
bat
gpl-2.0
164
@echo off SET MICROALG_DIR=%~dp0 %MICROALG_DIR%\processing\processing-java.exe --run --force --sketch=%MICROALG_DIR%\pde\microalg --output=%MICROALG_DIR%\pde\microalg.out exit
Microalg/microalg
start_processing.bat
bat
gpl-2.0
176
cmd_fs/ecryptfs/built-in.o := /home/dman3285/CM10/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o fs/ecryptfs/built-in.o fs/ecryptfs/ecryptfs.o
AOSP-ZEUS/android_kernel_samsung_n1
fs/ecryptfs/.built-in.o.cmd
bat
gpl-2.0
171
cmd_fs/ext3/built-in.o := /home/pasquale/android/arm-2009q3/bin/arm-none-eabi-ld -EL -r -o fs/ext3/built-in.o fs/ext3/ext3.o
p500-ics-cm9/Franco-ICS-Kernel
fs/ext3/.built-in.o.cmd
bat
gpl-2.0
130
cmd_drivers/misc/hwlat_detector.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o drivers/misc/hwlat_detector.ko drivers/misc/hwlat_detector.o drivers/misc/hwlat_detector.mod.o
avareldalton85/rpi2-linux-rt
drivers/misc/.hwlat_detector.ko.cmd
bat
gpl-2.0
279
cmd_mm/fadvise.o := arm-linux-gnueabi-gcc -Wp,-MD,mm/.fadvise.o.d -nostdinc -isystem /usr/lib/gcc/arm-linux-gnueabi/4.6/include -I/root/linux-jps/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-rk30/include -Iarch/arm/plat-rk/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-dwarf2-cfi-asm -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -Wno-unused-but-set-variable -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -DCC_HAVE_ASM_GOTO -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(fadvise)" -D"KBUILD_MODNAME=KBUILD_STR(fadvise)" -c -o mm/fadvise.o mm/fadvise.c source_mm/fadvise.o := mm/fadvise.c deps_mm/fadvise.o := \ $(wildcard include/config/have/syscall/wrappers.h) \ include/linux/kernel.h \ $(wildcard include/config/lbdaf.h) \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/prove/locking.h) \ $(wildcard include/config/ring/buffer.h) \ $(wildcard include/config/tracing.h) \ $(wildcard include/config/numa.h) \ $(wildcard include/config/compaction.h) \ $(wildcard include/config/ftrace/mcount/record.h) \ /usr/lib/gcc/arm-linux-gnueabi/4.6/include/stdarg.h \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/sparse/rcu/pointer.h) \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/compiler-gcc4.h \ /root/linux-jps/arch/arm/include/asm/linkage.h \ include/linux/stddef.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/arch/dma/addr/t/64bit.h) \ $(wildcard include/config/phys/addr/t/64bit.h) \ $(wildcard include/config/64bit.h) \ /root/linux-jps/arch/arm/include/asm/types.h \ include/asm-generic/int-ll64.h \ /root/linux-jps/arch/arm/include/asm/bitsperlong.h \ include/asm-generic/bitsperlong.h \ include/linux/posix_types.h \ /root/linux-jps/arch/arm/include/asm/posix_types.h \ include/linux/bitops.h \ /root/linux-jps/arch/arm/include/asm/bitops.h \ $(wildcard include/config/smp.h) \ /root/linux-jps/arch/arm/include/asm/system.h \ $(wildcard include/config/function/graph/tracer.h) \ $(wildcard include/config/cpu/32v6k.h) \ $(wildcard include/config/cpu/xsc3.h) \ $(wildcard include/config/cpu/fa526.h) \ $(wildcard include/config/arch/has/barriers.h) \ $(wildcard include/config/arm/dma/mem/bufferable.h) \ $(wildcard include/config/cpu/sa1100.h) \ $(wildcard include/config/cpu/sa110.h) \ $(wildcard include/config/cpu/v6.h) \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/irqsoff/tracer.h) \ $(wildcard include/config/preempt/tracer.h) \ $(wildcard include/config/trace/irqflags/support.h) \ include/linux/typecheck.h \ /root/linux-jps/arch/arm/include/asm/irqflags.h \ /root/linux-jps/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /root/linux-jps/arch/arm/include/asm/hwcap.h \ /root/linux-jps/arch/arm/include/asm/outercache.h \ $(wildcard include/config/outer/cache/sync.h) \ $(wildcard include/config/outer/cache.h) \ include/asm-generic/cmpxchg-local.h \ include/asm-generic/bitops/non-atomic.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/arch_hweight.h \ include/asm-generic/bitops/const_hweight.h \ include/asm-generic/bitops/lock.h \ include/asm-generic/bitops/le.h \ /root/linux-jps/arch/arm/include/asm/byteorder.h \ include/linux/byteorder/little_endian.h \ include/linux/swab.h \ /root/linux-jps/arch/arm/include/asm/swab.h \ include/linux/byteorder/generic.h \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/linux/printk.h \ $(wildcard include/config/printk.h) \ $(wildcard include/config/dynamic/debug.h) \ include/linux/init.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/hotplug.h) \ include/linux/dynamic_debug.h \ /root/linux-jps/arch/arm/include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/generic/bug/relative/pointers.h) \ /root/linux-jps/arch/arm/include/asm/div64.h \ include/linux/file.h \ include/linux/fs.h \ $(wildcard include/config/sysfs.h) \ $(wildcard include/config/security.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/fsnotify.h) \ $(wildcard include/config/ima.h) \ $(wildcard include/config/fs/posix/acl.h) \ $(wildcard include/config/preempt.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/file/locking.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ /root/linux-jps/arch/arm/include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/blk_types.h \ $(wildcard include/config/blk/dev/integrity.h) \ include/linux/wait.h \ $(wildcard include/config/lockdep.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/poison.h \ $(wildcard include/config/illegal/pointer/value.h) \ include/linux/const.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/debug/lock/alloc.h) \ include/linux/preempt.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ /root/linux-jps/arch/arm/include/asm/thread_info.h \ $(wildcard include/config/arm/thumbee.h) \ /root/linux-jps/arch/arm/include/asm/fpstate.h \ $(wildcard include/config/vfpv3.h) \ $(wildcard include/config/iwmmxt.h) \ /root/linux-jps/arch/arm/include/asm/domain.h \ $(wildcard include/config/io/36.h) \ $(wildcard include/config/cpu/use/domains.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ /root/linux-jps/arch/arm/include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/prove/rcu.h) \ include/linux/rwlock_types.h \ /root/linux-jps/arch/arm/include/asm/spinlock.h \ $(wildcard include/config/thumb2/kernel.h) \ /root/linux-jps/arch/arm/include/asm/processor.h \ $(wildcard include/config/have/hw/breakpoint.h) \ $(wildcard include/config/mmu.h) \ $(wildcard include/config/arm/errata/754327.h) \ /root/linux-jps/arch/arm/include/asm/hw_breakpoint.h \ include/linux/rwlock.h \ include/linux/spinlock_api_smp.h \ $(wildcard include/config/inline/spin/lock.h) \ $(wildcard include/config/inline/spin/lock/bh.h) \ $(wildcard include/config/inline/spin/lock/irq.h) \ $(wildcard include/config/inline/spin/lock/irqsave.h) \ $(wildcard include/config/inline/spin/trylock.h) \ $(wildcard include/config/inline/spin/trylock/bh.h) \ $(wildcard include/config/inline/spin/unlock.h) \ $(wildcard include/config/inline/spin/unlock/bh.h) \ $(wildcard include/config/inline/spin/unlock/irq.h) \ $(wildcard include/config/inline/spin/unlock/irqrestore.h) \ include/linux/rwlock_api_smp.h \ $(wildcard include/config/inline/read/lock.h) \ $(wildcard include/config/inline/write/lock.h) \ $(wildcard include/config/inline/read/lock/bh.h) \ $(wildcard include/config/inline/write/lock/bh.h) \ $(wildcard include/config/inline/read/lock/irq.h) \ $(wildcard include/config/inline/write/lock/irq.h) \ $(wildcard include/config/inline/read/lock/irqsave.h) \ $(wildcard include/config/inline/write/lock/irqsave.h) \ $(wildcard include/config/inline/read/trylock.h) \ $(wildcard include/config/inline/write/trylock.h) \ $(wildcard include/config/inline/read/unlock.h) \ $(wildcard include/config/inline/write/unlock.h) \ $(wildcard include/config/inline/read/unlock/bh.h) \ $(wildcard include/config/inline/write/unlock/bh.h) \ $(wildcard include/config/inline/read/unlock/irq.h) \ $(wildcard include/config/inline/write/unlock/irq.h) \ $(wildcard include/config/inline/read/unlock/irqrestore.h) \ $(wildcard include/config/inline/write/unlock/irqrestore.h) \ /root/linux-jps/arch/arm/include/asm/atomic.h \ $(wildcard include/config/generic/atomic64.h) \ include/asm-generic/atomic-long.h \ /root/linux-jps/arch/arm/include/asm/current.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ include/linux/rculist.h \ include/linux/rcupdate.h \ $(wildcard include/config/rcu/torture/test.h) \ $(wildcard include/config/tree/rcu.h) \ $(wildcard include/config/tree/preempt/rcu.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/no/hz.h) \ $(wildcard include/config/tiny/rcu.h) \ $(wildcard include/config/tiny/preempt/rcu.h) \ $(wildcard include/config/debug/objects/rcu/head.h) \ $(wildcard include/config/preempt/rt.h) \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ /root/linux-jps/arch/arm/include/asm/cache.h \ $(wildcard include/config/arm/l1/cache/shift.h) \ $(wildcard include/config/aeabi.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/linux/cpumask.h \ $(wildcard include/config/cpumask/offstack.h) \ $(wildcard include/config/hotplug/cpu.h) \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/disable/obsolete/cpumask/functions.h) \ include/linux/bitmap.h \ include/linux/string.h \ $(wildcard include/config/binary/printf.h) \ /root/linux-jps/arch/arm/include/asm/string.h \ include/linux/seqlock.h \ include/linux/completion.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/debug/objects/free.h) \ include/linux/rcutree.h \ include/linux/rculist_bl.h \ include/linux/list_bl.h \ include/linux/bit_spinlock.h \ include/linux/path.h \ include/linux/stat.h \ /root/linux-jps/arch/arm/include/asm/stat.h \ include/linux/time.h \ $(wildcard include/config/arch/uses/gettimeoffset.h) \ include/linux/math64.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/pid.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ $(wildcard include/config/have/arch/mutex/cpu/relax.h) \ include/linux/capability.h \ include/linux/semaphore.h \ include/linux/fiemap.h \ include/linux/quota.h \ $(wildcard include/config/quota/netlink/interface.h) \ include/linux/errno.h \ /root/linux-jps/arch/arm/include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/linux/rwsem-spinlock.h \ include/linux/percpu_counter.h \ include/linux/smp.h \ $(wildcard include/config/use/generic/smp/helpers.h) \ /root/linux-jps/arch/arm/include/asm/smp.h \ include/linux/percpu.h \ $(wildcard include/config/need/per/cpu/embed/first/chunk.h) \ $(wildcard include/config/need/per/cpu/page/first/chunk.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/pfn.h \ /root/linux-jps/arch/arm/include/asm/percpu.h \ include/asm-generic/percpu.h \ include/linux/percpu-defs.h \ $(wildcard include/config/debug/force/weak/per/cpu.h) \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/dqblk_qtree.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/inet.h \ include/linux/fcntl.h \ /root/linux-jps/arch/arm/include/asm/fcntl.h \ include/asm-generic/fcntl.h \ include/linux/err.h \ include/linux/mm.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sysctl.h) \ $(wildcard include/config/stack/growsup.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/transparent/hugepage.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/ksm.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/proc/fs.h) \ $(wildcard include/config/debug/pagealloc.h) \ $(wildcard include/config/hibernation.h) \ $(wildcard include/config/hugetlbfs.h) \ include/linux/gfp.h \ $(wildcard include/config/kmemcheck.h) \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/no/bootmem.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/have/memoryless/nodes.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/have/arch/pfn/valid.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ $(wildcard include/config/arch/has/holes/memorymodel.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/generated/bounds.h \ /root/linux-jps/arch/arm/include/asm/page.h \ $(wildcard include/config/cpu/copy/v3.h) \ $(wildcard include/config/cpu/copy/v4wt.h) \ $(wildcard include/config/cpu/copy/v4wb.h) \ $(wildcard include/config/cpu/copy/feroceon.h) \ $(wildcard include/config/cpu/copy/fa.h) \ $(wildcard include/config/cpu/xscale.h) \ $(wildcard include/config/cpu/copy/v6.h) \ /root/linux-jps/arch/arm/include/asm/glue.h \ /root/linux-jps/arch/arm/include/asm/memory.h \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/dram/size.h) \ $(wildcard include/config/dram/base.h) \ $(wildcard include/config/have/tcm.h) \ $(wildcard include/config/arm/patch/phys/virt.h) \ $(wildcard include/config/arm/patch/phys/virt/16bit.h) \ arch/arm/mach-rk30/include/mach/memory.h \ include/linux/version.h \ arch/arm/mach-rk30/include/mach/io.h \ $(wildcard include/config/rk/debug/uart.h) \ /root/linux-jps/arch/arm/include/asm/sizes.h \ include/asm-generic/sizes.h \ include/asm-generic/memory_model.h \ include/asm-generic/getorder.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/memory/hotremove.h) \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ $(wildcard include/config/sched/book.h) \ $(wildcard include/config/use/percpu/numa/node/id.h) \ /root/linux-jps/arch/arm/include/asm/topology.h \ include/asm-generic/topology.h \ include/linux/mmdebug.h \ $(wildcard include/config/debug/vm.h) \ $(wildcard include/config/debug/virtual.h) \ include/linux/rbtree.h \ include/linux/debug_locks.h \ $(wildcard include/config/debug/locking/api/selftests.h) \ include/linux/mm_types.h \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/want/page/debug/flags.h) \ $(wildcard include/config/aio.h) \ $(wildcard include/config/mm/owner.h) \ $(wildcard include/config/mmu/notifier.h) \ include/linux/auxvec.h \ /root/linux-jps/arch/arm/include/asm/auxvec.h \ include/linux/page-debug-flags.h \ $(wildcard include/config/page/poisoning.h) \ $(wildcard include/config/page/debug/something/else.h) \ /root/linux-jps/arch/arm/include/asm/mmu.h \ $(wildcard include/config/cpu/has/asid.h) \ include/linux/range.h \ /root/linux-jps/arch/arm/include/asm/pgtable.h \ $(wildcard include/config/highpte.h) \ include/asm-generic/4level-fixup.h \ /root/linux-jps/arch/arm/include/asm/proc-fns.h \ /root/linux-jps/arch/arm/include/asm/glue-proc.h \ $(wildcard include/config/cpu/arm610.h) \ $(wildcard include/config/cpu/arm7tdmi.h) \ $(wildcard include/config/cpu/arm710.h) \ $(wildcard include/config/cpu/arm720t.h) \ $(wildcard include/config/cpu/arm740t.h) \ $(wildcard include/config/cpu/arm9tdmi.h) \ $(wildcard include/config/cpu/arm920t.h) \ $(wildcard include/config/cpu/arm922t.h) \ $(wildcard include/config/cpu/arm925t.h) \ $(wildcard include/config/cpu/arm926t.h) \ $(wildcard include/config/cpu/arm940t.h) \ $(wildcard include/config/cpu/arm946e.h) \ $(wildcard include/config/cpu/arm1020.h) \ $(wildcard include/config/cpu/arm1020e.h) \ $(wildcard include/config/cpu/arm1022.h) \ $(wildcard include/config/cpu/arm1026.h) \ $(wildcard include/config/cpu/mohawk.h) \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/cpu/v6k.h) \ $(wildcard include/config/cpu/v7.h) \ arch/arm/mach-rk30/include/mach/vmalloc.h \ /root/linux-jps/arch/arm/include/asm/pgtable-hwdef.h \ include/asm-generic/pgtable.h \ include/linux/page-flags.h \ $(wildcard include/config/pageflags/extended.h) \ $(wildcard include/config/arch/uses/pg/uncached.h) \ $(wildcard include/config/memory/failure.h) \ $(wildcard include/config/swap.h) \ $(wildcard include/config/s390.h) \ include/linux/huge_mm.h \ include/linux/vmstat.h \ $(wildcard include/config/vm/event/counters.h) \ include/linux/vm_event_item.h \ include/linux/pagemap.h \ include/linux/highmem.h \ $(wildcard include/config/x86/32.h) \ $(wildcard include/config/debug/highmem.h) \ include/linux/uaccess.h \ /root/linux-jps/arch/arm/include/asm/uaccess.h \ /root/linux-jps/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ include/linux/hardirq.h \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/virt/cpu/accounting.h) \ $(wildcard include/config/irq/time/accounting.h) \ include/linux/ftrace_irq.h \ $(wildcard include/config/ftrace/nmi/enter.h) \ /root/linux-jps/arch/arm/include/asm/hardirq.h \ $(wildcard include/config/local/timers.h) \ /root/linux-jps/arch/arm/include/asm/irq.h \ arch/arm/mach-rk30/include/mach/irqs.h \ include/linux/irq_cpustat.h \ /root/linux-jps/arch/arm/include/asm/cacheflush.h \ $(wildcard include/config/smp/on/up.h) \ $(wildcard include/config/arm/errata/411920.h) \ $(wildcard include/config/cpu/cache/vipt.h) \ /root/linux-jps/arch/arm/include/asm/glue-cache.h \ $(wildcard include/config/cpu/cache/v3.h) \ $(wildcard include/config/cpu/cache/v4.h) \ $(wildcard include/config/cpu/cache/v4wb.h) \ /root/linux-jps/arch/arm/include/asm/shmparam.h \ /root/linux-jps/arch/arm/include/asm/cachetype.h \ $(wildcard include/config/cpu/cache/vivt.h) \ /root/linux-jps/arch/arm/include/asm/kmap_types.h \ /root/linux-jps/arch/arm/include/asm/highmem.h \ $(wildcard include/config/cpu/tlb/v6.h) \ include/linux/hugetlb_inline.h \ include/linux/backing-dev.h \ $(wildcard include/config/debug/fs.h) \ include/linux/proportions.h \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/lockup/detector.h) \ $(wildcard include/config/detect/hung/task.h) \ $(wildcard include/config/core/dump/default/elf/headers.h) \ $(wildcard include/config/sched/autogroup.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/audit.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/fanotify.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/keys.h) \ $(wildcard include/config/perf/events.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/rcu/boost.h) \ $(wildcard include/config/compat/brk.h) \ $(wildcard include/config/cc/stackprotector.h) \ $(wildcard include/config/sysvipc.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/debug/stack/usage.h) \ $(wildcard include/config/cgroup/sched.h) \ /root/linux-jps/arch/arm/include/asm/param.h \ $(wildcard include/config/hz.h) \ include/linux/timex.h \ include/linux/param.h \ /root/linux-jps/arch/arm/include/asm/timex.h \ arch/arm/mach-rk30/include/mach/timex.h \ include/linux/jiffies.h \ /root/linux-jps/arch/arm/include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/sem.h \ include/linux/ipc.h \ /root/linux-jps/arch/arm/include/asm/ipcbuf.h \ /root/linux-jps/arch/arm/include/asm/sembuf.h \ include/linux/signal.h \ /root/linux-jps/arch/arm/include/asm/signal.h \ include/asm-generic/signal-defs.h \ /root/linux-jps/arch/arm/include/asm/sigcontext.h \ /root/linux-jps/arch/arm/include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/resource.h \ /root/linux-jps/arch/arm/include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ $(wildcard include/config/timerfd.h) \ include/linux/timerqueue.h \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/cred.h \ $(wildcard include/config/debug/credentials.h) \ $(wildcard include/config/user/ns.h) \ include/linux/key.h \ include/linux/sysctl.h \ include/linux/selinux.h \ $(wildcard include/config/security/selinux.h) \ include/linux/aio.h \ include/linux/workqueue.h \ $(wildcard include/config/debug/objects/work.h) \ $(wildcard include/config/freezer.h) \ include/linux/aio_abi.h \ include/linux/uio.h \ include/linux/writeback.h \ include/linux/pagevec.h \ include/linux/fadvise.h \ include/linux/syscalls.h \ $(wildcard include/config/ftrace/syscalls.h) \ $(wildcard include/config/ppc64.h) \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/mips.h) \ include/linux/unistd.h \ /root/linux-jps/arch/arm/include/asm/unistd.h \ $(wildcard include/config/oabi/compat.h) \ include/trace/syscall.h \ include/linux/tracepoint.h \ $(wildcard include/config/tracepoints.h) \ include/linux/jump_label.h \ $(wildcard include/config/jump/label.h) \ include/linux/ftrace_event.h \ include/linux/ring_buffer.h \ $(wildcard include/config/ring/buffer/allow/swap.h) \ include/linux/kmemcheck.h \ include/linux/seq_file.h \ include/linux/trace_seq.h \ include/linux/perf_event.h \ $(wildcard include/config/perf/use/vmalloc.h) \ $(wildcard include/config/cgroup/perf.h) \ $(wildcard include/config/event/tracing.h) \ include/linux/cgroup.h \ include/linux/cgroupstats.h \ include/linux/taskstats.h \ include/linux/prio_heap.h \ include/linux/idr.h \ include/linux/cgroup_subsys.h \ $(wildcard include/config/cgroup/debug.h) \ $(wildcard include/config/cgroup/cpuacct.h) \ $(wildcard include/config/cgroup/device.h) \ $(wildcard include/config/cgroup/freezer.h) \ $(wildcard include/config/net/cls/cgroup.h) \ $(wildcard include/config/blk/cgroup.h) \ /root/linux-jps/arch/arm/include/asm/perf_event.h \ /root/linux-jps/arch/arm/include/asm/local64.h \ include/asm-generic/local64.h \ include/linux/pid_namespace.h \ $(wildcard include/config/pid/ns.h) \ include/linux/nsproxy.h \ include/linux/kref.h \ include/linux/ftrace.h \ $(wildcard include/config/function/tracer.h) \ $(wildcard include/config/dynamic/ftrace.h) \ $(wildcard include/config/stack/tracer.h) \ $(wildcard include/config/frame/pointer.h) \ include/linux/trace_clock.h \ include/linux/kallsyms.h \ $(wildcard include/config/kallsyms.h) \ include/linux/module.h \ $(wildcard include/config/symbol/prefix.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/constructors.h) \ $(wildcard include/config/debug/set/module/ronx.h) \ include/linux/kmod.h \ include/linux/elf.h \ include/linux/elf-em.h \ /root/linux-jps/arch/arm/include/asm/elf.h \ /root/linux-jps/arch/arm/include/asm/user.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kobject_ns.h \ include/linux/moduleparam.h \ /root/linux-jps/arch/arm/include/asm/module.h \ $(wildcard include/config/arm/unwind.h) \ include/trace/events/module.h \ include/trace/define_trace.h \ /root/linux-jps/arch/arm/include/asm/ftrace.h \ $(wildcard include/config/old/mcount.h) \ include/linux/cpu.h \ $(wildcard include/config/arch/cpu/probe/release.h) \ $(wildcard include/config/pm/sleep/smp.h) \ include/linux/sysdev.h \ include/linux/pm.h \ $(wildcard include/config/pm.h) \ $(wildcard include/config/pm/sleep.h) \ $(wildcard include/config/pm/runtime.h) \ include/linux/node.h \ $(wildcard include/config/memory/hotplug/sparse.h) \ include/linux/irq_work.h \ /root/linux-jps/arch/arm/include/asm/local.h \ include/asm-generic/local.h \ mm/fadvise.o: $(deps_mm/fadvise.o) $(deps_mm/fadvise.o):
jpsminix/minix5
mm/.fadvise.o.cmd
bat
gpl-2.0
28,107
cmd_arch/arm/lib/copy_from_user.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,arch/arm/lib/.copy_from_user.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -gdwarf-2 -c -o arch/arm/lib/copy_from_user.o arch/arm/lib/copy_from_user.S deps_arch/arm/lib/copy_from_user.o := \ arch/arm/lib/copy_from_user.S \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/linkage.h \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/nkernel.h) \ $(wildcard include/config/arm/thumb.h) \ $(wildcard include/config/smp.h) \ /data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \ arch/arm/lib/copy_template.S \ arch/arm/lib/copy_from_user.o: $(deps_arch/arm/lib/copy_from_user.o) $(deps_arch/arm/lib/copy_from_user.o):
yohanes/Acer-BeTouch-E130-Linux-Kernel
arch/arm/lib/.copy_from_user.o.cmd
bat
gpl-2.0
1,562