mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
コンポーネント側でSEAを使わないようになっていたので、とりあえずMakeが通って動くように修正
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1132 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
70a73bd2a0
commit
9ce807c466
@ -56,7 +56,8 @@ CCFLAGS += -DSDK_NOCRYPTO
|
||||
endif
|
||||
|
||||
ifndef TWLSDK_NOCRYPTO
|
||||
MAKELCF_FLAGS += -DUSE_CRYPTO_LIBS='libaes_sp$(TWL_LIBSUFFIX).a'
|
||||
MAKELCF_FLAGS += -DUSE_CRYPTO_LIBS='libsea_sp$(TWL_LIBSUFFIX).a libcrypto_sp$(TWL_LIBSUFFIX).a'
|
||||
MACRO_FLAGS += -DSDK_SEA
|
||||
endif
|
||||
|
||||
MACRO_FLAGS += -DSDK_SYSMENU_BUILD
|
||||
|
||||
@ -195,7 +195,9 @@ Autoload WRAM
|
||||
libreloc_info_sp$(LIBSUFFIX).a \
|
||||
libsysmenu_sp$(LIBSUFFIX).a \
|
||||
libsysmmcu_sp$(LIBSUFFIX).a \
|
||||
libaes_sp.firm.LTD.a
|
||||
libaes_sp.firm.LTD.a \
|
||||
libsea_sp$(LIBSUFFIX).a \
|
||||
libcrypto_sp$(LIBSUFFIX).a
|
||||
|
||||
Library libathdrv_sp$(LIBSUFFIX).a (.bss)
|
||||
Library libathdrv_sp$(LIBSUFFIX).a (.data)
|
||||
|
||||
@ -42,6 +42,7 @@
|
||||
#include "pm_pmic.h"
|
||||
#include "internal_api.h"
|
||||
#include "nvram_sp.h"
|
||||
#include "twl/sea.h"
|
||||
|
||||
/*---------------------------------------------------------------------------*
|
||||
’è<EFBFBD>”’è‹`
|
||||
@ -176,6 +177,9 @@ TwlSpMain(void)
|
||||
InitializeNwm(mainHeapHandle, mainHeapHandle); // NWM <20>‰Šú‰»
|
||||
#ifndef SDK_NOCRYPTO
|
||||
AES_Init(); // AES <20>‰Šú‰»
|
||||
#ifdef SDK_SEA
|
||||
SEA_Init();
|
||||
#endif // ifdef SDK_SEA
|
||||
#endif
|
||||
MCU_InitIrq(THREAD_PRIO_MCU); // MCU <20>‰Šú‰»
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user