Look in the config_runtime.inc:
CODE
;;;---------------------------------------------------------------------------
;;; default Dashboard path (and tray boot closed) 2=C 1=E 6=F 7=G
;;;---------------------------------------------------------------------------
This means
\Device\Harddisk0\Partition2\ = C:\
\Device\Harddisk0\Partition1\ = E:\
\Device\Harddisk0\Partition6\ = F:\
\Device\Harddisk0\Partition7\ = G:\
From what I understand:
-------------------------------------------------------------------------------
;;; tray boot enable
;%define TRAY_BOOT
I think you need this active. ;;; tri-boot enable < dual is default, with tray_boot enabled
;%define TRI_BOOT
You may have better results with this active as well..;;; close the tray when NOT tri-booting (faster booting then tri-boot)
%define CLOSE_TRAY_ALLWAYS
;;;---------------------------------------------------------------------------
;;; default Dashboard path (and tray boot closed) 2=C 1=E 6=F 7=G
;;;---------------------------------------------------------------------------
%define DASHBOARD_PATH '\Device\Harddisk0\Partition1\dashboard\default.xbe'
%define DB_PATH2 '\Device\Harddisk0\Partition6\dashboard\default.xbe'
%define DB_PATH3 '\Device\Harddisk0\Partition1\UDATA\4d530017\62d648ebf155\default.xbe'
;;;---------------------------------------------------------------------------
;;; tray OPEN dash, when key IS patched back (must be a MS signed xbe)
;;; MUST BE PARTITION 1 or 2
;;;
;;; use this to patch back the MS key then boot PB_OPEN_PATH
%define PATCH_BACK_MS_KEY
Comment this out %define PB_OPEN_PATH '\Device\Harddisk0\Partition2\xb0xdash.xbe'
I don't think this is needed, but point this to your alt dash in case.;;;---------------------------------------------------------------------------
;;; Dashboard path's for tray OPEN dash when using dual/tri-boot
;;; and NOT using PATCH_BACK_MS_KEY
;;;---------------------------------------------------------------------------
;;; tray OPEN dash, when key IS NOT patched back (must be a habibi signed xbe
;;; and MUST be partition 1 or 2 when NOT using OPEN_DASH_WITH_NKP)
;;;
%define OPEN_PATH '\Device\Harddisk0\Partition1\dashboard\default.xbe'
Change this to your alt dash.;;; use this to enable all of NKP (disable to boot some other HACK)
%define OPEN_DASH_WITH_NKP
You want this active. -------------------------------------------------------------------------------
You may not need to include other options, but I would use the whole file, no good reason, as I don't think all the options are required to be included.