← prev | next →
eun0115 2022-09-02 17:44:17
device tree image
me2151 2022-09-02 23:06:15
FW Fed Chats:
Building: @AndroidBuildersHelp
Bringup/FW: @AndroidBringup
OT/General: @AndroidBuildingOT
Kernel/Linux: @LinuxKernelNewbies
TWRP: @build_twrp
patriot_235 2022-09-03 12:05:26
@cyberknight777 is MGLRU gonna work with SLMK ?
cyberknight777 2022-09-03 12:07:24
I use it alongside slmk
maingocvinh 2022-09-03 18:46:59
who has worked with ramdisk while building kernel, can you give me some knowledge about it?
ThePoorDude 2022-09-04 07:55:45
Hello, Is there a guide on how to build kernel for a device that is not open source? I have pulled the defconfig off of my device but I don’t know what to do now.
ThePoorDude 2022-09-04 07:55:58
Any help is really appreciated
ThePoorDude 2022-09-04 08:48:19
tc: gcc-linaro-7.5.0-2019.12-i686_aarch64-elf
https://hastebin.com/hasefigiba.properties
Hastebin: Send and Save Text or Code Snippets for Free | Toptal® –
HastebinHastebin is a free web-based pastebin service for storing and sharing text and code snippets with anyone. Get started now.
ThePoorDude 2022-09-04 08:48:44
ThePoorDude 2022-09-04 08:48:19
tc: gcc-linaro-7.5.0-2019.12-i686_aarch64-elf
https://hastebin.com/hasefigiba.properties
make: *** [Makefile:154: sub-make] Error 2
ByteLawd 2022-09-04 20:01:16
ROM is failing in last steps of making .img files from already compiled modules https://hastebin.com/icomojarod.sql
Hastebin: Send and Save Text or Code Snippets for Free | Toptal® –
HastebinHastebin is a free web-based pastebin service for storing and sharing text and code snippets with anyone. Get started now.
n7105 2022-09-04 20:22:11
ByteLawd 2022-09-04 20:01:16
ROM is failing in last steps of making .img files from already compiled modules https://hastebin.com/icomojarod.sql
.img ?
gautam4966 2022-09-04 22:06:21
Guys, can i just add
CONFIG_HARDENED_USERCOPY=y
in defconfig to make hardened kernel for Android ?
Android’s website says Android 8 and above has Hardening features
n7105 2022-09-04 22:10:05
gautam4966 2022-09-04 22:06:21
Guys, can i just add
CONFIG_HARDENED_USERCOPY=y
in defconfig to make hardened kernel for Android ?
Android’s website says Android 8 and above has Hardening features
no
n7105 2022-09-04 22:10:19
check if the config is not set then enable it
Tashar02 2022-09-04 22:20:17
gautam4966 2022-09-04 22:06:21
Guys, can i just add
CONFIG_HARDENED_USERCOPY=y
in defconfig to make hardened kernel for Android ?
Android’s website says Android 8 and above has Hardening features
No
Tashar02 2022-09-04 22:20:27
It’s part of hardening yes, but that’s not all
Tashar02 2022-09-04 22:20:36
And it’s a config that is enabled by default most of the time
Tashar02 2022-09-04 22:21:16
A kernel just having that can’t be considered a full-fledged hardened kernel
lmaoicon 2022-09-04 23:06:45
gautam4966 2022-09-04 22:06:21
Guys, can i just add
CONFIG_HARDENED_USERCOPY=y
in defconfig to make hardened kernel for Android ?
Android’s website says Android 8 and above has Hardening features
Part of basic hardening stuff, but you’ll be needing A LOT of other stuffs enabled as well just to get what’s available on kernel
Some out-of-tree patches can also help harden it to the extent of sacrificing performance even harder
ByteLawd 2022-09-05 01:41:49
n7105 2022-09-04 20:22:11
.img ?
vendor.img system.img system_ext.img etc etc
n7105 2022-09-05 01:45:42
ByteLawd 2022-09-05 01:41:49
vendor.img system.img system_ext.img etc etc
seems like a ota script issues i think you can do it manually if you have all required files system.img vendor.img and boot.img you can compress it to brotli format and make a flashable zip
ByteLawd 2022-09-05 02:06:48
n7105 2022-09-05 01:45:42
seems like a ota script issues i think you can do it manually if you have all required files system.img vendor.img and boot.img you can compress it to brotli format and make a flashable zip
This is so strange because I was able to create microg-lineage images for crosshatch and redfin just fine. And crDroid is a lineage fork
schr_0dinger 2022-09-05 06:02:44
Hi. Need a small help..
Is there an equivalent commit in MSM boards to set eSCO transport unit to 16 ?
https://review.lineageos.org/c/LineageOS/android_kernel_samsung_gta4xl/+/330458/
ameer ฅ’ω’ฅ 2022-09-05 18:58:55
It says undefined reference ,but it’s defined in another file
ameer ฅ’ω’ฅ 2022-09-05 19:02:33
drivers/video/fbdev/msm/mdss_compat_utils.o: In function mdss_compat_overlay_ioctl’: /workspace/source/kernel/msm-4.19/drivers/video/fbdev/msm/mdss_compat_utils.c:4159: undefined reference to mdss_fb_do_ioctl’
ameer ฅ’ω’ฅ 2022-09-05 19:03:35
int mdss_fb_do_ioctl(struct fb_info *info, unsigned int cmd,
unsigned long arg, struct file *file);
belugareal1 2022-09-05 19:05:48
ameer ฅ’ω’ฅ 2022-09-05 19:02:33
drivers/video/fbdev/msm/mdss_compat_utils.o: In function mdss_compat_overlay_ioctl’: /workspace/source/kernel/msm-4.19/drivers/video/fbdev/msm/mdss_compat_utils.c:4159: undefined reference to mdss_fb_do_ioctl’
Header might not be included
TheVancedGamer 2022-09-05 19:06:12
ameer ฅ’ω’ฅ 2022-09-05 19:03:35
int mdss_fb_do_ioctl(struct fb_info *info, unsigned int cmd,
unsigned long arg, struct file *file);
this is definition
TheVancedGamer 2022-09-05 19:06:17
not declaration
ameer ฅ’ω’ฅ 2022-09-05 19:06:49
Is defined in “mdss_fb.h”
and it’s included
ameer ฅ’ω’ฅ 2022-09-05 19:07:19
How do i declare it
n7105 2022-09-06 00:56:17
hey, hope you are fine, i use a kernel source 3.x for samsung. so i am trying to build a recovery works on lzma ramdisk compression’s. the question: may i keep gzip config and enable lzma config or i should disable the first one and enable the second ?
JaswantTeja 2022-09-06 05:02:42
bin/sh: 1: /datadrive/prebuilts/clang/host/linux-x86/clang-r416183b/bin/clang: not found
JaswantTeja 2022-09-06 05:02:52
Help me plox
eun0115 2022-09-06 06:27:25
JaswantTeja 2022-09-06 05:02:42
bin/sh: 1: /datadrive/prebuilts/clang/host/linux-x86/clang-r416183b/bin/clang: not found
check if that clang is present
← prev | next →