Bluboo Edge: Allgemeine Diskussion

Ich spiele jetzt den zweiten Tag mit den Gerät rum und ich muss sagen es macht alles was es soll. Leider ist die Kamera nicht so der bringer,
aber das wäre ja bei dem Preis auch zu viel verlangt.
 
Ich würde das Ding keinem empfehlen, und zwar:
- Display passt nicht mit der Auflösung 720x1280. Rund ums display ist innen ein ca. 1mm dicker schwarzer streifen dieser sorgt dafür das bei 720x1280 der ganz linke teil vom bildschirm nicht zu sehen ist :eek: :D (kann man uberprüfen z.b. im terminal emulator mit ls. keine ahnung ob das auf alle zutrifft oder "nur" an qualitätsschwankungen liegt)
Beheben lässt sich das ganze mit adb shell wm size 712x1280

- Im Launcher funktioniert Vol-Down nicht (sowohl im vorinstallierten als auch anderen) :eek::D.

- Bei dunklem hintergrund sieht man auf dem touchscreen (nur ganz leicht nicht störend, passt nur zum gesamtbild) wenn man die lautstärke tasten drückt

- In den Entwickleroptionen Bootloader unlock möglich, allerdings beim booten in fastboot und flashing unlock oder oem unlock (oder egal was) kann man beim danach erscheinenden Screen (Vol-Up Yes, Unlock Vol-Down; No) nicht bestätigen. Die Vol-Up Taste funktioniert einfach nicht. Im normalen fastboot screen wo man zwsichen Reboot Normal, Reboot Recovery und Reboot Bootloader wählen könnte (Vol-Up durschalten, Vol-Down auswählen) geht überhaupt keine taste :eek::D

- Der Standardlauncher ist eine absolute Katastrophe, inkl Rechtschreibfehler und "Hot Women" auf der launcher integrierten news seite (da legen die chinesen anscheinend wert drauf :) )

- Der Launcher lässt sich auch nicht deaktiveren, legt man einen anderen als Standard fest und das telefon war etwas in standby wird die launchereinstellung zurückgesetzt (extrem merkwürdig aber das ding hat auch so einen komischen service integriert welcher dafür evtl. zuständig ist
init.project.rc:service conn_launcher /system/bin/6620_launcher -p /system/etc/firmware/
file_contexts:/system/bin/6620_launcher u:object_r:mtk_6620_launcher_exec:s0
factory_init.project.rc:service conn_launcher /system/bin/6620_launcher -p /system/etc/firmware/
Übereinstimmungen in Binärdatei sepolicy
meta_init.project.rc:service conn_launcher /system/bin/6620_launcher -p /system/etc/firmware/
)

- generell ein paar komische sachen in /system, z.b. bin:
6620_launcher, 6620_wmt_concurrency, 6620_wmt_lpbk
z.b. tcpdump in xbin

- Seriennummer: 123456789ABCDEF , ja ne is klar :lol:

- Klangverstörung (ja die Option heißt wirklick so), klar falsch/schlecht übersetzt aber lustigerweise trifft es die Einstellungen dort ziemlich genau. Sowohl Klangverstörung für den Lautsprecher als auch den Kopfhörer macht das ganze in keinster weise besser

- Kopfhörer kaum nutzbar aufgrund (unerträglich) starker Störgeräusche bei niedriger Laustärke

- Root aufgrund des oben genannten nicht möglichen Bootloader unlock schwierig. Bisher noch nichts gefunden. Die hoffnung dirtycow hat nicht funktioniert

Wer selbst basteln möchte/muss, hier ein paar grob gesammelte infos
FLASHTOOL:
[TUTORIAL]How to setup SP_Flash_Tool_Linux (MTK/MediaTek Soc)

(udev regeln! user zur gruppe!)
########################################################################################
########################################################################################
[TUTORIAL]How to setup SP_Flash_Tool_Linux (MTK/MediaTek Soc):
Unfortunately this seems to work only on Linux 64-bit
DISCLAIMER: It is always risky to flash your mobile device. I do not and will not take any responsibility for bootloops and bricks.
Please check carefully that the ROM or recovery.img you want to flash is suitable for your specific device and for the sp_flash_tool. The firmware directory should neither contain meta-inf nor system folder, but something_with_a_scatter.txt and a system.img
Backup your phone before flashing!
Your phone's battery should be at least half charged (50 percent) before you start this.

I successfully ran these steps on my UMI Hammer with Linux Ubuntu 14.04. I do not have other devices or Linux derivates and do not plan to buy/install any.

CREDITS and a zillion thanks to Sergio Rivero for his excellent tutorial on mibqyyo.com!!!!
Also many thanks to N2K1 for giving me some more background information!

So here we go:

Step 1:
If you haven't done so before, install the Linux generic usb-drivers package:
Code:

sudo apt-get install libusb-dev

Download Download Smart Phone Flash Tool (Latest Version)
I recommend version 5.1604 or newer.
Step 2:
Extract the downloaded file -> graphic file manager (e.g. Nautilus): double-click and extract. Terminal:
Code:

unzip path_to_file

(from now on: please adapt paths to your own settings)
Move the new folder „sp_flash_tool“ to a directory of your choice.
Code:

mv /home/username/Downloads/sp_flash_tool /home/username/...

Step 3:

Change into the newly created directory:
Code:

cd /sp_flash_tool

We make one file executable by typing:
Code:

chmod +x flash_tool

In order to avoid running the flash_tool as root user, you need to add a standard user to the usergroup "dialout" (thanks to @egalus for this bit!)
Code:

sudo adduser username dialout

For Arch Linux:
Code:

gpasswd -a username uucp

and activate the membership immediately
Code:

newgrp - dialout

(Arch Linux):
Code:

newgrp - uucp

Step 4:

Now you can open the tool:

Code:

./flash_tool

or double-click on the flash_tool icon.
You can try at this stage if the flash tool connects to your phone:
In the user interface, choose tab „Download“. Hit "scatter-loading", navigate to a directory with a valid firmware for your device and choose the scatter-file.
For testing purposes uncheck "name" and check one of the smaller files in the list below (for example "logo")
Switch off your device. Hit the "Download" button in SP_Flash_Tool and connect your phone to the computer. Some devices require you to take off the battery for about 10 seconds, with others you need to press Vol+ or Vol- while plugging the cable into the phone. Please look up device-specific threads and try out different options.

If nothing happens at all, open a second terminal, run
Code:

dmesg | grep usb

and look out for a MediaTek entry. If there is none → did you install libusb-dev (Step 1?)
If the answer is yes, you might need to create a persistent udev rule for the MTK Preloader:
Code:

sudo gedit /etc/udev/rules.d/80-persistent-usb.rules

Add the following line to the file:
Code:

SUBSYSTEM=="usb", ACTION=="add", ATTR{idVendor}=="0e8d", ATTR{idProduct}=="*"

Save the file and exit.
Reload the usb-rules:
Code:

sudo service udev restart

Disconnect the usb data cable from the computer and the smartphone. Close the flash tool. Switch on your phone (fastboot mode will do). Repeat the first paragraph of Step 4.

If the tool connects, within a few seconds a red progress bar will appear. Unfortunately, in my case an error message came along with it:
S_BROM_CMD_JUMP_DA_FAIL (2035)
There is a connection, but also one more obstacle to overcome...

Step 5:
Now we come to the interesting part, which cost me 2 weeks of (futile) research and frustration. Finally I found Sergio Riveros tutorial on mibqyyo. Thanks to him again and again and again for this priceless piece of information
Quote:
The “modemmanager” package integrated by default within Linux Ubuntu 14.04 and later is not compatible with the MTK Flash Tool for Linux
To put it in different words: The modem manager controls port /dev/ttyACM0 and disables the Flash Tool. So we blacklist it for the two MTK vendor IDs the flash tool uses:
Code:

sudo gedit /etc/udev/rules.d/20-mm-blacklist-mtk.rules

You insert these two lines:
Code:

ATTRS{idVendor}=="0e8d", ENV{ID_MM_DEVICE_IGNORE}="1"
ATTRS{idVendor}=="6000", ENV{ID_MM_DEVICE_IGNORE}="1"

Save the file, exit and restart udev:
Code:

sudo service udev restart

Switch your phone on (fastboot mode will suffice) and off again.

Step 6:
Code:

./flash_tool

or double-click on the flash_tool icon.
Now everything should run smoothly. In case you encounter
Code:

BROM ERROR : S_SECURITY_SF_CODE_FORMAT_FORBIDDEN (6012) , MSP ERROE CODE : 0x00

change the download agent to MTK_AllInOne_DA.bin (screenshot #4)
There are plenty of tutorials on the web for the further steps.
Happy flashing! When a green circle with a white checkmark appears, you are done. You can close the flash tool and disconnect your phone. Remove the battery for about 10 seconds and reinsert it. For a clean start with a new ROM boot into recovery and wipe data/factory reset.

########################################################################################
########################################################################################

flashtool Download Scatter File einstellen
Readback einstellen
Starten
Kabel vom pc entfernen
wieder anstecken
jetzt sollte das Backup starten

########################################################################################
########################################################################################


mv@mv-pc:~/Datengrab/android/BluBooEdge$ gdisk -l ROM_WHOLE
GPT fdisk (gdisk) version 1.0.1

Warning! Disk size is smaller than the main header indicates! Loading
secondary header from the last sector of the disk! You should use 'v' to
verify disk integrity, and perhaps options on the experts' menu to repair
the disk.
Caution: invalid backup GPT header, but valid main header; regenerating
backup header from main header.

Warning! Error 25 reading partition table for CRC check!
Warning! One or more CRCs don't match. You should repair the disk!

Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: damaged

****************************************************************************
Caution: Found protective or hybrid MBR and corrupt GPT. Using GPT, but disk
verification and recovery are STRONGLY recommended.
****************************************************************************
Disk ROM_WHOLE: 5259264 sectors, 2.5 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): 00000000-0000-0000-0000-000000000000
Partition table holds up to 23 entries
First usable sector is 1024, last usable sector is 30776319
Partitions will be aligned on 1024-sector boundaries
Total free space is 0 sectors (0 bytes)

Number Start (sector) End (sector) Size Code Name
1 1024 7167 3.0 MiB 0700 proinfo
2 7168 17407 5.0 MiB 0700 nvram
3 17408 37887 10.0 MiB 0700 protect1
4 37888 58367 10.0 MiB 0700 protect2
5 58368 59391 512.0 KiB 0700 lk
6 59392 60415 512.0 KiB 0700 para
7 60416 93183 16.0 MiB 0700 boot
8 93184 125951 16.0 MiB 0700 recovery
9 125952 142335 8.0 MiB 0700 logo
10 142336 162815 10.0 MiB 0700 expdb
11 162816 163839 512.0 KiB 0700 seccfg
12 163840 167935 2.0 MiB 0700 oemkeystore
13 167936 180223 6.0 MiB 0700 secro
14 180224 196607 8.0 MiB 0700 keystore
15 196608 206847 5.0 MiB 0700 tee1
16 206848 217087 5.0 MiB 0700 tee2
17 217088 219135 1024.0 KiB 0700 frp
18 219136 284671 32.0 MiB 0700 nvdata
19 284672 360447 37.0 MiB 0700 metadata
20 360448 5259263 2.3 GiB 0700 system
21 5259264 6078463 400.0 MiB 0700 cache
22 6078464 30743551 11.8 GiB 0700 userdata
23 30743552 30776319 16.0 MiB 0700 flashinfo


Partition kopieren:
z.b.:

mv@mv-pc:~/Datengrab/android/BluBooEdge$ STARTSEC=360448 && ENDSEC=5259263 && dd bs=512 skip=$STARTSEC count=$(($ENDSEC-$STARTSEC+1)) if=ROM_WHOLE of=ROM_system
4898816+0 Datensätze ein
4898816+0 Datensätze aus
2508193792 Bytes (2,5 GB, 2,3 GiB) kopiert, 30,5141 s, 82,2 MB/s


################################################################################################
################################################################################################

Scatter File anhand anderer, fastboot getvar all und danach obiger ausgabe erstellt, scheint zu passen, system rauskopieren und mounten klappt:

STARTSEC=360448 && dd bs=512 skip=$STARTSEC count=$((5259263-$STARTSEC+1)) if=ROM_WHOLE of=ROM_system
4898304+0 Datensätze ein
4898304+0 Datensätze aus
2507931648 Bytes (2,5 GB, 2,3 GiB) kopiert, 71,3718 s, 35,1 MB/s
mv@mv-pc:~/Datengrab/android/BluBooEdge$ sudo mount ROM_system /mnt/
[sudo] Passwort für mv:
mv@mv-pc:~/Datengrab/android/BluBooEdge$ ls /mnt/
app build.prop etc framework lib64 media priv-app res tts vendor
bin data fonts lib lost+found plugin recovery-from-boot.p theme usr xbin
mv@mv-pc:~/Datengrab/android/BluBooEdge$ file ROM_boot
ROM_boot: Android bootimg, kernel (0x40080000), ramdisk (0x44000000), page size: 2048, cmdline (bootopt=64S3,32N2,64N2)
mv@mv-pc:~/Datengrab/android/BluBooEdge$ file ROM_recovery
ROM_recovery: Android bootimg, kernel (0x40080000), ramdisk (0x44000000), page size: 2048, cmdline (bootopt=64S3,32N2,64N2)
mv@mv-pc:~/Datengrab/android/BluBooEdge$

----------------------------------------------------------------------------------------------------
Scatter File:
!! mglw. fehlt !!

- partition_index: SYS1
partition_name: pgpt
file_name: NONE
is_download: false
type: NORMAL_ROM
linear_start_addr: 0x0
physical_start_addr: 0x0
partition_size: 0x80000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: INVISIBLE
reserve: 0x00


Scatter File:
----------------------------------------------------------------------------------------------------
############################################################################################################
############################################################################################################
#
# General Setting
#
############################################################################################################
- general: MTK_PLATFORM_CFG
info:
- config_version: V1.1.2
platform: MT6737M
project: mtk_android
storage: EMMC
boot_channel: MSDC_0
block_size: 0x20000
############################################################################################################
#
# Layout Setting
#
############################################################################################################
- partition_index: SYS0
partition_name: PRELOADER
file_name: preloader_droi6737m_65_m0.bin
is_download: true
type: SV5_BL_BIN
linear_start_addr: 0x0
physical_start_addr: 0x0
partition_size: 0x40000
region: EMMC_BOOT_1
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: BOOTLOADERS
reserve: 0x00

- partition_index: SYS1
partition_name: PGPT
file_name: NONE
is_download: false
type: NORMAL_ROM
linear_start_addr: 0x00000
physical_start_addr: 0x00000
partition_size: 0x80000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: INVISIBLE
reserve: 0x00

- partition_index: SYS2
partition_name: PROINFO
file_name: NONE
is_download: false
type: NORMAL_ROM
linear_start_addr: 0x80000
physical_start_addr: 0x80000
partition_size: 0x300000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: PROTECTED
reserve: 0x00

- partition_index: SYS3
partition_name: NVRAM
file_name: NONE
is_download: false
type: NORMAL_ROM
linear_start_addr: 0x380000
physical_start_addr: 0x380000
partition_size: 0x500000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: BINREGION
reserve: 0x00

- partition_index: SYS4
partition_name: PROTECT1
file_name: NONE
is_download: false
type: EXT4_IMG
linear_start_addr: 0x880000
physical_start_addr: 0x880000
partition_size: 0xa00000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: PROTECTED
reserve: 0x00

- partition_index: SYS5
partition_name: PROTECT2
file_name: NONE
is_download: false
type: EXT4_IMG
linear_start_addr: 0x1280000
physical_start_addr: 0x1280000
partition_size: 0xa00000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: PROTECTED
reserve: 0x00

- partition_index: SYS6
partition_name: LK
file_name: lk.bin
is_download: true
type: NORMAL_ROM
linear_start_addr: 0x1c80000
physical_start_addr: 0x1c80000
partition_size: 0x80000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: UPDATE
reserve: 0x00

- partition_index: SYS7
partition_name: PARA
file_name: NONE
is_download: false
type: NORMAL_ROM
linear_start_addr: 0x1d00000
physical_start_addr: 0x1d00000
partition_size: 0x80000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: INVISIBLE
reserve: 0x00

- partition_index: SYS8
partition_name: BOOT
file_name: boot.img
is_download: true
type: NORMAL_ROM
linear_start_addr: 0x1d80000
physical_start_addr: 0x1d80000
partition_size: 0x1000000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: UPDATE
reserve: 0x00

- partition_index: SYS9
partition_name: RECOVERY
file_name: recovery.img
is_download: true
type: NORMAL_ROM
linear_start_addr: 0x2d80000
physical_start_addr: 0x2d80000
partition_size: 0x1000000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: UPDATE
reserve: 0x00

- partition_index: SYS10
partition_name: LOGO
file_name: logo.bin
is_download: true
type: NORMAL_ROM
linear_start_addr: 0x3d80000
physical_start_addr: 0x3d80000
partition_size: 0x800000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: UPDATE
reserve: 0x00

- partition_index: SYS11
partition_name: EXPDB
file_name: NONE
is_download: false
type: NORMAL_ROM
linear_start_addr: 0x4580000
physical_start_addr: 0x4580000
partition_size: 0xa00000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: INVISIBLE
reserve: 0x00

- partition_index: SYS12
partition_name: SECCFG
file_name: NONE
is_download: false
type: NORMAL_ROM
linear_start_addr: 0x4f80000
physical_start_addr: 0x4f80000
partition_size: 0x80000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: INVISIBLE
reserve: 0x00

- partition_index: SYS13
partition_name: OEMKEYSTORE
file_name: NONE
is_download: false
type: NORMAL_ROM
linear_start_addr: 0x5000000
physical_start_addr: 0x5000000
partition_size: 0x200000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: INVISIBLE
reserve: 0x00

- partition_index: SYS14
partition_name: SECRO
file_name: secro.img
is_download: true
type: NORMAL_ROM
linear_start_addr: 0x5200000
physical_start_addr: 0x5200000
partition_size: 0x600000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: UPDATE
reserve: 0x00

- partition_index: SYS15
partition_name: KEYSTORE
file_name: NONE
is_download: false
type: NORMAL_ROM
linear_start_addr: 0x5800000
physical_start_addr: 0x5800000
partition_size: 0x800000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: INVISIBLE
reserve: 0x00

- partition_index: SYS16
partition_name: TEE1
file_name: trustzone.bin
is_download: true
type: NORMAL_ROM
linear_start_addr: 0x6000000
physical_start_addr: 0x6000000
partition_size: 0x500000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: UPDATE
reserve: 0x00

- partition_index: SYS17
partition_name: TEE2
file_name: trustzone.bin
is_download: true
type: NORMAL_ROM
linear_start_addr: 0x6500000
physical_start_addr: 0x6500000
partition_size: 0x500000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: UPDATE
reserve: 0x00

- partition_index: SYS18
partition_name: FRP
file_name: NONE
is_download: false
type: NORMAL_ROM
linear_start_addr: 0x6A00000
physical_start_addr: 0x6A00000
partition_size: 0x100000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: PROTECTED
reserve: 0x00

- partition_index: SYS19
partition_name: NVDATA
file_name: NONE
is_download: false
type: EXT4_IMG
linear_start_addr: 0x6B00000
physical_start_addr: 0x6B00000
partition_size: 0x2000000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: INVISIBLE
reserve: 0x00

- partition_index: SYS20
partition_name: METADATA
file_name: NONE
is_download: false
type: NORMAL_ROM
linear_start_addr: 0x8B00000
physical_start_addr: 0x8B00000
partition_size: 0x2500000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: INVISIBLE
reserve: 0x00

- partition_index: SYS21
partition_name: SYSTEM
file_name: system.img
is_download: true
type: EXT4_IMG
linear_start_addr: 0xB000000
physical_start_addr: 0xB000000
partition_size: 0x95800000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: UPDATE
reserve: 0x00

- partition_index: SYS22
partition_name: CACHE
file_name: cache.img
is_download: true
type: EXT4_IMG
linear_start_addr: 0xA0800000
physical_start_addr: 0xA0800000
partition_size: 0x19000000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: UPDATE
reserve: 0x00

- partition_index: SYS23
partition_name: USERDATA
file_name: userdata.img
is_download: true
type: EXT4_IMG
linear_start_addr: 0xB9800000
physical_start_addr: 0xB9800000
partition_size: 0x32000000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: UPDATE
reserve: 0x00

- partition_index: SYS24
partition_name: FLASHINFO
file_name: NONE
is_download: false
type: NORMAL_ROM
linear_start_addr: 0x1D0F80000
physical_start_addr: 0x1D0F80000
partition_size: 0x1000000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: false
is_reserved: true
operation_type: RESERVED
reserve: 0x00

- partition_index: SYS25
partition_name: SGPT
file_name: NONE
is_download: false
type: NORMAL_ROM
linear_start_addr: 0x1D1F80000
physical_start_addr: 0x1D1F80000
partition_size: 0x80000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: false
is_reserved: true
operation_type: RESERVED
reserve: 0x00


########################################################################################
########################################################################################

MTK Engineer Mode Dialer:
*#*#20080808#*#*

strings ./app/EngineerMode/oat/arm64/EngineerMode.odex | grep secret
android_secret_code://20080808

########################################################################################
########################################################################################

abootimg -i ../ROM_boot

Android Boot Image Info:

* file name = ../ROM_boot

* image size = 16777216 bytes (16.00 MB)
page size = 2048 bytes

* Boot Name = "1481716369"

* kernel size = 7134774 bytes (6.80 MB)
ramdisk size = 1562526 bytes (1.49 MB)

* load addresses:
kernel: 0x40080000
ramdisk: 0x44000000
tags: 0x4e000000

* cmdline = bootopt=64S3,32N2,64N2

* id = 0xee481f0d 0xe0b0a623 0x7cd3ed44 0x1d0dbb21 0x8c4a4181 0x00000000 0x00000000 0x00000000

mv@mv-pc:~/Datengrab/android/BluBooEdge/BOOT_IMAGE$ cat bootimg.cfg
bootsize = 0x1000000
pagesize = 0x800
kerneladdr = 0x40080000
ramdiskaddr = 0x44000000
secondaddr = 0x40f00000
tagsaddr = 0x4e000000
name = 1481716369
cmdline = bootopt=64S3,32N2,64N2
id = 0xee481f0d,0xe0b0a623,0x7cd3ed44,0x1d0dbb21,0x8c4a4181,0x00000000,0x00000000,0x00000000

fstab:
mv@mv-pc:~/Datengrab/android/BluBooEdge/BOOT_IMAGE/RAMDISK$ cat fstab.mt6735
# 1 "vendor/mediatek/proprietary/hardware/fstab/mt6735/fstab.in"
# 1 "<built-in>"
# 1 "<command-line>"
# 1 "vendor/mediatek/proprietary/hardware/fstab/mt6735/fstab.in"
# 20 "vendor/mediatek/proprietary/hardware/fstab/mt6735/fstab.in"
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/system /system ext4 ro wait



/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/userdata /data ext4 noatime,nosuid,nodev,noauto_da_alloc,discard wait,check,resize,encryptable=/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/metadata,
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/cache /cache ext4 noatime,nosuid,nodev,noauto_da_alloc,discard wait,check
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/protect1 /protect_f ext4 noatime,nosuid,nodev,noauto_da_alloc,commit=1,nodelalloc wait,check,formattable
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/protect2 /protect_s ext4 noatime,nosuid,nodev,noauto_da_alloc,commit=1,nodelalloc wait,check,formattable
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/nvdata /nvdata ext4 noatime,nosuid,nodev,noauto_da_alloc,discard wait,check,formattable
# 37 "vendor/mediatek/proprietary/hardware/fstab/mt6735/fstab.in"
/devices/mtk-msdc.0/11230000.msdc0* auto vfat defaults voldmanaged=sdcard0:auto
/devices/mtk-msdc.0/11240000.msdc1* auto auto defaults voldmanaged=sdcard1:auto,encryptable=userdata
/devices/platform/mt_usb* auto vfat defaults voldmanaged=usbotg:auto


/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/frp /persistent emmc defaults defaults






/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/nvram /nvram emmc defaults defaults
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/proinfo /proinfo emmc defaults defaults
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/lk /bootloader emmc defaults defaults
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/para /misc emmc defaults defaults
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/boot /boot emmc defaults defaults
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/recovery /recovery emmc defaults defaults
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/logo /logo emmc defaults defaults
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/expdb /expdb emmc defaults defaults
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/secro /secro emmc defaults defaults
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/seccfg /seccfg emmc defaults defaults

/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/tee1 /tee1 emmc defaults defaults
/dev/block/platform/mtk-msdc.0/11230000.msdc0/by-name/tee2 /tee2 emmc defaults defaults


########################################################################################
########################################################################################

"Phenix" Launcher (Default Launcher):
größter scheiß
/system/bin:
"6620_launcher" zeug: Nötig für WLAN und BT

--- edit ---
Der "Pulsmesser" ist so dermaßen gut, der misst sogar Puls von Gegenständen.
Eine Fernbedinung hatte z.b. einen höheren Wert (80) als ich (69) :lol:
Generell scheint es nur werte zwischen 65 und 85 zu geben.

Merkwürdig, vmtl um ergebnisse zu schönen:
cat pkg_special_Process
com.qihoo360.mobilesafe
com.opda.checkoutdevice
com.antutu
com.ludashi
com.example.pphelper
com.tencent.benchmark
cn.opda.a.phonoalbumshoushou
com.dianxinos.optimizer.duplay
com.dianxinos.toolbox.benchmark
com.lextel.ALovePhone
com.cpuid.cpu_z


wird ggf. weiter ergänzt

Wer das ding tatsächlich gekauft hat (mein beileid) hier ein LK welcher fastboot boot ermöglicht (RiesenDankeSchön an @Tzul )
Bluboo Edge - Custom Recovery bootet nicht... (#4)
 
Zuletzt bearbeitet:

Ähnliche Themen

Kekser
Antworten
2
Aufrufe
1.113
James B.
J
J
Antworten
3
Aufrufe
1.707
borisku
borisku
Ora
Antworten
0
Aufrufe
898
Ora
Ora
Zurück
Oben Unten