# HG changeset patch # User Michael Spacefalcon # Date 1409451390 0 # Node ID 8b07fb500d36ae581998082a8c78383e9cc1a22d # Parent aa93994e9f63fb96e803fac79b44af85f07e5bb2 L1 standalone: PEIs hooked into gpf/conf/barecomp.c diff -r aa93994e9f63 -r 8b07fb500d36 gsm-fw/gpf/conf/barecomp.c --- a/gsm-fw/gpf/conf/barecomp.c Sun Aug 31 00:28:01 2014 +0000 +++ b/gsm-fw/gpf/conf/barecomp.c Sun Aug 31 02:16:30 2014 +0000 @@ -38,8 +38,9 @@ extern SHORT tstrcv_pei_create(T_PEI_INFO const **Info); extern SHORT tstsnd_pei_create(T_PEI_INFO const **Info); -#if CONFIG_GSM -extern SHORT l1_pei_create (T_PEI_INFO const **Info); +#if CONFIG_L1_STANDALONE +extern SHORT l1_pei_create (T_PEI_INFO const **Info); +extern SHORT l1stand_fwd_pei_create (T_PEI_INFO const **info); #endif /*==== VARIABLES ==================================================*/ @@ -68,7 +69,13 @@ { NULL, NULL, 0 } }; -#if CONFIG_GSM +#if CONFIG_L1_STANDALONE +const T_COMPONENT_ADDRESS l1fwd_list[] = +{ + { l1stand_fwd_pei_create, NULL, ASSIGNED_BY_TI }, + { NULL, NULL, 0 } +}; + const T_COMPONENT_ADDRESS l1_list[] = { { l1_pei_create, NULL, ASSIGNED_BY_TI }, @@ -80,7 +87,8 @@ { tstrcv_list, tstsnd_list, -#if CONFIG_GSM +#if CONFIG_L1_STANDALONE + l1fwd_list, l1_list, #endif NULL