[zaptel-commits] kpfleming: trunk r1989 - in /trunk: ./
wct4xxp/base.c
zaptel-commits at lists.digium.com
zaptel-commits at lists.digium.com
Sat Jan 27 09:17:42 MST 2007
Author: kpfleming
Date: Sat Jan 27 10:17:41 2007
New Revision: 1989
URL: http://svn.digium.com/view/zaptel?view=rev&rev=1989
Log:
Merged revisions 1988 via svnmerge from
https://origsvn.digium.com/svn/zaptel/branches/1.4
................
r1988 | kpfleming | 2007-01-27 10:16:03 -0600 (Sat, 27 Jan 2007) | 10 lines
Merged revisions 1987 via svnmerge from
https://origsvn.digium.com/svn/zaptel/branches/1.2
........
r1987 | kpfleming | 2007-01-27 10:14:54 -0600 (Sat, 27 Jan 2007) | 2 lines
properly reference the size symbol produced by objcopy
........
................
Modified:
trunk/ (props changed)
trunk/wct4xxp/base.c
Propchange: trunk/
('branch-1.2-merged' removed)
Propchange: trunk/
------------------------------------------------------------------------------
--- branch-1.4-merged (original)
+++ branch-1.4-merged Sat Jan 27 10:17:41 2007
@@ -1,1 +1,1 @@
-/branches/1.4:1-1471,1490,1500,1507,1520,1528,1530,1536,1543,1547,1568,1574,1576,1601,1611,1615,1642,1661,1664,1687,1698,1701,1767,1774,1820,1828,1836,1878,1887,1892,1899,1913,1921,1924,1937,1944,1954
+/branches/1.4:1-1471,1490,1500,1507,1520,1528,1530,1536,1543,1547,1568,1574,1576,1601,1611,1615,1642,1661,1664,1687,1698,1701,1767,1774,1820,1828,1836,1878,1887,1892,1899,1913,1921,1924,1937,1944,1954,1988
Modified: trunk/wct4xxp/base.c
URL: http://svn.digium.com/view/zaptel/trunk/wct4xxp/base.c?view=diff&rev=1989&r1=1988&r2=1989
==============================================================================
--- trunk/wct4xxp/base.c (original)
+++ trunk/wct4xxp/base.c Sat Jan 27 10:17:41 2007
@@ -3107,8 +3107,8 @@
struct firmware embedded_firmware;
const struct firmware *firmware = &embedded_firmware;
#if !defined(HOTPLUG_FIRMWARE)
- extern const u32 _binary_OCT6114_64D_ima_size;
- extern const u32 _binary_OCT6114_128D_ima_size;
+ extern const u32 *_binary_OCT6114_64D_ima_size;
+ extern const u32 *_binary_OCT6114_128D_ima_size;
extern u8 _binary_OCT6114_64D_ima_start[];
extern u8 _binary_OCT6114_128D_ima_start[];
#endif
@@ -3147,7 +3147,7 @@
}
#else
embedded_firmware.data = _binary_OCT6114_64D_ima_start;
- embedded_firmware.size = _binary_OCT6114_64D_ima_size;
+ embedded_firmware.size = *_binary_OCT6114_64D_ima_size;
#endif
break;
case 128:
@@ -3159,7 +3159,7 @@
}
#else
embedded_firmware.data = _binary_OCT6114_128D_ima_start;
- embedded_firmware.size = _binary_OCT6114_128D_ima_size;
+ embedded_firmware.size = *_binary_OCT6114_128D_ima_size;
#endif
break;
default:
More information about the zaptel-commits
mailing list