mirror of
https://github.com/rvtr/ctr_Repair.git
synced 2025-10-31 13:51:08 -04:00
リビジョン 716 を trunk/ConsoleDataMigration からマージ:
コメント追加。aes鍵設定の警告メッセージを削除 ........ git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_Repair@737 385bec56-5757-e545-9c3a-d8741f4650f1
This commit is contained in:
parent
004213c729
commit
24045460ff
@ -1,5 +1,13 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
################################
|
||||||
|
#ビルド用スクリプト
|
||||||
|
################################
|
||||||
|
#
|
||||||
|
# 1. common/version.h を変更する
|
||||||
|
# 2. 開発実機用ビルドは build.sh UNFIXEDKEY
|
||||||
|
# 製品実機用ビルドは build.sh RELEASE
|
||||||
|
|
||||||
set -u
|
set -u
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
|||||||
@ -19,12 +19,6 @@
|
|||||||
//マスタリング用ビルド時に有効にする
|
//マスタリング用ビルド時に有効にする
|
||||||
//#define USE_PROD_KEY
|
//#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>
|
#include <nn/drivers/aes/CTR/ARM946ES/driverAes_Types.h>
|
||||||
|
|
||||||
namespace common
|
namespace common
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
/*---------------------------------------------------------------------------*
|
/*---------------------------------------------------------------------------*
|
||||||
Project: Horizon
|
Project: Horizon
|
||||||
File: version.h
|
File: version.h
|
||||||
|
|
||||||
@ -16,8 +16,15 @@
|
|||||||
#ifndef VERSION_H_
|
#ifndef VERSION_H_
|
||||||
#define VERSION_H_
|
#define VERSION_H_
|
||||||
|
|
||||||
|
// ツールの構成が大幅に変更された時に変更する。現在1.5NUP以下は1、2ndNUP以降は2
|
||||||
#define CONSOLE_REPAIR_VERSION_MAJOR "1.5"
|
#define CONSOLE_REPAIR_VERSION_MAJOR "1.5"
|
||||||
|
|
||||||
|
// 同じMAJORバージョン内で互換性のない変更がある時に変更する。
|
||||||
|
// BackupとRestoreでバージョンを合わせる。
|
||||||
#define CONSOLE_REPAIR_VERSION_MINOR "2"
|
#define CONSOLE_REPAIR_VERSION_MINOR "2"
|
||||||
|
|
||||||
|
// 同じMAJORバージョン内で互換性のある変更がある時に変更する。
|
||||||
|
// Backup単体またはRestore単体のみの変更時に修正することが多い。
|
||||||
#define CONSOLE_REPAIR_VERSION_MICRO "1"
|
#define CONSOLE_REPAIR_VERSION_MICRO "1"
|
||||||
|
|
||||||
#endif /* VERSION_H_ */
|
#endif /* VERSION_H_ */
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user