sl@0
|
1 |
# Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
# All rights reserved.
|
sl@0
|
3 |
# This component and the accompanying materials are made available
|
sl@0
|
4 |
# under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
# which accompanies this distribution, and is available
|
sl@0
|
6 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
#
|
sl@0
|
8 |
# Initial Contributors:
|
sl@0
|
9 |
# Nokia Corporation - initial contribution.
|
sl@0
|
10 |
#
|
sl@0
|
11 |
# Contributors:
|
sl@0
|
12 |
#
|
sl@0
|
13 |
# Description:
|
sl@0
|
14 |
# Write a Feature Registry Configuration File
|
sl@0
|
15 |
#
|
sl@0
|
16 |
#
|
sl@0
|
17 |
|
sl@0
|
18 |
use strict;
|
sl@0
|
19 |
|
sl@0
|
20 |
my $record = pack 'a4I3',
|
sl@0
|
21 |
'feat', # Must be exactly this
|
sl@0
|
22 |
0, # Must be exactly this
|
sl@0
|
23 |
3, # feature entry count
|
sl@0
|
24 |
2; # default-supported range count
|
sl@0
|
25 |
# Feature Entries:
|
sl@0
|
26 |
$record .= pack 'I6',
|
sl@0
|
27 |
1, # UID1
|
sl@0
|
28 |
1, # status of UID1 (bit 0 = 0x1 is set if feature is present)
|
sl@0
|
29 |
59, # UID2
|
sl@0
|
30 |
3, # status
|
sl@0
|
31 |
60, # and so on
|
sl@0
|
32 |
0; # ...
|
sl@0
|
33 |
# Default Supported Ranges:
|
sl@0
|
34 |
$record .= pack 'I2',
|
sl@0
|
35 |
50, # Low UID
|
sl@0
|
36 |
200; # High UID
|
sl@0
|
37 |
# Symbian Essential Default supported range
|
sl@0
|
38 |
$record .= pack 'I2',
|
sl@0
|
39 |
0x10279806,# Low UID
|
sl@0
|
40 |
0x10281805;# High UID
|
sl@0
|
41 |
#$record .= '?' x 66000; # to make the file larger than the limit
|
sl@0
|
42 |
|
sl@0
|
43 |
my $BINCONFIG;
|
sl@0
|
44 |
open ($BINCONFIG, '>featreg.cfg') or die "Could not open binary config file for writing\n";
|
sl@0
|
45 |
binmode $BINCONFIG;
|
sl@0
|
46 |
syswrite $BINCONFIG, $record, length $record;
|
sl@0
|
47 |
close($BINCONFIG);
|
sl@0
|
48 |
exit;
|