Author: hbelusca Date: Sat Jan 3 16:51:26 2015 New Revision: 65963
URL: http://svn.reactos.org/svn/reactos?rev=65963&view=rev Log: [FREELDR] - Move inXfile and rtl code into a lib subdir, - Minor comment formatting.
Added: trunk/reactos/boot/freeldr/freeldr/lib/ (with props) trunk/reactos/boot/freeldr/freeldr/lib/inffile/ - copied from r65943, trunk/reactos/boot/freeldr/freeldr/inffile/ trunk/reactos/boot/freeldr/freeldr/lib/inifile/ - copied from r65943, trunk/reactos/boot/freeldr/freeldr/inifile/ trunk/reactos/boot/freeldr/freeldr/lib/rtl/ - copied from r65943, trunk/reactos/boot/freeldr/freeldr/rtl/ Removed: trunk/reactos/boot/freeldr/freeldr/inffile/ trunk/reactos/boot/freeldr/freeldr/inifile/ trunk/reactos/boot/freeldr/freeldr/rtl/ Modified: trunk/reactos/boot/freeldr/freeldr/CMakeLists.txt trunk/reactos/boot/freeldr/freeldr/windows/setupldr.c trunk/reactos/boot/freeldr/freeldr/windows/winldr.c
Modified: trunk/reactos/boot/freeldr/freeldr/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/CMakeL... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/CMakeLists.txt [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/freeldr/CMakeLists.txt [iso-8859-1] Sat Jan 3 16:51:26 2015 @@ -53,9 +53,9 @@ fs/fs.c fs/iso.c fs/ntfs.c - inifile/ini_init.c - inifile/inifile.c - inifile/parse.c + lib/inifile/ini_init.c + lib/inifile/inifile.c + lib/inifile/parse.c mm/meminit.c mm/mm.c mm/heap.c @@ -177,8 +177,8 @@ list(APPEND FREELDR_BASE_SOURCE bootmgr.c # This file is compiled with custom definitions freeldr.c - inffile/inffile.c - rtl/libsupp.c) + lib/inffile/inffile.c + lib/rtl/libsupp.c)
if(NOT MSVC) list(APPEND FREELDR_BASE_SOURCE ${CMAKE_CURRENT_BINARY_DIR}/freeldr.def)
Propchange: trunk/reactos/boot/freeldr/freeldr/lib/ ------------------------------------------------------------------------------ --- bugtraq:logregex (added) +++ bugtraq:logregex Sat Jan 3 16:51:26 2015 @@ -0,0 +1 @@ +((CORE|ROSTESTS|ROSAPPS)-\d+)(,? ?((CORE|ROSTESTS|ROSAPPS)-\d+))*(,? ?(and |or )?((CORE|ROSTESTS|ROSAPPS)-\d+))?
Propchange: trunk/reactos/boot/freeldr/freeldr/lib/ ------------------------------------------------------------------------------ bugtraq:message = See issue %BUGID% for more details.
Propchange: trunk/reactos/boot/freeldr/freeldr/lib/ ------------------------------------------------------------------------------ bugtraq:url = https://jira.reactos.org/browse/%BUGID%
Propchange: trunk/reactos/boot/freeldr/freeldr/lib/ ------------------------------------------------------------------------------ tsvn:logminsize = 10
Modified: trunk/reactos/boot/freeldr/freeldr/windows/setupldr.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/window... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/windows/setupldr.c [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/freeldr/windows/setupldr.c [iso-8859-1] Sat Jan 3 16:51:26 2015 @@ -296,7 +296,7 @@ /* Close the inf file */ InfCloseFile(InfHandle);
- /* Load ReactOS */ + /* Load ReactOS Setup */ LoadAndBootWindowsCommon(_WIN32_WINNT_WS03, LoaderBlock, BootOptions,
Modified: trunk/reactos/boot/freeldr/freeldr/windows/winldr.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/window... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/windows/winldr.c [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/freeldr/windows/winldr.c [iso-8859-1] Sat Jan 3 16:51:26 2015 @@ -603,13 +603,12 @@ BOOLEAN Status; PLOADER_PARAMETER_BLOCK LoaderBlock;
- // Get OS setting value + /* Get OS setting value */ SettingsValue[0] = ANSI_NULL; IniOpenSection("Operating Systems", &SectionId); IniReadSettingByName(SectionId, SectionName, SettingsValue, sizeof(SettingsValue));
- // Open the operating system section - // specified in the .ini file + /* Open the operating system section specified in the .ini file */ HasSection = IniOpenSection(SectionName, &SectionId);
UiDrawBackdrop(); @@ -781,13 +780,6 @@ WinLdrpDumpArcDisks(LoaderBlockVA); #endif
- //FIXME: If I substitute this debugging checkpoint, GCC will "optimize away" the code below - //while (1) {}; - /*asm(".intel_syntax noprefix\n"); - asm("test1:\n"); - asm("jmp test1\n"); - asm(".att_syntax\n");*/ - /* Pass control */ (*KiSystemStartup)(LoaderBlockVA); }