mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
- Implement RtlGetAce() - Fix bug which cause RtlCreateAcl() to always fail. - Cleanup parameter names and fix bug that caused a buffer overrun in RtlCopySidAndAttributesArray() - When referencing the token object in NtQueryInformationToken() pass in either TOKEN_QUERY access or TOKEN_QUERY_SOURCE access. Passing in zero led to ObReferenceObjectByHandle() always failing with ACCESS_DENIED. - Fixed NtQueryInformationToken() to check the buffer length and return STATUS_BUFFER_TO_SMALL and the required length. - Ensure that the ReturnLength is set correctly when NtQueryInformationToken() succeeds. Previously, it was set to the number of bytes unused in the user buffer in some cases or not set at all. - Handle case of NULL default dacl correctly in NtQueryInformationToken() - Update main makefile to build apps\utils. - Update makefiles in apps\utils to have the correct PATH_TO_TOP. - Update main makefile to build apps\tests\tokentest Written by Joseph Galbraith. svn path=/trunk/; revision=3024
106 lines
5.0 KiB
Batchfile
106 lines
5.0 KiB
Batchfile
@echo off
|
|
if "%1" == "" goto NoParameter
|
|
set ROS_INSTALL=%1
|
|
goto Install
|
|
:NoParameter
|
|
set ROS_INSTALL=c:\reactos
|
|
:Install
|
|
echo on
|
|
echo Installing to %ROS_INSTALL%
|
|
@echo off
|
|
|
|
md %ROS_INSTALL%
|
|
md %ROS_INSTALL%\bin
|
|
md %ROS_INSTALL%\symbols
|
|
md %ROS_INSTALL%\system32
|
|
md %ROS_INSTALL%\system32\config
|
|
md %ROS_INSTALL%\system32\drivers
|
|
md %ROS_INSTALL%\media
|
|
md %ROS_INSTALL%\media\fonts
|
|
copy boot.bat %ROS_INSTALL%
|
|
copy bootc.lst %ROS_INSTALL%
|
|
copy aboot.bat %ROS_INSTALL%
|
|
copy system.hiv %ROS_INSTALL%\system32\config
|
|
copy loaders\dos\loadros.com %ROS_INSTALL%
|
|
copy ntoskrnl\ntoskrnl.exe %ROS_INSTALL%\system32
|
|
copy ntoskrnl\ntoskrnl.sym %ROS_INSTALL%\symbols
|
|
copy hal\halx86\hal.dll %ROS_INSTALL%\system32
|
|
copy drivers\fs\vfat\vfatfs.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\fs\cdfs\cdfs.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\fs\fs_rec\fs_rec.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\fs\ms\msfs.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\fs\np\npfs.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\bus\acpi\acpi.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\bus\isapnp\isapnp.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\bus\pci\pci.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\dd\ide\ide.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\dd\floppy\floppy.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\input\keyboard\keyboard.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\input\mouclass\mouclass.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\input\psaux\psaux.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\dd\blue\blue.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\dd\vga\miniport\vgamp.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\dd\vga\display\vgaddi.dll %ROS_INSTALL%\system32\drivers
|
|
copy drivers\dd\vidport\vidport.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\net\afd\afd.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\net\dd\ne2000\ne2000.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\net\ndis\ndis.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\net\tcpip\tcpip.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\net\wshtcpip\wshtcpip.dll %ROS_INSTALL%\system32
|
|
copy drivers\storage\atapi\atapi.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\storage\scsiport\scsiport.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\storage\cdrom\cdrom.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\storage\disk\disk.sys %ROS_INSTALL%\system32\drivers
|
|
copy drivers\storage\class2\class2.sys %ROS_INSTALL%\system32\drivers
|
|
copy subsys\system\autochk\autochk.exe %ROS_INSTALL%\system32
|
|
copy subsys\system\shell\shell.exe %ROS_INSTALL%\system32
|
|
copy subsys\system\winlogon\winlogon.exe %ROS_INSTALL%\system32
|
|
copy subsys\system\services\services.exe %ROS_INSTALL%\system32
|
|
copy lib\advapi32\advapi32.dll %ROS_INSTALL%\system32
|
|
copy lib\crtdll\crtdll.dll %ROS_INSTALL%\system32
|
|
copy lib\fmifs\fmifs.dll %ROS_INSTALL%\system32
|
|
copy lib\gdi32\gdi32.dll %ROS_INSTALL%\system32
|
|
copy lib\kernel32\kernel32.dll %ROS_INSTALL%\system32
|
|
copy lib\msafd\msafd.dll %ROS_INSTALL%\system32
|
|
copy lib\msvcrt\msvcrt.dll %ROS_INSTALL%\system32
|
|
copy lib\ntdll\ntdll.dll %ROS_INSTALL%\system32
|
|
copy lib\secur32\secur32.dll %ROS_INSTALL%\system32
|
|
copy lib\user32\user32.dll %ROS_INSTALL%\system32
|
|
copy lib\ws2_32\ws2_32.dll %ROS_INSTALL%\system32
|
|
copy subsys\smss\smss.exe %ROS_INSTALL%\system32
|
|
copy subsys\csrss\csrss.exe %ROS_INSTALL%\system32
|
|
copy subsys\win32k\win32k.sys %ROS_INSTALL%\system32\drivers
|
|
copy apps\utils\cat\cat.exe %ROS_INSTALL%\bin
|
|
copy apps\utils\partinfo\partinfo.exe %ROS_INSTALL%\bin
|
|
copy apps\utils\objdir\objdir.exe %ROS_INSTALL%\bin
|
|
copy apps\utils\pice\module\pice.sys %ROS_INSTALL%\system32\drivers
|
|
copy apps\utils\pice\module\pice.sym %ROS_INSTALL%\symbols
|
|
copy apps\utils\pice\pice.cfg %ROS_INSTALL%\symbols
|
|
copy apps\tests\hello\hello.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\args\args.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\apc\apc.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\shm\shmsrv.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\shm\shmclt.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\lpc\lpcsrv.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\lpc\lpcclt.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\thread\thread.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\event\event.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\file\file.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\pteb\pteb.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\consume\consume.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\vmtest\vmtest.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\gditest\gditest.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\mstest\msserver.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\mstest\msclient.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\nptest\npserver.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\nptest\npclient.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\atomtest\atomtest.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\mutex\mutex.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\winhello\winhello.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\sectest\sectest.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\isotest\isotest.exe %ROS_INSTALL%\bin
|
|
copy apps\tests\tokentest\tokentest.exe %ROS_INSTALL%\bin
|
|
copy media\fonts\helb____.ttf %ROS_INSTALL%\media\fonts
|
|
copy media\fonts\timr____.ttf %ROS_INSTALL%\media\fonts
|
|
copy media\nls\*.nls %ROS_INSTALL%\system32
|