[CLT2014]

- Update version
- Add CLT wallpaper based on artwork by the_dj21 (CORE-7808)
- Add hybrid CD tools

svn path=/branches/ros-branch-0_3_16-clt2014/; revision=62438
This commit is contained in:
Thomas Faber 2014-03-07 16:56:58 +00:00
parent ce66ff5056
commit 2858b84ce6
8 changed files with 94 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Before After
Before After

View file

@ -63,7 +63,7 @@ HKCU,"Control Panel\Desktop","ScreenSaveActive",2,"0"
HKCU,"Control Panel\Desktop","ScreenSaverIsSecure",2,"1" HKCU,"Control Panel\Desktop","ScreenSaverIsSecure",2,"1"
HKCU,"Control Panel\Desktop","ScreenSaveTimeOut",0,"600" HKCU,"Control Panel\Desktop","ScreenSaveTimeOut",0,"600"
HKCU,"Control Panel\Desktop","WaitToKillAppTimeout",2,"20000" HKCU,"Control Panel\Desktop","WaitToKillAppTimeout",2,"20000"
HKCU,"Control Panel\Desktop","Wallpaper",0x00000000,"" HKCU,"Control Panel\Desktop","Wallpaper",0x00000000,"%SystemRoot%\5DJGG-clt2014.bmp"
HKCU,"Control Panel\Desktop","FontSmoothing",0,"1" HKCU,"Control Panel\Desktop","FontSmoothing",0,"1"
HKCU,"Control Panel\Desktop","FontSmoothingOrientation",0x00010003,0x00000001 HKCU,"Control Panel\Desktop","FontSmoothingOrientation",0x00010003,0x00000001
HKCU,"Control Panel\Desktop","FontSmoothingType",0x00010003,0x00000001 HKCU,"Control Panel\Desktop","FontSmoothingType",0x00010003,0x00000001

View file

@ -0,0 +1,32 @@
[FREELOADER]
DefaultOS=Install
Timeout=10
[Display]
TitleText=ReactOS 0.3.16 - CLT 2014
StatusBarColor=Cyan
StatusBarTextColor=Black
BackdropTextColor=White
BackdropColor=Blue
BackdropFillStyle=Medium
TitleBoxTextColor=White
TitleBoxColor=Red
MessageBoxTextColor=White
MessageBoxColor=Blue
MenuTextColor=White
MenuColor=Blue
TextColor=Yellow
SelectedTextColor=Black
SelectedColor=Gray
[Operating Systems]
Install="ReactOS-Installation starten"
Live="ReactOS Live-System starten"
[Install]
BootType=ReactOSSetup
[Live]
BootType=Windows2003
SystemPath=LiveCD\live
Options=/DEBUGPORT=COM1 /SOS /MININT

View file

@ -32,11 +32,11 @@ endmacro()
today(KERNEL_VERSION_BUILD) today(KERNEL_VERSION_BUILD)
set(KERNEL_VERSION_MAJOR "0") set(KERNEL_VERSION_MAJOR "0")
set(KERNEL_VERSION_MINOR "4") set(KERNEL_VERSION_MINOR "3")
set(KERNEL_VERSION_PATCH_LEVEL "0") set(KERNEL_VERSION_PATCH_LEVEL "16")
set(COPYRIGHT_YEAR "2014") set(COPYRIGHT_YEAR "2014")
# KERNEL_VERSION_BUILD_TYPE is "SVN", "RC1", "RC2" or "" (for the release) # KERNEL_VERSION_BUILD_TYPE is "SVN", "RC1", "RC2" or "" (for the release)
set(KERNEL_VERSION_BUILD_TYPE "SVN") set(KERNEL_VERSION_BUILD_TYPE "CLT2014")
set(KERNEL_VERSION "${KERNEL_VERSION_MAJOR}.${KERNEL_VERSION_MINOR}") set(KERNEL_VERSION "${KERNEL_VERSION_MAJOR}.${KERNEL_VERSION_MINOR}")

57
reactos/make_hybridcd.cmd Normal file
View file

@ -0,0 +1,57 @@
:: Script to create a Hybrid-CD (Boot-CD + Live-CD) for demo purposes.
:: Only run it from the root "reactos" dir (where you would also call "make").
::
:: Written by Colin Finck (2010-03-10)
::
@echo off
:: Ensure that
:: - the user already built Boot-CDs and Live-CDs
:: - put his extra stuff into "hybridcd_extras"
:: - added a copy of mkisofs
if exist "boot\bootcd\." (
if exist "boot\livecd\." (
if exist "hybridcd_extras\." (
if exist "hybridcd_freeldr.ini" (
if exist "mkisofs.exe" (
goto NEXT
)
)
)
)
)
echo Please make sure to copy this file (make_hybridcd.cmd) and
echo hybridcd_freeldr.ini to the "reactos" subfolder in your build directory.
echo You should run make_hybridcd from there.
echo.
echo Also build regular Boot-CDs and Live-CDs first, and create a directory
echo "hybridcd_extras" (inside the reactos folder). Put everything else
echo that should go in the CD root into that directory.
echo.
echo You also need to put a version of "mkisofs.exe" into the reactos
echo directory. Get one from e.g. "PE Builder" at http://nu2.nu/.
echo Our cdmake doesn't support creating an ISO9660:1999 filesystem, which is
echo important for a universally usable disc.
goto :EOF
:: Create directories and copy the basic stuff there
:NEXT
rd /s /q "hybridcd"
mkdir "hybridcd"
mkdir "hybridcd\live"
mkdir "hybridcd\Profiles"
xcopy /e "boot\bootcd" "hybridcd"
xcopy /e "boot\livecd\reactos" "hybridcd\live"
xcopy /e "boot\livecd\Profiles" "hybridcd\Profiles"
:: Copy our modified "freeldr.ini"
copy /y "hybridcd_freeldr.ini" "hybridcd\freeldr.ini"
:: Copy the extra stuff
xcopy /e "hybridcd_extras" "hybridcd"
:: Create the ISO
mkisofs -iso-level 4 -volid "ReactOS-HybridCD" -b "loader/isoboot.bin" -no-emul-boot -boot-load-size 4 -hide "boot.catalog" -o "hybridcd.iso" "hybridcd"

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

View file

@ -0,0 +1 @@
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/5DJGG-clt2014.bmp DESTINATION reactos FOR all)