cod3gen (OP)
Member
Offline
Activity: 311
Merit: 69
PowerMining.pw
|
|
April 06, 2018, 03:27:13 PM |
|
Been trying to get WOLF. on board since Jan. He doesn't want to tell his secrets.
Isnt Wolf a CN guy? Dont believe those have any interest of ASICs... :-)
|
|
|
|
oomurashin
Member
Offline
Activity: 195
Merit: 15
|
|
April 06, 2018, 06:04:39 PM |
|
|
|
|
|
cod3gen (OP)
Member
Offline
Activity: 311
Merit: 69
PowerMining.pw
|
|
April 06, 2018, 06:12:20 PM |
|
Great! Currently, Pascal and Decred is not working on Giant B with this SG Miner. If anyone come up with a solution for that, let me know.
|
|
|
|
pikachuy
|
|
April 06, 2018, 07:31:40 PM Last edit: April 06, 2018, 08:01:15 PM by pikachuy |
|
So basically this open source project is all the Giant X10/N/B codes merged together by yourself?
Edit: Read the earlier posts.
|
|
|
|
cod3gen (OP)
Member
Offline
Activity: 311
Merit: 69
PowerMining.pw
|
|
April 07, 2018, 05:48:36 AM |
|
So basically this open source project is all the Giant X10/N/B codes merged together by yourself?
Edit: Read the earlier posts.
Yes, this sgminer can be used on all three.
|
|
|
|
wholly
Newbie
Offline
Activity: 23
Merit: 0
|
|
April 07, 2018, 01:34:07 PM |
|
Hi.
So far as the journey goes with the X10.
1. Overclocking = FAIL 2. Groestle = FAIL
At this present time???
I hope that I am wrong!!!
Would love to have these babies kicking ass again!
thanks
|
|
|
|
DigitalCruncher
Jr. Member
Offline
Activity: 59
Merit: 1
|
|
April 07, 2018, 02:24:30 PM |
|
So it is time to turn on the oscilloscope to study the protocol between STM and ASICs.
|
|
|
|
pikachuy
|
|
April 07, 2018, 03:23:23 PM |
|
Hi.
So far as the journey goes with the X10.
1. Overclocking = FAIL 2. Groestle = FAIL
At this present time???
I hope that I am wrong!!!
Would love to have these babies kicking ass again!
thanks
I say someone figured it out and keeping hush hush, look at the GroestlCoin difficutly between now and last week. https://whattomine.com/coins/48-grs-groestl
|
|
|
|
cod3gen (OP)
Member
Offline
Activity: 311
Merit: 69
PowerMining.pw
|
|
April 07, 2018, 08:53:01 PM |
|
Hi.
So far as the journey goes with the X10.
1. Overclocking = FAIL 2. Groestle = FAIL
At this present time???
I hope that I am wrong!!!
Would love to have these babies kicking ass again!
thanks
I say someone figured it out and keeping hush hush, look at the GroestlCoin difficutly between now and last week. https://whattomine.com/coins/48-grs-groestlEither that, or Baikal have started mining Groestl (then we might see an update in ~3 months) :-O
|
|
|
|
mikej007
Newbie
Offline
Activity: 30
Merit: 0
|
|
April 10, 2018, 04:00:11 PM |
|
Hi.
So far as the journey goes with the X10.
1. Overclocking = FAIL 2. Groestle = FAIL
At this present time???
I hope that I am wrong!!!
Would love to have these babies kicking ass again!
thanks
I say someone figured it out and keeping hush hush, look at the GroestlCoin difficutly between now and last week. https://whattomine.com/coins/48-grs-groestlEither that, or Baikal have started mining Groestl (then we might see an update in ~3 months) :-O Cod3gen, tried to send you a pm but you are not accepting from newbies. I have something Very interesting regarding X10.
|
|
|
|
wholly
Newbie
Offline
Activity: 23
Merit: 0
|
|
April 10, 2018, 04:06:32 PM |
|
Please do tell~~
Cheers
wayne
|
|
|
|
cod3gen (OP)
Member
Offline
Activity: 311
Merit: 69
PowerMining.pw
|
|
April 10, 2018, 05:00:20 PM |
|
Cod3gen, tried to send you a pm but you are not accepting from newbies. I have something Very interesting regarding X10.
Should be good to go now.
|
|
|
|
anjm72
Newbie
Offline
Activity: 3
Merit: 0
|
|
April 11, 2018, 08:27:07 AM |
|
plz .. let me know how update Firmware (STM Chip) files..
|
|
|
|
elmond
Newbie
Offline
Activity: 49
Merit: 0
|
|
April 11, 2018, 08:38:03 AM |
|
plz .. let me know how update Firmware (STM Chip) files..
please read comment #38
|
|
|
|
anjm72
Newbie
Offline
Activity: 3
Merit: 0
|
|
April 11, 2018, 09:35:04 AM |
|
plz .. let me know how update Firmware (STM Chip) files..
please read comment #38 I couldn't find it. Is that update firmware for STM Chip?
|
|
|
|
xxALEXANDRxx
Newbie
Offline
Activity: 10
Merit: 0
|
|
April 11, 2018, 10:36:20 AM |
|
I just created a python script to do it. Just duplicate one of the python files in /usr/bin/ and paste this code into it. Then, if successful, then result will reside as /home/baikal/GX10 (Extracted).bin #!/usr/bin/env python import subprocess import os import sys from subprocess import Popen, PIPE import fcntl import time import glob
tmpfile = '/home/baikal/GX10 (Extracted).bin' USBDEVFS_RESET= 21780
# enter dfu mode def enter_dfumode(): subprocess.call('sudo /opt/scripta/startup/miner-stop.sh', shell=True) subprocess.call('echo 0 > /sys/class/gpio_sw/PA18/data', shell=True) subprocess.call('echo 0 > /sys/class/gpio_sw/PA10/data', shell=True) subprocess.call('echo 1 > /sys/class/gpio_sw/PA10/data', shell=True)
def exit_dfumode(): subprocess.call('echo 1 > /sys/class/gpio_sw/PA18/data', shell=True) subprocess.call('echo 0 > /sys/class/gpio_sw/PA10/data', shell=True) subprocess.call('echo 1 > /sys/class/gpio_sw/PA10/data', shell=True)
def reset_usb(driver): try: lsusb_out = Popen("lsusb | grep -i %s"%driver, shell=True, bufsize=64, stdin=PIPE, stdout=PIPE, close_fds=True).stdout.read().strip().split() bus = lsusb_out[1] device = lsusb_out[3][:-1] f = open("/dev/bus/usb/%s/%s"%(bus, device), 'w', os.O_WRONLY) fcntl.ioctl(f, USBDEVFS_RESET, 0) except Exception, msg: print ""
def extract_firmware(): print "Extracting firmware..." cmd = 'sudo dfu-util -a 0 -d 0483:df11 -s 0x08000000:leave -U ' + tmpfile subprocess.call(cmd, shell=True) #n = os.path.getsize(fwfile[0]) #cmd = 'cmp '+ fwfile[0] + ' ' + tmpfile + ' -n ' + str(n) #ret = subprocess.call(cmd, shell=True) #subprocess.call('sudo rm -rf /home/baikal/tmp.bin', shell=True) #return ret enter_dfumode() reset_usb("STM32F407") reset_usb("DFU")
extract_firmware() exit_dfumode()
print "Done"
this one
|
|
|
|
cod3gen (OP)
Member
Offline
Activity: 311
Merit: 69
PowerMining.pw
|
|
April 11, 2018, 11:25:19 AM |
|
Baikal is now supplying a update for X10, including X11-Gost and NIST5 algo`s :-D
As usual, sgminer source code is not available from Baikal.
EDIT: Oh, they also say more algo`s to come - we know what those are :-)
|
|
|
|
anjm72
Newbie
Offline
Activity: 3
Merit: 0
|
|
April 11, 2018, 11:41:58 AM |
|
I just created a python script to do it. Just duplicate one of the python files in /usr/bin/ and paste this code into it. Then, if successful, then result will reside as /home/baikal/GX10 (Extracted).bin #!/usr/bin/env python import subprocess import os import sys from subprocess import Popen, PIPE import fcntl import time import glob
tmpfile = '/home/baikal/GX10 (Extracted).bin' USBDEVFS_RESET= 21780
# enter dfu mode def enter_dfumode(): subprocess.call('sudo /opt/scripta/startup/miner-stop.sh', shell=True) subprocess.call('echo 0 > /sys/class/gpio_sw/PA18/data', shell=True) subprocess.call('echo 0 > /sys/class/gpio_sw/PA10/data', shell=True) subprocess.call('echo 1 > /sys/class/gpio_sw/PA10/data', shell=True)
def exit_dfumode(): subprocess.call('echo 1 > /sys/class/gpio_sw/PA18/data', shell=True) subprocess.call('echo 0 > /sys/class/gpio_sw/PA10/data', shell=True) subprocess.call('echo 1 > /sys/class/gpio_sw/PA10/data', shell=True)
def reset_usb(driver): try: lsusb_out = Popen("lsusb | grep -i %s"%driver, shell=True, bufsize=64, stdin=PIPE, stdout=PIPE, close_fds=True).stdout.read().strip().split() bus = lsusb_out[1] device = lsusb_out[3][:-1] f = open("/dev/bus/usb/%s/%s"%(bus, device), 'w', os.O_WRONLY) fcntl.ioctl(f, USBDEVFS_RESET, 0) except Exception, msg: print ""
def extract_firmware(): print "Extracting firmware..." cmd = 'sudo dfu-util -a 0 -d 0483:df11 -s 0x08000000:leave -U ' + tmpfile subprocess.call(cmd, shell=True) #n = os.path.getsize(fwfile[0]) #cmd = 'cmp '+ fwfile[0] + ' ' + tmpfile + ' -n ' + str(n) #ret = subprocess.call(cmd, shell=True) #subprocess.call('sudo rm -rf /home/baikal/tmp.bin', shell=True) #return ret enter_dfumode() reset_usb("STM32F407") reset_usb("DFU")
extract_firmware() exit_dfumode()
print "Done"
this one thank you. I have giant B on hand.. Is it okay to use this?
|
|
|
|
cod3gen (OP)
Member
Offline
Activity: 311
Merit: 69
PowerMining.pw
|
|
April 11, 2018, 11:44:36 AM |
|
I have giant B on hand.. Is it okay to use this?
That is to extract firmware from the device. There is already software to write to stm chip on Orange Pi. Why do you need to write new firmware to STM chip?
|
|
|
|
pikachuy
|
|
April 11, 2018, 12:45:39 PM |
|
Baikal is now supplying a update for X10, including X11-Gost and NIST5 algo`s :-D
As usual, sgminer source code is not available from Baikal.
EDIT: Oh, they also say more algo`s to come - we know what those are :-)
Can someone test something? From the new x10 Update, once you update, can you extract the new sgminer file. And then place it on a previous x10 version overwriting the sgminer only? Want to see if there were other changes needed or just a new correctly compiled sgminer file for it to work? Since there were no other firmware updates needed for the new algos to work.
|
|
|
|
|