S_wallpapers_animationwallpaper_ringtones.zip
201.2 MB
Samsung S series
- Wallpapers
- Live wallpapers
- Ring tone
- Wallpapers
- Live wallpapers
- Ring tone
🗿2
Forwarded from Board Archive (BrotherBoard)
Winlator@Frost.7.1.V5.apk
842.9 MB
WINE Android app, smooth as hell
Runs windows applications
🗿3
Forwarded from Sci. 🇵🇸🔻
This media is not supported in your browser
VIEW IN TELEGRAM
Forwarded from Exynos 850 Resources
TWRP Building
=============
Taken from here
https://t.me/physwizz2/398
Useful links
https://gist.github.com/lopestom/3c1f3eaa66248c56e61acf19ddd4b96c
https://4pda.to/forum/index.php?showtopic=636604&view=findpost&p=37330705
1. Setup
--------
sudo apt update
sudo apt upgrade
sudo apt-get install git-all
sudo apt install python-is-python3
sudo apt install python3-pip
# for github.com
git config --global user.email "your email"
git config --global user.name "your name"
2. swapfile
-----------
sudo swapoff -a
sudo dd if=/dev/zero of=/swapfile bs=1G count=8
sudo mkswap /swapfile
sudo swapon /swapfile
free -m
3. repo
-------
mkdir -p ~/.bin
PATH="${HOME}/.bin:${PATH}"
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo
chmod a+rx ~/.bin/repo
Basic Device Tree
==================
1. setup twrpdtgen
mkdir ~/TWRP
cd ~/TWRP
git init
git clone https://github.com/twrpdtgen/twrpdtgen
pip3 install twrpdtgen
sudo apt install cpio
2. copy stock recovery.img to ~/TWRP/twrpdtgen
cd twrpdtgen
python3 -m twrpdtgen recovery.img
3. rename ~/TWRP/twrpdtgen/output/samsung/a12s/omni_a12s.mk to twrp_a12s.mk
4. delete vendorsetup.sh
5. to add extra partitions in recovery.fstab
# V3
/system_image emmc /dev/block/mapper/system flags=backup=0;flashimg=1;display="System Image"
/vendor_image emmc /dev/block/mapper/vendor flags=backup=0;flashimg=1;display="Vendor Image"
/product_image emmc /dev/block/mapper/product flags=backup=0\;flashimg=1\;display=\"Product Image\"";
/odm_image emmc /dev/block/mapper/odm flags=backup=0;flashimg=1;display="Odm Image"
# External
/external_sd vfat /dev/block/mmcblk1p1 /dev/block/mmcblk1 flags=storage;wipeingui;removable
/usb-otg auto /dev/block/sda1 /dev/block/sda flags=display="USB-OTG";storage;wipeingui;removable
5.1
Change
# /sdcard sdfat /dev/block/mmcblk1p1 flags=display=sdcard
Also
# /preload ext4 /dev/block/platform/bootdevice/by-name/hidden flags=display=preload
# /keydata ext4 /dev/block/platform/bootdevice/by-name/keydata flags=display=keydata
# /keyrefuge f2fs /dev/block/platform/bootdevice/by-name/keyrefuge flags=display=keyrefuge
To add system wipe
/system ext4 /dev/block/mapper/system flags=display=system;backup=1;wipeingui
6. Make a copy of recovery.fstab and rename to twrp.flags
7. Move both files recovery.fstab and twrp.flags to recovery/root/system/etc
(create these folders)
8. open twrp_a12s.mk and
8.1. delete the 3 lines below # Inherit from those products, Most specific first.
replace those 3 lines with this
$(call inherit-product, $(SRC_TARGET_DIR)/product/aosp_base.mk)
8.2. delete $(call inherit-product, vendor/omni/config/gsm.mk)
8.3. change omni to twrp
9. open AndroidProducts.mk
change omni to twrp (4 spots)
10. Add to boardconfig.mk
TW_NO_SCREEN_TIMEOUT := true
TW_NO_SCREEN_BLANK := true
#TW_SCREEN_BLANK_ON_BOOT := true
TW_DEVICE_VERSION := 1_physwizz
To save space
-----------------------
if not u have to compress kernel image or reduce the size of kernel
BOARD_KERNEL_IMAGE_NAME := Image.gz
TARGET_PREBUILT_KERNEL := $(DEVICE_PATH)/prebuilt/Image.gz
# compress ramdisk
BOARD_RAMDISK_USE_LZMA := true
LZMA_RAMDISK_TARGETS := recovery
# To save more space
BOARD_HAS_NO_REAL_SDCARD := true
Using AIK to unpack and repack can also reduce size
Establish Android Building Environment
cd ~
sudo apt install git aria2 -y
git clone https://gitlab.com/OrangeFox/misc/scripts
cd scripts
sudo bash setup/android_build_env.sh
sudo bash setup/install_android_sdk.sh
TWRP 11
=======
mkdir ~/twrp-11
cd ~/twrp-11
repo init --depth=1 -u https://github.com/minimal-manifest-twrp/platform_manifest_twrp_aosp.git -b twrp-11
repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j4
* copy ~/TWRP/twrpdtgen/output/samsung
to /twrp-11/device/samsung
Building
-------------
export ALLOW_MISSING_DEPENDENCIES=true
. build/envsetup.sh
lunch twrp_a12s-eng
mka recoveryimage -j4
=============
Taken from here
https://t.me/physwizz2/398
Useful links
https://gist.github.com/lopestom/3c1f3eaa66248c56e61acf19ddd4b96c
https://4pda.to/forum/index.php?showtopic=636604&view=findpost&p=37330705
1. Setup
--------
sudo apt update
sudo apt upgrade
sudo apt-get install git-all
sudo apt install python-is-python3
sudo apt install python3-pip
# for github.com
git config --global user.email "your email"
git config --global user.name "your name"
2. swapfile
-----------
sudo swapoff -a
sudo dd if=/dev/zero of=/swapfile bs=1G count=8
sudo mkswap /swapfile
sudo swapon /swapfile
free -m
3. repo
-------
mkdir -p ~/.bin
PATH="${HOME}/.bin:${PATH}"
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo
chmod a+rx ~/.bin/repo
Basic Device Tree
==================
1. setup twrpdtgen
mkdir ~/TWRP
cd ~/TWRP
git init
git clone https://github.com/twrpdtgen/twrpdtgen
pip3 install twrpdtgen
sudo apt install cpio
2. copy stock recovery.img to ~/TWRP/twrpdtgen
cd twrpdtgen
python3 -m twrpdtgen recovery.img
3. rename ~/TWRP/twrpdtgen/output/samsung/a12s/omni_a12s.mk to twrp_a12s.mk
4. delete vendorsetup.sh
5. to add extra partitions in recovery.fstab
# V3
/system_image emmc /dev/block/mapper/system flags=backup=0;flashimg=1;display="System Image"
/vendor_image emmc /dev/block/mapper/vendor flags=backup=0;flashimg=1;display="Vendor Image"
/product_image emmc /dev/block/mapper/product flags=backup=0\;flashimg=1\;display=\"Product Image\"";
/odm_image emmc /dev/block/mapper/odm flags=backup=0;flashimg=1;display="Odm Image"
# External
/external_sd vfat /dev/block/mmcblk1p1 /dev/block/mmcblk1 flags=storage;wipeingui;removable
/usb-otg auto /dev/block/sda1 /dev/block/sda flags=display="USB-OTG";storage;wipeingui;removable
5.1
Change
# /sdcard sdfat /dev/block/mmcblk1p1 flags=display=sdcard
Also
# /preload ext4 /dev/block/platform/bootdevice/by-name/hidden flags=display=preload
# /keydata ext4 /dev/block/platform/bootdevice/by-name/keydata flags=display=keydata
# /keyrefuge f2fs /dev/block/platform/bootdevice/by-name/keyrefuge flags=display=keyrefuge
To add system wipe
/system ext4 /dev/block/mapper/system flags=display=system;backup=1;wipeingui
6. Make a copy of recovery.fstab and rename to twrp.flags
7. Move both files recovery.fstab and twrp.flags to recovery/root/system/etc
(create these folders)
8. open twrp_a12s.mk and
8.1. delete the 3 lines below # Inherit from those products, Most specific first.
replace those 3 lines with this
$(call inherit-product, $(SRC_TARGET_DIR)/product/aosp_base.mk)
8.2. delete $(call inherit-product, vendor/omni/config/gsm.mk)
8.3. change omni to twrp
9. open AndroidProducts.mk
change omni to twrp (4 spots)
10. Add to boardconfig.mk
TW_NO_SCREEN_TIMEOUT := true
TW_NO_SCREEN_BLANK := true
#TW_SCREEN_BLANK_ON_BOOT := true
TW_DEVICE_VERSION := 1_physwizz
To save space
-----------------------
if not u have to compress kernel image or reduce the size of kernel
BOARD_KERNEL_IMAGE_NAME := Image.gz
TARGET_PREBUILT_KERNEL := $(DEVICE_PATH)/prebuilt/Image.gz
# compress ramdisk
BOARD_RAMDISK_USE_LZMA := true
LZMA_RAMDISK_TARGETS := recovery
# To save more space
BOARD_HAS_NO_REAL_SDCARD := true
Using AIK to unpack and repack can also reduce size
Establish Android Building Environment
cd ~
sudo apt install git aria2 -y
git clone https://gitlab.com/OrangeFox/misc/scripts
cd scripts
sudo bash setup/android_build_env.sh
sudo bash setup/install_android_sdk.sh
TWRP 11
=======
mkdir ~/twrp-11
cd ~/twrp-11
repo init --depth=1 -u https://github.com/minimal-manifest-twrp/platform_manifest_twrp_aosp.git -b twrp-11
repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j4
* copy ~/TWRP/twrpdtgen/output/samsung
to /twrp-11/device/samsung
Building
-------------
export ALLOW_MISSING_DEPENDENCIES=true
. build/envsetup.sh
lunch twrp_a12s-eng
mka recoveryimage -j4
Telegram
Physwizz Collection
Forwarded from Physwizz Collection
المطرشم المطرقع
هاتولو ناس
Forwarded from Deleted Account
هاتلي ناس https://t.me/+g3oV1O2F88s5NmVk
Telegram
BO7MED TECH 👻
كونفجات شركة وي واتصالات
Forwarded from Spider Team | Special
#TWRP #Recovery #SpiderTeam #gta4l #t505n #t505 #t505c #t507
TWRP 3.7.1 - Unofficial | Recovery
Updated: 1/10/2024
▪️ Download
▪️ Support
Changelog:
• fix the problem of flashing from Odin
• fix the problem of stuck on animation
• Fix the sd card problem
• Fix the USB-storage problem
• Not decrypted yet
• Support flash dtbo img
• Support flash system img (For GSI)
• Support MTP (Device Storage shows on PC)
• Touch lag has been fixed
•The problem of entering the recovery while charging the tablet has been fixed when the tablet is closed from the recovery
• Solve the problem of errors when performing Advanced Wipe
• The CPU sensor in the status bar has been fixed
Notes:
• The test was done on the t505n. If anyone wants to try the rest of the models such as the t505/t505c/t507/t500, if you face any problem, let me know @YFMARCO
By @YFMARCO
Follow @gta4ljt
Join @smt505n
TWRP 3.7.1 - Unofficial | Recovery
Updated: 1/10/2024
▪️ Download
▪️ Support
Changelog:
• fix the problem of flashing from Odin
• fix the problem of stuck on animation
• Fix the sd card problem
• Fix the USB-storage problem
• Not decrypted yet
• Support flash dtbo img
• Support flash system img (For GSI)
• Support MTP (Device Storage shows on PC)
• Touch lag has been fixed
•The problem of entering the recovery while charging the tablet has been fixed when the tablet is closed from the recovery
• Solve the problem of errors when performing Advanced Wipe
• The CPU sensor in the status bar has been fixed
Notes:
• The test was done on the t505n. If anyone wants to try the rest of the models such as the t505/t505c/t507/t500, if you face any problem, let me know @YFMARCO
By @YFMARCO
Follow @gta4ljt
Join @smt505n