Jump to content

CCE - Web bootloaders manager [OpenCore, CloverEFI, Ozmosis, Chameleon]


kylon
 Share

124 posts in this topic

Recommended Posts

Merry Christmas

 

@Sherlocks

Your help is much appreciated :)

Can you explain "part component"?

 

Thanks

here is result.

 

 

Location In Chassis information

 

=======================MacPro Series=======================

 

MacPro1,1~6,1

“Location In Chassis: Part Component”

 

info. MacPro6,1 has divide part location “CPU” “MLB” etc, we need to combine one like Part Component

 

=======================iMac Series=======================

 

iMac4,1~iMac15,1

“Location In Chassis: Part Component”

 

Since iMac16,1 has ChassisType “Laptop”

as result iMac16,1~iMac17,1

“Location In Chassis: ” it means blank

 

=======================Macmini Series=======================

 

all models have

“Location In Chassis: Part Component”

 

=======================MacBookPro Series=======================

 

MacBookPro1,1~ MacBookPro11,5 has ChassisType “Notebook”

as result

“Location In Chassis: Part Component”

 

Since MacBookPro12,1 has ChassisType “Laptop”

as result MacBookPro12,1 ~ MacBookPro13,3

“Location In Chassis: ” it means blank

 

=======================MacBookAir Series=======================

 

MacBookAir1,1~ MacBookAir6,2 has ChassisType “Notebook”

as result

“Location In Chassis: Part Component”

 

Since MacBookAir7,1 has ChassisType “Laptop”

as result MacBookAir7,1 ~ MacBookAir7,2

“Location In Chassis: ” it means blank

 

 

=======================MacBook Series=======================

 

MacBook1,1~ MacBook7,1 has ChassisType “Notebook”

as result

“Location In Chassis: Part Component”

 

although MacBook8,1 has ChassisType “Laptop”

*MacBook8,1” especially has

“Location In Chassis: Part Component”

 

as result

MacBook8,1 ~ MacBook9,1

“Location In Chassis: Part Component”

 

thank you.

 

add. we can add “Location In Chassis: Part Component” for all mac models.

because it's not affect any system operation. if you want to reflect information excatly, follow it above.

  • Like 2
Link to comment
Share on other sites

macbookpro13,3 has AMD Radeon Pro 450 / AMD Radeon Pro 455 / AMD Radeon Pro 460. right. also HD 530 

http://www.apple.com/uk/macbook-pro/specs/

 

I have "hidden" the integrated graphics when a dGPU is installed because we already know it s there, and to save some space.

I can add it if you think it is useful.

 

Location in chassis is now added (exact value)

 

Thanks

  • Like 1
Link to comment
Share on other sites

I have "hidden" the integrated graphics when a dGPU is installed because we already know it s there, and to save some space.

I can add it if you think it is useful.

 

Location in chassis is now added (exact value)

 

Thanks

No problem about graphic information if you think. Its your work:)

 

Thank you for your effort

 

Have a nice day

 

나의 LG-F410S 의 Tapatalk에서 보냄

  • Like 1
Link to comment
Share on other sites

  • 2 months later...

You should change the following to a drop down list like you have the Boot Arguments:

Boot Entry Template

Darwin Disk Template

Darwin Recovery Disk Template

The drop down list should have the following available:

 

$label

$guid

$platform

$major

$minor

$build

 

I would make the Base Board Serial under the SMBIOS section for Ozmosis require 17 digits long because BaseBoardSerial=MLB to have iCloud, Messages, Facetime working and have HardwareAddress added to the 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102 section and as an actual 48bit mac address format since HardwareAddress=ROM.

 

Also after you get done with making the config and save it, the output isn't correct, it comes out looking like this:

DMomvV9.png

Should come out looking like this:

oeqpt9y.png

  • Like 1
Link to comment
Share on other sites

Updated

 

The smbios tab has all the options again to keep a clean UI, but Clover only options are disabled.

 

 

 

an actual 48bit mac address format since HardwareAddress=ROM.

Can you please add an example?

 

Link to comment
Share on other sites

Updated

 

The smbios tab has all the options again to keep a clean UI, but Clover only options are disabled.

 

 

Can you please add an example?

Normal Mac Address: 44:8a:5b:cf:6d:b1

Link to comment
Share on other sites

<key>HardwareAddress</key> 

<string>44:8a:5b:cf:6d:b1</string>

 

Should be noted that this should be the actual Mac Address of the machine its being used on and not some random or copied number.

  • Like 1
Link to comment
Share on other sites

<key>HardwareAddress</key> 

<string>44:8a:5b:cf:6d:b1</string>

 

Should be noted that this should be the actual Mac Address of the machine its being used on and not some random or copied number.

Good point, yes this is absolutely correct.

  • Like 1
Link to comment
Share on other sites

  • 2 weeks later...

Hello kylon,

I'm back with another weird idea. It would be nice if users can start sharing their config (with this URL for example: 'http://<host>/paste.php?get=hxxp://pastebin.com/XXYYZZ') from another web services ex: pastebin (you can choose other online paste tools as long they support API to fetch the contents, free without registration). Also, maybe you can add some textbox in homepage to paste the URL as an input.

 

 

 

<?php
/*
 * Cloud Clover Editor
 * Copyright (C) kylon - 2016
 * License - http://www.gnu.org/licenses/gpl-3.0.txt
 */


// \www\cce\cce\data\ajx\paste.php

session_start();
require_once __DIR__.'/../components/CloudCloverEditor/cloverPlist.php';

$head = 'index';

if (
    isset($_GET['get']) &&
    !empty($_GET['get']) &&
    preg_match("/^https?\:\/\/pastebin\.com\/([a-z0-9]{8,}+)$/i", $_GET['get'], $matched) &&
    (count($matched) == 2)
) {
    $head = 'editor';

    $_SESSION = array();
    $idx = $matched[1];
    $pasteurl = "https://pastebin.com/raw/{$idx}";
    $_SESSION['cur_idx'] = $idx;

    $clover = new cloverPlist(file_get_contents($pasteurl));

    $_SESSION['clover'] = serialize($clover);
    $_SESSION['config-list'][$_SESSION['cur_idx']] = $_SESSION['clover'];
    $_SESSION['cce-sett']['hb64'][$_SESSION['cur_idx']] = 'hex'; // TODO: Unused atm

    if ($clover->isOzmosis())
        $_SESSION['cce-sett']['mode'][$_SESSION['cur_idx']] = 'oz';
    else
        $_SESSION['cce-sett']['mode'][$_SESSION['cur_idx']] = 'cce';
}

header('Location: ../../'.$head.'.php');
exit();

 

 

  • Like 1
Link to comment
Share on other sites

  • 1 month later...

Added CCE Bank

OP updated.

 

You may need to clear your browser cache.

If something is not working, you need to close your browser to fully clear your cache.

 

 

Hello kylon,

I'm back with another weird idea. It would be nice if users can start sharing their config (with this URL for example: 'http://<host>/paste.php?get=hxxp://pastebin.com/XXYYZZ') from another web services ex: pastebin (you can choose other online paste tools as long they support API to fetch the contents, free without registration). Also, maybe you can add some textbox in homepage to paste the URL as an input.

 

Pastebin will soon require https and it seemed too messy for this purpose.

 

I hope CCE Bank does match your idea

  • Like 1
Link to comment
Share on other sites

  • 4 weeks later...

hi. can you please fix the tool so it does not remove this section as it makes HfsPlus drives hidden and not bootable also 0x67 is no longer working please add 0x127 this does work thx.

post-421878-0-51084900-1497105161_thumb.png

  • Like 1
Link to comment
Share on other sites

Hi

 

Do you mean the 1f8e0c02-58a9.... Section?

 

Maybe my assumption was wrong, is it possibile to add an unlimited number of templates?

 

Thanks

Link to comment
Share on other sites

 Share

×
×
  • Create New...