コメント追加。aes鍵設定の警告メッセージを削除

git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_Repair@716 385bec56-5757-e545-9c3a-d8741f4650f1
This commit is contained in:
N2614 2013-02-20 04:52:58 +00:00
parent f0942f6dbb
commit 87cc3b38bc
3 changed files with 15 additions and 6 deletions

View File

@ -1,5 +1,13 @@
#!/usr/bin/env bash
################################
#ビルド用スクリプト
################################
#
# 1. common/version.h を変更する
# 2. 開発実機用ビルドは build.sh UNFIXEDKEY
# 製品実機用ビルドは build.sh RELEASE
set -u
set -e

View File

@ -19,12 +19,6 @@
//マスタリング用ビルド時に有効にする
//#define USE_PROD_KEY
#ifdef NN_BUILD_RELEASE
#ifndef USE_PROD_KEY
#warning !! Using Development Key on Release Build !!
#endif
#endif
#include <nn/drivers/aes/CTR/ARM946ES/driverAes_Types.h>
namespace common

View File

@ -17,8 +17,15 @@
#ifndef VERSION_H_
#define VERSION_H_
// ツールの構成が大幅に変更された時に変更する。現在1.5NUP以下は1、2ndNUP以降は2
#define CONSOLE_REPAIR_VERSION_MAJOR "2"
// 同じMAJORバージョン内で互換性のない変更がある時に変更する。
// BackupとRestoreでバージョンを合わせる。
#define CONSOLE_REPAIR_VERSION_MINOR "2"
// 同じMAJORバージョン内で互換性のある変更がある時に変更する。
// Backup単体またはRestore単体のみの変更時に修正することが多い。
#define CONSOLE_REPAIR_VERSION_MICRO "4"
#endif /* VERSION_H_ */