--- a/baseport/syborg/hal/values.hda Fri Aug 27 16:03:29 2010 +0100
+++ b/baseport/syborg/hal/values.hda Fri Aug 27 17:26:55 2010 +0100
@@ -3,7 +3,9 @@
EManufacturerSoftwareRev=0x100
EManufacturerSoftwareBuild=0x250
EModel=0x42525453
-EMachineUid=OmapH4
+// NTT Docomo - Defect 1292 fix - E32test t_mstim.exe failed to load test LDD - start
+EMachineUid=0x10005152
+// NTT Docomo - Defect 1292 fix - E32test t_mstim.exe failed to load test LDD - end
EDeviceFamily=crystal
EDeviceFamilyRev=0x001
ECPU=arm
--- a/baseport/syborg/specific/assp.cpp Fri Aug 27 16:03:29 2010 +0100
+++ b/baseport/syborg/specific/assp.cpp Fri Aug 27 17:26:55 2010 +0100
@@ -11,6 +11,7 @@
*
* Contributors:
* NTT Docomo, Inc : BUG 1296
+* NTT DOCOMO, INC - Fix for bug 1292 "E32test t_mstim.exe failed to load test LDD"
*
* Description: implementation of class Syborg
*
@@ -81,7 +82,10 @@
TVariantInfoV01& info = infoBuf();
TUint clock=0;
info.iRomVersion = Epoc::RomHeader().iVersion;
- info.iMachineUniqueId = (TInt64(HALData::EMachineUid_OmapH4)<<32);
+// NTT Docomo - Defect 1292 fix - E32test t_mstim.exe failed to load test LDD - start
+ const TInt KMachineUid_Syborg = 0x10005152;
+ info.iMachineUniqueId = (TInt64(KMachineUid_Syborg)<<32);
+// NTT Docomo - Defect 1292 fix - E32test t_mstim.exe failed to load test LDD - end
info.iLedCapabilities = (8<<16) + KLedMaskGreen1;
info.iProcessorClockInKHz = clock;
info.iSpeedFactor = clock/25;