Commit Graph

2020 Commits

Author SHA1 Message Date
Sergey Isakov
6852bd3a50 dont restart automatically after F11 it can be done manually
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
2019-11-21 14:46:21 +03:00
vectorsigma72
c822eefd22 Clover.app v1.08 Beta
Fixes and improvement for the Disable Sleep Proxy client and the save NVRAM  functions. Other small fixes.
2019-11-21 00:13:41 +01:00
vectorsigma72
d447228625 avoid rc scripts conflicting with Clover.app's daemon 2019-11-19 22:34:59 +01:00
vectorsigma72
8b0fc9323f Merge branch 'master' of https://github.com/CloverHackyColor/CloverBootloader 2019-11-19 22:18:15 +01:00
vectorsigma72
4e3dc60ab7 Clover.app v1.07 Beta
Fixed dump of nvram for Clover EFI. Fixed a bug installing boot sectors.
2019-11-19 22:18:11 +01:00
Sergey Isakov
494eb23cf2 fix UninstallMultipleProtocolInterfaces() calls
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
2019-11-19 16:40:14 +03:00
vectorsigma72
66f30d4dc0 Clover.app v1.05 Beta
Added Serbian translation by  crusher and Indonesian bu Badruzeus.
Changing boot1 boot sectors installation to use boo1-intsall only.
Rework on how the nvram get dumped for CloverEFI.
2019-11-17 18:06:44 +01:00
Sherlocks
3c176ec6ba Added MacBookPro16,1 2019-11-17 22:30:08 +09:00
SergeySlice
502d0fa3e7 more information about graphics
Signed-off-by: SergeySlice <sergey.slice@gmail.com>
2019-11-16 11:21:38 +03:00
SergeySlice
66430bb85b new information about graphics
Signed-off-by: SergeySlice <sergey.slice@gmail.com>
2019-11-16 09:18:24 +03:00
Sergey
c5bf8f941c
Merge pull request #31 from Florin9doi/p5
Nvidia device names
2019-11-15 19:21:06 +03:00
Sergey Isakov
27c22a82e3 add a possibility to set custom SmbiosVersion
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
2019-11-15 15:50:12 +03:00
Sergey Isakov
6221b7560f Merge branch 'master' of https://github.com/CloverHackyColor/CloverBootloader 2019-11-15 15:17:44 +03:00
Sergey Isakov
b816917205 implemented setting for MemoryRank,
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
2019-11-15 15:17:19 +03:00
Sherlocks
59f0e867a9 correct efi version 2019-11-14 23:25:16 +09:00
Sherlocks
04ff96bfb6 Update bios and efi version
take from 10.15.2 beta2
2019-11-14 23:21:05 +09:00
Florin9doi
3c5f92fd08 Add GK208 and TU106; rename a few cards
reference: https://pci-ids.ucw.cz/read/PC/10de/0e0c
2019-11-11 21:54:53 +02:00
Florin9doi
00626a97e8 Print Nvidia Volta/Turing names in preboot.log 2019-11-11 21:54:53 +02:00
Florin9doi
652b89254f Update Nvidia IDs
generated with:
```
#!/bin/bash

# curl -O https://pci-ids.ucw.cz/v2.2/pci.ids
PCI_IDS_FILE=pci.ids

NVIDIA_START=$(grep -n "^10de  NVIDIA Corporation" ${PCI_IDS_FILE} | cut -d : -f 1)
NVIDIA_START=$((NVIDIA_START+1))

NVIDIA_END=$(grep -n "^10df  Emulex Corporation" ${PCI_IDS_FILE} | cut -d : -f 1)
NVIDIA_END=$((NVIDIA_END-1))

sed -n ${NVIDIA_START}','${NVIDIA_END}'p' ${PCI_IDS_FILE} \
 | perl -nle 'print if /^\t[0-9a-f]{4}  [0-9A-Z]+ \[.*\]$/' \
 | perl -pe 's/^\t([0-9a-f]{4})  ([0-9A-Z]+) \[(.*)\]$/  { 0x10DE\U\1\E,  "\3" }, \/\/ \2/g'

```
2019-11-11 21:54:52 +02:00
vectorsigma72
48d3c04f74 Added Portuguese translation by artur_pt 2019-11-11 11:49:42 +01:00
vectorsigma72
b403b1b7ed Clover.app show disks names selectin them. Improvement in the Update section.
Now selecting a disk it show the brand name/model of the disk it belongs to.
Fixed the Update sectionthat was showing the latest Clover release even if already installed.
Tiny change i the it.strings
2019-11-10 18:50:05 +01:00
vectorsigma72
77ff1c12b1 Clover.app v1.03 Beta
CloverDaemonNew corections and improvements to mount.
Updated de.strings
2019-11-10 17:00:10 +01:00
vectorsigma72
01f730036f Added German translation by Mork Vom Ork, fixed missing semicolon in ko.strings 2019-11-10 14:50:32 +01:00
SergeySlice
a20f2ccd16 correct russian
Signed-off-by: SergeySlice <sergey.slice@gmail.com>
2019-11-09 23:27:55 +03:00
vectorsigma72
b06c4d4d41 Clover.app v1.02 Beta
Clver.app:
Corrected a bug that was causing the installer to fail on unknown drivers.

CloverDaemonNew :
Now is registered with the Power notifications (sleep and wake), so that can clean up nvram.plist files created by third partu kexts.
At shut down it now delete the following nvram keys:
efi-backup-boot-device
efi-backup-boot-device-data
install-product-url
previous-system-uuid

Clover.app promoted to Beta.
2019-11-09 18:03:22 +01:00
vectorsigma72
59c4a084eb
Merge pull request #28 from Florin9doi/p2
Reduce the number of folders created outside of Clover folder
2019-11-09 11:58:16 +01:00
Florin9doi
fcc25ba1b6 Reduce the number of folders created outside of Clover source folder
Try to use ~/src/opt/local for TOOLCHAIN_DIR. If it doesn't exist,
we will use $CLOVERROOT/toolchain instead.
2019-11-09 10:52:55 +02:00
Sergey
19cbd1e3c9
Merge pull request #30 from stevezhengshiqi/master
Update simplified chinese translation
2019-11-08 19:25:28 +03:00
Steve
fc5f2c2090 Fix conflicts 2019-11-08 10:45:19 -05:00
vectorsigma72
a6f6d27210 Corrected EmuVariableUefi description key 2019-11-08 15:40:40 +01:00
vectorsigma72
cc397dd596 Disk Arbitration can return just msdos ad filesystem 2019-11-08 15:36:27 +01:00
vectorsigma72
361a99b651 Merge branch 'master' of https://github.com/CloverHackyColor/CloverBootloader 2019-11-08 14:42:56 +01:00
vectorsigma72
2cb23f21b1 Fixed a mistake 2019-11-08 14:42:51 +01:00
Steve
6d2972f412 Update simplified chinese translation, continuous work from https://sourceforge.net/p/cloverefiboot/tickets/579/ 2019-11-08 04:08:37 -05:00
Sergey
a46979451d show clover revision in system profiler
Signed-off-by: Sergey <sergey@iMac-Sergej.local>
2019-11-08 08:35:59 +03:00
vectorsigma72
69e063b56b Clover.app v1.01 Alpha
CloverDaemon dump nvram to the Clover Boot partition as default. Any other nvram.list found in all mounted volumes will be removed. Fixed the launch at login app that was showing an empty window. Added russian translation (95%)
2019-11-07 23:12:13 +01:00
vectorsigma72
97ccb4840a Clover.app v1 Alpha
Agent application (macOS 10.11+).  More info at https://www.insanelymac.com/forum/topic/341047-cloverapp-testing/
2019-11-06 23:58:10 +01:00
Sherlocks
d113f6bf52 Update bios and efi version
take from 10.15.1
2019-11-02 00:02:06 +09:00
Sergey Isakov
5864939127 new way to get clover revision by Dids
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
2019-10-28 13:22:48 +03:00
vectorsigma72
a2ff20c379 removing bios boot files before apply the Payload 2019-10-26 10:10:43 +02:00
asava
ed6a6bdb1d eliminate some warnings caused by different include order in inf files 2019-10-24 00:37:29 +03:00
asava
ade55d54a5 add build_gcc9.sh patches and workarounds for Catalina 2019-10-23 23:41:30 +03:00
Sergey Isakov
5cfeecbb6c Merge branch 'master' of https://github.com/CloverHackyColor/CloverBootloader 2019-10-22 15:00:24 +03:00
Sergey Isakov
ced0ba8e2b add apple varibles to be erased
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
2019-10-22 15:00:07 +03:00
Sergey Isakov
1c1ea703ff use LzmaCompress-64bit for Catalina compatibility
not use LTO for separate drivers

Signed-off-by: Sergey Isakov <sergey@iMac-Sergey.local>
2019-10-21 19:20:37 +03:00
Sergey Isakov
d004764577 dont account extra bit in nvidia family
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
2019-10-18 16:31:50 +03:00
Sergey Isakov
9d16f47ca4 round around 0.5
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
2019-10-17 13:44:30 +03:00
Sergey Isakov
902c497ab0 fix windows compilation, fix setmem usage
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
2019-10-16 15:38:41 +03:00
Sergey Isakov
da51723696 avoid memory leaks
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
2019-10-16 14:25:52 +03:00
Sergey Isakov
e9ba34e5a1 add empty files for git dont ignore ACPI folder
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
2019-10-15 10:46:34 +03:00