MountInfo.cのミス修正

テストプログラム更新

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1038 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
yoshida_teruhisa 2008-04-02 07:18:26 +00:00
parent 4f99db4398
commit 7301b9742d
67 changed files with 1262 additions and 42 deletions

View File

@ -139,7 +139,7 @@ void SYSMi_SetBootAppMountInfo( TitleProperty *pBootTitle )
int i;
u16 mask = 0;
if( pROMH->arm7_scfg_ext & ROM_SCFG_EXT_SD1_MASK ) {
mask = 0x0173; // SDIO[1]アクセスが有効なアプリは、nand:/, nand2:/, shared1:/, shared2:/, photo:/, sdmc:/を残す。
mask = 0x013b; // SDIO[1]アクセスが有効なアプリは、nand:/, nand2:/, shared1:/, shared2:/, photo:/, sdmc:/を残す。
}else {
mask = 0; // 全マウント情報クリア
}

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_0.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_1.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_2.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_3.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_4.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_5.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_6.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_7.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_8.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_9.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_a.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_b.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_c.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_d.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_e.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_f.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_g.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_h.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_i.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_j.bnr
###
### Setting for TWL

View File

@ -94,7 +94,7 @@ Property
#
# BANNER FILE: generated from Banner Spec File
#
BannerFile ../banner/banner.bnr
BannerFile ../banner/banner_k.bnr
###
### Setting for TWL

View File

@ -29,6 +29,13 @@
// extern data------------------------------------------
// function's prototype declaration---------------------
static BOOL ROTestCore( char *path, char *testfile );
static BOOL SRLTest( void );
static BOOL ContentTest( void );
static void FinalizeRWTest( FSFile *file, char* filename );
static BOOL RWTestCore( char *path, char *testfile );
static BOOL RWTest( char *path );
static void TestFSPermission( void );
// global variable -------------------------------------
RTCDrawProperty g_rtcDraw = {
@ -36,14 +43,219 @@ RTCDrawProperty g_rtcDraw = {
};
// static variable -------------------------------------
static BOOL s_quiettest = FALSE;
// const data -----------------------------------------
//======================================================
// ピクトチャット
// テストプログラム
//======================================================
// ピクトチャットの初期化
static BOOL ROTestCore( char *path, char *testfile )
{
char filename[256];
char testfilename[256];
int len;
char buf[5];
FSFile file[1];
FS_InitFile( file );
STD_TSNPrintf( filename, 256, "%s/%s", path, testfile );
STD_TSNPrintf( testfilename, 256, "%s/test.txt", path );
/*
if ( FS_CreateFile(testfilename, FS_PERMIT_R | FS_PERMIT_W) )
{
// ReadOnlyなので、ファイル作成成功したらだめ
if( !s_quiettest ) OS_TPrintf("%s:File Create succeed. (ReadOnly) \n",testfilename);
FS_DeleteFile( testfilename );
//return FALSE;
}
*/
// ファイルオープン
if ( FS_OpenFileEx( file, filename, FS_FILEMODE_W ) )
{
// ReadOnlyなので、Writeのファイルオープン成功したらだめ
if( !s_quiettest ) OS_TPrintf("%s:Write mode open succeed. (ReadOnly) \n",filename);
return FALSE;
}
// ファイルオープン
if ( !FS_OpenFileEx( file, filename, FS_FILEMODE_R ) )
{
// ファイルオープン失敗
if( !s_quiettest ) OS_TPrintf("%s:open failed.\n",filename);
return FALSE;
}
// ファイルリード
len = FS_ReadFile( file, buf, 3 );
if( len != 3 )
{
// リード失敗
if( !s_quiettest ) OS_TPrintf("%s:read failed.\n",filename);
FS_CloseFile( file );
return FALSE;
}
// ファイルクローズ
if( !FS_CloseFile( file ) )
{
// クローズ失敗
if( !s_quiettest ) OS_TPrintf("%s:close failed.\n",filename);
return FALSE;
}
return TRUE;
}
static BOOL SRLTest( void )
{
return ROTestCore( "nand:", "<srl>" );
}
static BOOL ContentTest( void )
{
return ROTestCore( "content:", "title.tmd" );
}
static BOOL Shared1Test( void )
{
return ROTestCore( "shared1:", "TWLCFG0.dat" );
}
static void FinalizeRWTest( FSFile *file, char* filename )
{
FS_CloseFile( file );
FS_DeleteFile( filename );
}
// パス名は最後にスラッシュを入れない事
static BOOL RWTestCore( char *path, char *testfile )
{
char filename[256];
int len;
char buf[5];
FSFile file[1];
FS_InitFile( file );
STD_TSNPrintf( filename, 256, "%s/%s", path, testfile );
// ファイル残ってると嫌なので削除を先に走らせておく(テスト結果には影響せず)
FS_DeleteFile(filename);
// ファイル作成テスト
if ( FS_CreateFile(filename, FS_PERMIT_R | FS_PERMIT_W) )
{
// ファイルオープン
if ( !FS_OpenFileEx( file, filename, FS_FILEMODE_W ) )
{
// ファイルオープン失敗
if( !s_quiettest ) OS_TPrintf("%s:open failed.\n",filename);
FS_DeleteFile( filename );
return FALSE;
}
// ファイルライト
len = FS_WriteFile( file, "test", 5);
if( len != 5 )
{
// ライト失敗
if( !s_quiettest ) OS_TPrintf("%s:write failed.\n",filename);
FinalizeRWTest( file, filename );
return FALSE;
}
// ファイルクローズ
if( !FS_CloseFile( file ) )
{
// クローズ失敗
if( !s_quiettest ) OS_TPrintf("%s:close failed.\n",filename);
FinalizeRWTest( file, filename );
return FALSE;
}
// ファイルオープン
if ( !FS_OpenFileEx( file, filename, FS_FILEMODE_R ) )
{
// ファイルオープン失敗
if( !s_quiettest ) OS_TPrintf("%s:open failed.\n",filename);
FS_DeleteFile( filename );
return FALSE;
}
// ファイルリード
len = FS_ReadFile( file, buf, len );
if( len != 5 || STD_CompareString( buf, "test" ) != 0 )
{
// リード失敗
if( !s_quiettest ) OS_TPrintf("%s:read failed.\n",filename);
FinalizeRWTest( file, filename );
return FALSE;
}
// ファイルクローズ
if( !FS_CloseFile( file ) )
{
// クローズ失敗
if( !s_quiettest ) OS_TPrintf("%s:close failed.\n",filename);
FinalizeRWTest( file, filename );
return FALSE;
}
// ファイルデリート
if( !FS_DeleteFile( filename ))
{
// デリート失敗
if( !s_quiettest ) OS_TPrintf("%s:delete failed.\n",filename);
FinalizeRWTest( file, filename );
return FALSE;
}
}else
{
// ファイル作成失敗
if( !s_quiettest ) OS_TPrintf("%s:cleate failed.\n",filename);
return FALSE;
}
return TRUE;
}
static BOOL RWTest( char *path )
{
return RWTestCore( path, "test.txt" );
}
static BOOL TMPJumpTest( void )
{
return RWTestCore( "nand:", "<tmpjump>" );
}
u8 tempbuf[ LCFG_TEMP_BUFFER_SIZE * 2 ];
static void TestFSPermission( void )
{
BOOL result[15];
int l;
result[0] = RWTest( "nand:" ); // nand:
result[1] = RWTest( "nand2:" ); // nand2:
result[2] = ContentTest(); // content:
result[3] = Shared1Test(); // shared1:
result[4] = RWTest( "shared2:" ); // shared2:
result[5] = RWTest( "photo:" ); // photo:
result[6] = RWTest( "dataPub:" ); // dataPub:
result[7] = RWTest( "dataPrv:" ); // dataPrv:
result[8] = RWTest( "sdmc:" ); // sdmc
result[9] = RWTest( "nand:/sys" ); // nand:/sys
result[10] = RWTest( "nand:/import" ); // nand:/import
result[11] = RWTest( "nand:/tmp" ); // nand:/tmp
result[12] = SRLTest(); // nand:/<srl>
result[13] = OS_DeleteSubBannerFile(); // nand:/<banner>
result[14] = TMPJumpTest(); // nand:/<tmpjump>
OS_TPrintf( "Result:\n" );
for( l=0; l<15; l++ )
{
OS_TPrintf( "%s ", ( result[l] ? "" : "×" ) );
}
OS_TPrintf( "\n" );
}
// テストプログラムの初期化
void RomTypeTestInit( void )
{
GX_DispOff();
@ -51,7 +263,8 @@ void RomTypeTestInit( void )
NNS_G2dCharCanvasClear( &gCanvas, TXT_COLOR_WHITE );
PutStringUTF16( 1 * 8, 0 * 8, TXT_COLOR_BLUE, (const u16 *)L"RomTypeTest");
PutStringUTF16( 4 * 8, 8 * 8, TXT_COLOR_BLACK, (const u16 *)L"Under Construction...");
PutStringUTF16( 4 * 8, 8 * 8, TXT_COLOR_BLACK, (const u16 *)L"Push A To Start Test.");
PutStringUTF16( 4 * 8, 10 * 8, TXT_COLOR_BLACK, (const u16 *)L"Push X To Start Test Quietly.");
GetAndDrawRTCData( &g_rtcDraw, TRUE );
GXS_SetVisiblePlane( GX_PLANEMASK_BG0 );
@ -60,7 +273,7 @@ void RomTypeTestInit( void )
}
// ピクトチャットのメインループ
// テストプログラムのメインループ
void RomTypeTestMain(void)
{
BOOL tp_cancel = FALSE;
@ -73,6 +286,16 @@ void RomTypeTestMain(void)
RETURN_BUTTON_BOTTOM_X * 8, RETURN_BUTTON_BOTTOM_Y * 8 - 4, &tpd.disp );
}
if( ( pad.trg & PAD_BUTTON_A ) ) {
s_quiettest = FALSE;
TestFSPermission();
}
if( ( pad.trg & PAD_BUTTON_X ) ) {
s_quiettest = TRUE;
TestFSPermission();
}
if( ( pad.trg & PAD_BUTTON_B ) || tp_cancel ) {
// SYSM_RebootLauncher();
}

View File

@ -18,20 +18,11 @@
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner.bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
SUBDIRS =
SUBMAKES = Makefile.0 Makefile.1 Makefile.2 Makefile.3 Makefile.4 Makefile.5 \
Makefile.6 Makefile.7 Makefile.8 Makefile.9 Makefile.a Makefile.b \
Makefile.c Makefile.d Makefile.e Makefile.f Makefile.g Makefile.h \
Makefile.i Makefile.j Makefile.k
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
@ -40,7 +31,5 @@ include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = 0
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = 1
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = 2
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = 3
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = 4
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = 5
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = 6
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = 7
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = 8
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = 9
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = a
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = b
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = c
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = d
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = e
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = f
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = g
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = h
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = i
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = j
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

View File

@ -0,0 +1,48 @@
#! make -f
#----------------------------------------------------------------------------
# Project: TwlIPL
# File: Makefile
#
# Copyright 2007 Nintendo. All rights reserved.
#
# These coded instructions, statements, and computer programs contain
# proprietary information of Nintendo of America Inc. and/or Nintendo
# Company Ltd., and are protected by Federal copyright law. They may
# not be disclosed to third parties or copied or duplicated in any form,
# in whole or in part, without the prior written consent of Nintendo.
#
# $Date:: $
# $Rev$
# $Author$
#----------------------------------------------------------------------------
include $(TWL_IPL_RED_ROOT)/build/buildtools/commondefs
BNRNUM = k
ICON_DIR = ./icon
BANNER_SPEC = test-utf16_$(BNRNUM)_v3.TWL.bsf
MAKEBANNER = $(TWL_TOOLSDIR)/bin/makebanner.TWL.exe
TARGETS = banner_$(BNRNUM).bnr
INSTALL_DIR = ./
INSTALL_TARGETS = $(TARGETS)
BANNER_ICON_NAME = $(basename $(BANNER_ICON))
LDIRT_CLEAN = $(TARGETS) \
$(TARGETS:.bnr=.srl)
include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules
#----------------------------------------------------------------------------
# build
#----------------------------------------------------------------------------
do-build: $(TARGETS)
$(TARGETS): $(BANNER_SPEC)
$(MAKEBANNER) -p TWL $(BANNER_SPEC) $(TARGETS)
#

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.