mirror of
https://github.com/MeexReay/pmos-xiaomi-angelican.git
synced 2025-06-24 10:32:59 +03:00
update defconfigs and damn
This commit is contained in:
parent
38bd14e49b
commit
f1c234ec9a
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
./extract-paths.sh
|
source extract-paths.sh
|
||||||
|
|
||||||
pmbootstrap chroot apk add android-tools
|
pmbootstrap chroot apk add android-tools
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ package() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
sha512sums="
|
sha512sums="
|
||||||
dcf8b98925b61178d2ff11e199f4701f1f153821bb5670d18be60ce338459c53647a8ccdfb99b86ecb0e92a59ccbc310a22e1b343254d1645499ea09652bfe03 deviceinfo
|
8f6ab2aad5c604dbfffba94d9c18b8f2b247a18a483d1090c7c0f147319405f176b8583ef8ede20888ef497466100c8bd224df3c2671d9f3b0decc5fb19e01d1 deviceinfo
|
||||||
87a1e3b1f31a7a2717992621eaad272d8ad7e2dca7346e7fcd583e70eb73d817bcfc32b51c322e19ccf575fa0ef3ea7f6279e3176abc4db0c5d49336b9971d05 BT_FW.cfg
|
87a1e3b1f31a7a2717992621eaad272d8ad7e2dca7346e7fcd583e70eb73d817bcfc32b51c322e19ccf575fa0ef3ea7f6279e3176abc4db0c5d49336b9971d05 BT_FW.cfg
|
||||||
3f973f1ae3f24dd9aa087976cc5965aad41c4a0065f69b3e20c1ebe44e34ee2821312f9610b0c8db6b7b6782cb196afca557f86819514e3873d0be468c588ef4 Himax_firmware.bin
|
3f973f1ae3f24dd9aa087976cc5965aad41c4a0065f69b3e20c1ebe44e34ee2821312f9610b0c8db6b7b6782cb196afca557f86819514e3873d0be468c588ef4 Himax_firmware.bin
|
||||||
43bea79d5af5ada68eb96b5947c88f385f15d7691c6868bf54dcc31ca7175b037422d7e19065b2e24a511de6d60082b11676b7e8e0b3dccbc66a09c1d64e1f1d Himax_mpfw.bin
|
43bea79d5af5ada68eb96b5947c88f385f15d7691c6868bf54dcc31ca7175b037422d7e19065b2e24a511de6d60082b11676b7e8e0b3dccbc66a09c1d64e1f1d Himax_mpfw.bin
|
||||||
|
@ -8,8 +8,6 @@ deviceinfo_manufacturer="Xiaomi"
|
|||||||
deviceinfo_codename="xiaomi-angelican"
|
deviceinfo_codename="xiaomi-angelican"
|
||||||
deviceinfo_year="2020"
|
deviceinfo_year="2020"
|
||||||
deviceinfo_dtb="mediatek/merged"
|
deviceinfo_dtb="mediatek/merged"
|
||||||
deviceinfo_modules_initfs="debug-shell"
|
|
||||||
deviceinfo_kernel_cmdline_append="pmos.debug-shell"
|
|
||||||
deviceinfo_arch="aarch64"
|
deviceinfo_arch="aarch64"
|
||||||
|
|
||||||
# Device related
|
# Device related
|
||||||
@ -20,9 +18,9 @@ deviceinfo_screen_width="720"
|
|||||||
deviceinfo_screen_height="1600"
|
deviceinfo_screen_height="1600"
|
||||||
|
|
||||||
# Bootloader related
|
# Bootloader related
|
||||||
# deviceinfo_kernel_cmdline="bootopt=64S3,32N2,64N2 androidboot.init_fatal_reboot_target=recovery buildvariant=userdebug kpti=off"
|
deviceinfo_kernel_cmdline="bootopt=64S3,32N2,64N2 androidboot.init_fatal_reboot_target=recovery buildvariant=userdebug kpti=off"
|
||||||
deviceinfo_kernel_cmdline="bootopt=64S3,32N2,64N2 buildvariant=user"
|
# deviceinfo_kernel_cmdline="bootopt=64S3,32N2,64N2 buildvariant=user"
|
||||||
deviceinfo_create_initfs_extra="true"
|
# deviceinfo_create_initfs_extra="true"
|
||||||
deviceinfo_flash_method="fastboot"
|
deviceinfo_flash_method="fastboot"
|
||||||
deviceinfo_flash_sparse="true"
|
deviceinfo_flash_sparse="true"
|
||||||
deviceinfo_bootimg_mtk_mkimage="false"
|
deviceinfo_bootimg_mtk_mkimage="false"
|
||||||
@ -32,7 +30,7 @@ deviceinfo_bootimg_dtb_second="false"
|
|||||||
# Flashing related
|
# Flashing related
|
||||||
deviceinfo_generate_bootimg="true"
|
deviceinfo_generate_bootimg="true"
|
||||||
deviceinfo_flash_pagesize="2048"
|
deviceinfo_flash_pagesize="2048"
|
||||||
deviceinfo_header_version="2"
|
deviceinfo_header_version="3"
|
||||||
deviceinfo_append_dtb="false"
|
deviceinfo_append_dtb="false"
|
||||||
deviceinfo_flash_offset_dtb="0x07808000"
|
deviceinfo_flash_offset_dtb="0x07808000"
|
||||||
deviceinfo_flash_offset_base="0x40078000"
|
deviceinfo_flash_offset_base="0x40078000"
|
||||||
|
@ -1,13 +1,15 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
./extract-paths.sh
|
source extract-paths.sh
|
||||||
|
|
||||||
|
LOG_FILE=/proc/last_kmsg
|
||||||
|
|
||||||
pmbootstrap chroot apk add android-tools
|
pmbootstrap chroot apk add android-tools
|
||||||
|
|
||||||
pmbootstrap chroot adb shell stat /proc/last_kmsg
|
pmbootstrap chroot adb shell stat $LOG_FILE
|
||||||
pmbootstrap chroot adb pull /proc/last_kmsg /home/pmos
|
pmbootstrap chroot adb pull $LOG_FILE /home/pmos/full-kernel-trouble.txt
|
||||||
|
|
||||||
sudo mv $PMWORK/chroot_native/home/pmos/last_kmsg /tmp/full-kernel-trouble.txt
|
sudo mv $PMWORK/chroot_native/home/pmos/full-kernel-trouble.txt /tmp
|
||||||
|
|
||||||
tail -n 100 /tmp/full-kernel-trouble.txt > kernel-trouble.txt
|
tail -n 100 /tmp/full-kernel-trouble.txt > kernel-trouble.txt
|
||||||
|
|
||||||
|
@ -1,100 +1,100 @@
|
|||||||
[ 5.397578] (1)[1:init]battery_psy_get_property psp:18 ret:0 val:-6900
|
[ 4.377773] <0>.(0)[1:swapper/0]mtk_dbgtop_get_base_addr: dbgtop iomap failed
|
||||||
[ 5.399363] (1)[1:init]battery_psy_get_property psp:12 ret:0 val:3802000
|
[ 4.377783] <0>.(0)[1:swapper/0]In dfd init
|
||||||
[ 5.399370] (1)[1:init]battery_psy_get_property psp:24 ret:0 val:5078000
|
[ 4.378074] <0>.(0)[1:swapper/0]Linked base: 0x5d
|
||||||
[ 5.399376] (1)[1:init]battery_psy_get_property psp:117 ret:0 val:2
|
[ 4.378079] <0>.(0)[1:swapper/0]get topdbg base
|
||||||
[ 5.399382] (1)[1:init]battery_psy_get_property psp:28 ret:0 val:0
|
[ 4.378450] <0>.(0)[1:swapper/0]DMI not present or invalid.
|
||||||
[ 5.400054] (1)[1:init][reg_to_current] 0xfff5 0xfff5 0xfff5 0x1f 0x1f 0
|
[ 4.378667] <0>.(0)[1:swapper/0]NET: Registered protocol family 16
|
||||||
[ 5.400439] (1)[1:init][BattThermistorConverTemp] 79232 63187 65772 30 35 34
|
[ 4.379908] <0>.(0)[1:swapper/0]schedtune: configured to support 6 boost groups
|
||||||
[ 5.400451] (1)[1:init][BattVoltToTemp] 711 100000 1792 0
|
[ 4.380026] <0>.(0)[1:swapper/0]audit: initializing netlink subsys (disabled)
|
||||||
[ 5.400464] (1)[1:init][force_get_tbat_internal] 711,711,0,3,100,34 r:100 100 0
|
[ 4.380181] <0>.(2)[53:kauditd]audit: type=2000 audit(4.376:1): state=initialized audit_enabled=0 res=1
|
||||||
[ 5.400474] (1)[1:init]battery_psy_get_property psp:46 ret:0 val:340
|
[ 4.380200] <0>.(0)[1:swapper/0]ramoops: using module parameters
|
||||||
[ 5.400483] (1)[1:init]battery_psy_get_property psp:92 ret:0 val:75
|
[ 4.387310] <0>.(0)[1:swapper/0]console [pstore-1] enabled
|
||||||
[ 5.400496] (1)[1:init]battery_psy_get_property psp:45 ret:0 val:0
|
[ 4.387385] <0>.(0)[1:swapper/0]pstore: Registered ramoops as persistent store backend
|
||||||
[ 5.400510] (1)[1:init]battery_psy_get_property psp:56 ret:0 val:0
|
[ 4.387394] <0>.(0)[1:swapper/0]ramoops: attached 0xe0000@0x47c90000, ecc: 0/0
|
||||||
[ 5.400523] (1)[1:init]battery_psy_get_property psp:22 ret:0 val:5000000
|
[ 4.387938] <0>.(0)[1:swapper/0][DRAMC]dram info dram rank number = 1
|
||||||
[ 5.400534] (1)[1:init]battery_psy_get_property psp:73 ret:0 val:0
|
[ 4.387947] <0>.(0)[1:swapper/0][DRAMC]find dt_scan_dram_info
|
||||||
[ 5.400547] (1)[1:init]battery_psy_get_property psp:219 ret:0 val:2
|
[ 4.388274] <0>.(0)[1:swapper/0][EMI] dram_type(3)
|
||||||
[ 5.400556] (1)[1:init]battery_psy_get_property psp:94 ret:0 val:328634
|
[ 4.388281] <0>.(0)[1:swapper/0][EMI] mr5(0x1)
|
||||||
[ 5.400562] (1)[1:init]battery_psy_get_property psp:91 ret:0 val:0
|
[ 4.388288] <0>.(0)[1:swapper/0][EMI] ch_num(2)
|
||||||
[ 5.400568] (1)[1:init]battery_psy_get_property psp:33 ret:0 val:0
|
[ 4.388293] <0>.(0)[1:swapper/0][EMI] rk_num(1)
|
||||||
[ 5.400573] (1)[1:init]battery_psy_get_property psp:34 ret:0 val:0
|
[ 4.388299] <0>.(0)[1:swapper/0][EMI] rank0_size(0x10)
|
||||||
[ 5.402220] (1)[1:init]psy_chr_type_get_property: prop:4
|
[ 4.388434] <0>.(0)[1:swapper/0]cpuidle: using governor menu
|
||||||
[ 5.402231] (1)[1:init]psy_chr_type_get_property: prop:59
|
[ 4.388597] <0>.(0)[1:swapper/0]cpuidle: using governor mtk_menu
|
||||||
[ 5.402239] (1)[1:init]psy_chr_type_get_property: prop:12
|
[ 4.389728] <0>.(0)[1:swapper/0]hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
|
||||||
[ 5.431171] (1)[1:init]init: [libfs_mgr]superblock s_max_mnt_count:65535,/dev/block/platform/bootdevice/by-name/md_udc
|
[ 4.396501] <0>.(0)[1:swapper/0]DMA: preallocated 256 KiB pool for atomic allocations
|
||||||
[ 5.431314] (1)[1:init]init: [libfs_mgr]Filesystem on /dev/block/platform/bootdevice/by-name/md_udc was not cleanly shutdown; state flags: 0x1, incompat feature flags: 0x46
|
[ 4.396645] <0>.(0)[1:swapper/0]Serial: AMBA PL011 UART driver
|
||||||
[ 5.431700] (1)[1:init]init: [libfs_mgr]check_fs(): mount(/dev/block/platform/bootdevice/by-name/md_udc,/metadata,ext4)=-1: No such file or directory
|
[ 4.396703] <0>.(0)[1:swapper/0][Power/PPM] cluster_num = 2
|
||||||
[ 5.431846] (1)[1:init]init: [libfs_mgr]Not running /system/bin/e2fsck on /dev/block/mmcblk0p13 (executable not in system image)
|
[ 4.396711] <0>.(0)[1:swapper/0][Power/PPM] ppm cluster 0 -> core_num = 4, cpu_id = 0
|
||||||
[ 5.438651] (3)[1:init]EXT4-fs (mmcblk0p13): recovery complete
|
[ 4.396718] <0>.(0)[1:swapper/0][Power/PPM] ppm cluster 1 -> core_num = 4, cpu_id = 4
|
||||||
[ 5.438674] (3)[1:init]EXT4-fs (mmcblk0p13): mounted filesystem with ordered data mode. Opts: discard
|
[ 4.396727] <0>.(0)[1:swapper/0][Power/PPM] @ppm_main_data_init: done!
|
||||||
[ 5.465363] (3)[1:init]device-mapper: verity: sha256 using implementation "sha256-ce"
|
[ 4.396852] <0>.(0)[1:swapper/0][Power/PPM] @ppm_main_pdrv_probe: ppm probe done!
|
||||||
[ 5.471933] (0)[1:init]EXT4-fs (dm-3): mounted filesystem without journal. Opts:
|
[ 4.396885] <0>.(0)[1:swapper/0][Power/PPM] ppm_profile_init done
|
||||||
[ 5.476131] (1)[1:init]device-mapper: verity: sha256 using implementation "sha256-ce"
|
[ 4.396908] <0>.(0)[1:swapper/0][Power/PPM] ppm driver init done (no DoE)!
|
||||||
[ 5.487447] (3)[1:init]EXT4-fs (dm-4): mounted filesystem without journal. Opts:
|
[ 4.396920] <0>.(0)[1:swapper/0]mrdump_parse_chosen: mrdump_cbaddr=10e800, mrdump_cbsize=1400
|
||||||
[ 5.488032] (3)[248:kworker/3:2]CDP, block
|
[ 4.396931] <0>.(0)[1:swapper/0]mrdump_parse_chosen: ddr reserve mode yes
|
||||||
[ 5.490505] (0)[1:init]device-mapper: verity: sha256 using implementation "sha256-ce"
|
[ 4.396938] <0>.(0)[1:swapper/0]dfd setup
|
||||||
[ 5.497261] (2)[1:init]EXT4-fs (dm-5): mounted filesystem without journal. Opts:
|
[ 4.396946] <0>.(0)[1:swapper/0]mtk_dbgtop_dfd_count_en: MTK_DBGTOP_LATCH_CTL2(0x20030)
|
||||||
[ 5.511105] (1)[1:init]init: 20 output lines suppressed due to ratelimiting
|
[ 4.396954] <0>.(0)[1:swapper/0]mtk_dbgtop_dfd_therm1_dis: MTK_DBGTOP_LATCH_CTL2(0x60030)
|
||||||
[ 5.648330] (1)[1:init]init 3: Loading SELinux policy
|
[ 4.396962] <0>.(0)[1:swapper/0]mtk_dbgtop_dfd_therm2_dis: MTK_DBGTOP_LATCH_CTL2(0x60030)
|
||||||
[ 5.701847] (1)[1:init]SELinux: Permission nlmsg_readpriv in class netlink_route_socket not defined in policy.
|
[ 4.396970] <0>.(0)[1:swapper/0]mtk_dbgtop_dfd_timeout: MTK_DBGTOP_LATCH_CTL2(0x600a0)
|
||||||
[ 5.702119] (1)[1:init]SELinux: Class perf_event not defined in policy.
|
[ 4.396989] <0>.(0)[1:swapper/0]mrdump_hw_init: DFD enabled
|
||||||
[ 5.702123] (1)[1:init]SELinux: the above unknown classes and permissions will be denied
|
[ 4.402407] <0>.(0)[1:swapper/0]mrdump_cblock_init: done.
|
||||||
[ 5.702180] (1)[1:init]SELinux: policy capability network_peer_controls=1
|
[ 4.402471] <0>.(0)[1:swapper/0]minirdump: [DT] reserved 0x47d70000+0x10000->(____ptrval____)
|
||||||
[ 5.702185] (1)[1:init]SELinux: policy capability open_perms=1
|
[ 4.402979] <0>.(0)[1:swapper/0]mrdump_panic_init: Full ramdump disabled, version not matched.
|
||||||
[ 5.702189] (1)[1:init]SELinux: policy capability extended_socket_class=1
|
[ 4.403183] <0>.(0)[1:swapper/0]
|
||||||
[ 5.702193] (1)[1:init]SELinux: policy capability always_check_network=0
|
[ 4.403183] <0> MTK_SIP_KERNEL_WDT - 0x(____ptrval____)
|
||||||
[ 5.702197] (1)[1:init]SELinux: policy capability cgroup_seclabel=0
|
[ 4.403198] <0>.(0)[1:swapper/0]
|
||||||
[ 5.702201] (1)[1:init]SELinux: policy capability nnp_nosuid_transition=1
|
[ 4.403198] <0> atf_aee_debug_virt_addr = 0x(____ptrval____)
|
||||||
[ 5.778904] (2)[53:kauditd]audit: type=1403 audit(1262496961.144:2): auid=4294967295 ses=4294967295 lsm=selinux res=1
|
[ 4.403701] <0>.(0)[1:swapper/0][cmdq] cmdq_drv_init enter
|
||||||
[ 5.779157] (1)[1:init]selinux 3: SELinux: Loaded policy from /vendor/etc/selinux/precompiled_sepolicy
|
[ 4.411976] <0>.(0)[1:swapper/0]clk_mt6765_scpsys_probe: start
|
||||||
[ 5.779157]
|
[ 4.414254] <0>.(0)[1:swapper/0]clk_mt6765_scpsys_probe done(0)
|
||||||
[ 5.779619] (2)[53:kauditd]audit: type=1404 audit(1262496961.144:3): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1
|
[ 4.454098] <0>.(0)[1:swapper/0]BOOTPROF: 4454.093933:probe: probe=platform_drv_probe drv=clk-mt6765(clk_mt6765_drv) 39.706000ms
|
||||||
[ 5.782062] -(3)[0:swapper/3]nano_ipi_start notify
|
[ 4.458995] <0>.(0)[1:swapper/0]------------[ cut here ]------------
|
||||||
[ 5.783464] (2)[189:scp_power_reset][sensorHub] [sensorHub] sensor_send_dram_info_to_hub success
|
[ 4.459047] <0>-(0)[1:swapper/0]WARNING: CPU: 0 PID: 1 at gic_irq_domain_translate+0x150/0x158
|
||||||
[ 5.785917] (3)[29:kworker/3:0][sensorHub] scp_sensorHub_req_send fail!
|
[ 4.459052] <0>-(0)[1:swapper/0]Modules linked in:
|
||||||
[ 5.785928] (3)[29:kworker/3:0]<SEN_LIST> sensor(1) not register
|
[ 4.459066] <0>-(0)[1:swapper/0]CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.19.127-perf-g6ea809b #1
|
||||||
[ 5.789321] (3)[29:kworker/3:0][sensorHub] scp_sensorHub_req_send fail!
|
[ 4.459073] <0>-(0)[1:swapper/0]Hardware name: MT6765G (DT)
|
||||||
[ 5.789332] (3)[29:kworker/3:0]<SEN_LIST> sensor(5) not register
|
[ 4.459081] <0>-(0)[1:swapper/0]pstate: 60400005 (nZCv daif +PAN -UAO)
|
||||||
[ 5.800487] (2)[1:init]selinux 3: SELinux: Loaded file_contexts
|
[ 4.459090] <0>-(0)[1:swapper/0]pc : gic_irq_domain_translate+0x150/0x158
|
||||||
[ 5.800487]
|
[ 4.459098] <0>-(0)[1:swapper/0]lr : gic_irq_domain_translate+0x14c/0x158
|
||||||
[ 5.835164] (1)[1:init]init 3: init second stage started!
|
[ 4.459104] <0>-(0)[1:swapper/0]sp : fffffff0747676b0
|
||||||
[ 5.881848] (1)[1:init]init 3: Using Android DT directory /proc/device-tree/firmware/android/
|
[ 4.459109] <0>-(0)[1:swapper/0]x29: fffffff0747676b0 x28: 0000000000000000
|
||||||
[ 5.882972] (1)[1:init]init 3: Init cannot set 'ro.boot.hardware' to 'mt6765': Read-only property was already set
|
[ 4.459118] <0>-(0)[1:swapper/0]x27: ffffffaf6463727a x26: 0000000000000000
|
||||||
[ 5.883033] (1)[1:init]init 3: Init cannot set 'ro.boot.mode' to 'charger': Read-only property was already set
|
[ 4.459126] <0>-(0)[1:swapper/0]x25: ffffffaf646df000 x24: 000000000000008b
|
||||||
[ 5.883389] (1)[1:init]init 3: Init cannot set 'ro.boot.serialno' to 'LBAM59WKEMSGTK4H': Read-only property was already set
|
[ 4.459134] <0>-(0)[1:swapper/0]x23: 0000000000000001 x22: fffffff074767798
|
||||||
[ 5.890358] (2)[312:init]init (312) used greatest stack depth: 12160 bytes left
|
[ 4.459141] <0>-(0)[1:swapper/0]x21: fffffff0747676f0 x20: fffffff0747676ec
|
||||||
[ 5.890683] -(1)[1:init]Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b
|
[ 4.459149] <0>-(0)[1:swapper/0]x19: fffffff074767798 x18: ffffffaf6510c650
|
||||||
[ 5.890683]
|
[ 4.459157] <0>-(0)[1:swapper/0]x17: 0000000000000000 x16: 0000000000000000
|
||||||
[ 5.890701] -(1)[1:init]SMP: stopping secondary CPUs
|
[ 4.459165] <0>-(0)[1:swapper/0]x15: 00000000fffffff5 x14: ffff0000ffffff00
|
||||||
[ 6.953954] -(1)[1:init]Kernel Offset: 0x27f4800000 from 0xffffff8008000000
|
[ 4.459173] <0>-(0)[1:swapper/0]x13: 00000000000008b4 x12: 0000000000000000
|
||||||
[ 6.953965] -(1)[1:init]PHYS_OFFSET: 0xfffffff5c0000000
|
[ 4.459181] <0>-(0)[1:swapper/0]x11: 0000000000000000 x10: ffffffffffffffff
|
||||||
[ 6.953970] -(1)[1:init]Modules linked in:
|
[ 4.459189] <0>-(0)[1:swapper/0]x9 : 3b41371950853c00 x8 : 3b41371950853c00
|
||||||
[ 6.953987] -(1)[1:init]CPU: 1 PID: 1 Comm: init Tainted: G W 4.19.127-perf-g7288046673d5 #1
|
[ 4.459197] <0>-(0)[1:swapper/0]x7 : 0000000000000000 x6 : ffffffaf6530eaa4
|
||||||
[ 6.953994] -(1)[1:init]Hardware name: MT6765G (DT)
|
[ 4.459204] <0>-(0)[1:swapper/0]x5 : 0000000000000001 x4 : 0000000000000000
|
||||||
[ 6.954001] -(1)[1:init]Call trace:
|
[ 4.459212] <0>-(0)[1:swapper/0]x3 : 0000000000000000 x2 : 0000000000000001
|
||||||
[ 6.954015] -(1)[1:init] dump_backtrace+0x0/0x198
|
[ 4.459220] <0>-(0)[1:swapper/0]x1 : 0000000000000000 x0 : 0000000000000000
|
||||||
[ 6.954023] -(1)[1:init] show_stack+0x20/0x2c
|
[ 4.459230] <0>-(0)[1:swapper/0]Call trace:
|
||||||
[ 6.954032] -(1)[1:init] dump_stack+0xb8/0xf0
|
[ 4.459238] <0>-(0)[1:swapper/0] gic_irq_domain_translate+0x150/0x158
|
||||||
[ 6.954041] -(1)[1:init] mrdump_common_die+0x174/0x22c
|
[ 4.459246] <0>-(0)[1:swapper/0] gic_irq_domain_alloc+0x58/0x228
|
||||||
[ 6.954047] -(1)[1:init] ipanic+0xac/0xd8
|
[ 4.459258] <0>-(0)[1:swapper/0] irq_domain_alloc_irqs_parent+0x48/0x60
|
||||||
[ 6.954056] -(1)[1:init] atomic_notifier_call_chain+0x50/0x88
|
[ 4.459267] <0>-(0)[1:swapper/0] mtk_sysirq_domain_alloc+0xe4/0xec
|
||||||
[ 6.954064] -(1)[1:init] panic+0x13c/0x288
|
[ 4.459275] <0>-(0)[1:swapper/0] __irq_domain_alloc_irqs+0x108/0x210
|
||||||
[ 6.954073] -(1)[1:init] complete_and_exit+0x0/0x2c
|
[ 4.459283] <0>-(0)[1:swapper/0] irq_create_fwspec_mapping+0x1f0/0x30c
|
||||||
[ 6.954080] -(1)[1:init] do_group_exit+0x8c/0x9c
|
[ 4.459291] <0>-(0)[1:swapper/0] irq_create_of_mapping+0x64/0x8c
|
||||||
[ 6.954089] -(1)[1:init] get_signal+0x1b4/0x67c
|
[ 4.459302] <0>-(0)[1:swapper/0] of_irq_get+0xa4/0xd4
|
||||||
[ 6.954097] -(1)[1:init] do_notify_resume+0x150/0x23e4
|
[ 4.459310] <0>-(0)[1:swapper/0] of_irq_to_resource+0x3c/0xf0
|
||||||
[ 6.954105] -(1)[1:init] work_pending+0x8/0x10
|
[ 4.459318] <0>-(0)[1:swapper/0] of_irq_to_resource_table+0x3c/0x74
|
||||||
[ 6.954262] -(1)[1:init]mrdump: cpu[1] tsk:0xffffffcab4678e80 ti:0xffffffcab4680000
|
[ 4.459325] <0>-(0)[1:swapper/0] of_device_alloc+0x120/0x1ac
|
||||||
[ 6.996393] -(1)[1:init]mrdump: add UFS:0xffffffa7ff1a0c80 sz:0x0 failed
|
[ 4.459333] <0>-(0)[1:swapper/0] of_platform_device_create_pdata+0x68/0xf4
|
||||||
[ 6.996456] -(1)[1:init]mrdump: add CCCI:0xffffffcafa858000 sz:0x0 failed
|
[ 4.459340] <0>-(0)[1:swapper/0] of_platform_bus_create+0x1c4/0x324
|
||||||
[ 6.996465] -(1)[1:init]mrdump: add MD:0xffffffcafa900000 sz:0x0 failed
|
[ 4.459347] <0>-(0)[1:swapper/0] of_platform_populate+0x74/0xb8
|
||||||
[ 6.996641] -(1)[1:init]Kernel panic - not syncing: stack-protector: Kernel stack is corrupted in: mrdump_common_die+0x22c/0x22c
|
[ 4.459358] <0>-(0)[1:swapper/0] of_platform_default_populate_init+0xac/0xc4
|
||||||
[ 6.996848] -(1)[1:init]SMP: stopping secondary CPUs
|
[ 4.459368] <0>-(0)[1:swapper/0] do_one_initcall+0x120/0x284
|
||||||
[ 11.579341] -(1)[1:init]SMP: failed to stop secondary CPUs 0-3
|
[ 4.459377] <0>-(0)[1:swapper/0] do_initcall_level+0x144/0x16c
|
||||||
[ 11.579624] -(1)[1:init]Kernel Offset: 0x27f4800000 from 0xffffff8008000000
|
[ 4.459385] <0>-(0)[1:swapper/0] do_basic_setup+0x34/0x4c
|
||||||
[ 11.579781] -(1)[1:init]PHYS_OFFSET: 0xfffffff5c0000000
|
[ 4.459392] <0>-(0)[1:swapper/0] kernel_init_freeable+0xb4/0x134
|
||||||
[ 11.579938] -(1)[1:init]CPU features: 0x00000000,2080200c
|
[ 4.459402] <0>-(0)[1:swapper/0] kernel_init+0x14/0x10c
|
||||||
[ 11.580082] -(1)[1:init]Memory Limit: none
|
[ 4.459410] <0>-(0)[1:swapper/0] ret_from_fork+0x10/0x18
|
||||||
[ 12.820547] -(1)[1:init]Rebooting in 1 seconds..
|
[ 4.459420] <0>-(0)[1:swapper/0]---[ end trace cf01a2b44d214b1d ]---
|
||||||
[ 13.844680] -(1)[1:init]SMP: stopping secondary CPUs
|
[ 4.460569] <0>.(0)[1:swapper/0]platform cci: Linked as a consumer to 1000c000.apmixed
|
||||||
[ 18.331757] -(1)[1:init]SMP: failed to stop secondary CPUs 0-3
|
[ 4.460640] <0>.(0)[1:swapper/0]armpll_ll_enable = 1
|
||||||
|
@ -55,16 +55,16 @@ package() {
|
|||||||
make dtbs_install O="$_outdir" ARCH="$_carch" \
|
make dtbs_install O="$_outdir" ARCH="$_carch" \
|
||||||
INSTALL_DTBS_PATH="$pkgdir"/boot/dtbs
|
INSTALL_DTBS_PATH="$pkgdir"/boot/dtbs
|
||||||
|
|
||||||
# make modules_install O="$_outdir" ARCH="$_carch" \
|
make modules_install O="$_outdir" ARCH="$_carch" \
|
||||||
# INSTALL_DTBS_PATH="$pkgdir"/boot/dtbs \
|
INSTALL_DTBS_PATH="$pkgdir"/boot/dtbs \
|
||||||
# INSTALL_MOD_PATH="$pkgdir" INSTALL_MOD_STRIP=1
|
INSTALL_MOD_PATH="$pkgdir" INSTALL_MOD_STRIP=1
|
||||||
|
|
||||||
cat "$pkgdir"/boot/dtbs/mediatek/*.dtb > "$pkgdir"/boot/dtbs/mediatek/merged.dtb
|
cat "$pkgdir"/boot/dtbs/mediatek/*.dtb > "$pkgdir"/boot/dtbs/mediatek/merged.dtb
|
||||||
}
|
}
|
||||||
|
|
||||||
sha512sums="
|
sha512sums="
|
||||||
beeaa1b5b5d3e6f635508c6f421051080f7fdc296909db7448e4c706b6a54755badc2ea0c1316dbf0a1d394dbea15266a84dfa36d9818c8df99747484c9175b6 linux-xiaomi-angelican-5b52fedbe4d7c6809b5040f7486a8b72812f3fba.tar.gz
|
beeaa1b5b5d3e6f635508c6f421051080f7fdc296909db7448e4c706b6a54755badc2ea0c1316dbf0a1d394dbea15266a84dfa36d9818c8df99747484c9175b6 linux-xiaomi-angelican-5b52fedbe4d7c6809b5040f7486a8b72812f3fba.tar.gz
|
||||||
c9d2007d2e6d64c9d0a36fbc8078fb295ce1a23b6daf32571f47d0b9079486ace775f23c51e683a091ba405ee251e98d132b6de3c3fd56a29713b14cac23aca8 config-xiaomi-angelican.aarch64
|
ee1a116d200f0b9ad63eb2ea132364dd7940a4b8edf1558475b8780506eabd56882f8338eaeba53faea0d59ab8f4eedd5d4f10c5bfd8b747d29f56c937ed40a3 config-xiaomi-angelican.aarch64
|
||||||
3fc36011ab030382f6b74e3821dcc75a236e12fe38bf18639fededc6c49a8c809d9ca1af5a9f2ed83f5f412a383918db14b4af48eda7087ec5997ca00e018152 001-touchscreen-firmware-loading-time.patch
|
3fc36011ab030382f6b74e3821dcc75a236e12fe38bf18639fededc6c49a8c809d9ca1af5a9f2ed83f5f412a383918db14b4af48eda7087ec5997ca00e018152 001-touchscreen-firmware-loading-time.patch
|
||||||
2ed25978e3c91addf7e568b68ccb6036aa581da0981ec75527e25d15d0ee7dfed97100376e58ce6a6c07ef8a96210a30c0ad91b3cea29528aa89fc59980691bf 002-battery-percentage.patch
|
2ed25978e3c91addf7e568b68ccb6036aa581da0981ec75527e25d15d0ee7dfed97100376e58ce6a6c07ef8a96210a30c0ad91b3cea29528aa89fc59980691bf 002-battery-percentage.patch
|
||||||
c33fad9de627e72f12e61e728fa1ec53ef15259c7790392a997cc7269e60e45da9534d58851c3b348a1729aaa134d1df305e33546e8a1f3654462f2c3c1d9563 003-fix-check-lxdialog-makefile.patch
|
c33fad9de627e72f12e61e728fa1ec53ef15259c7790392a997cc7269e60e45da9534d58851c3b348a1729aaa134d1df305e33546e8a1f3654462f2c3c1d9563 003-fix-check-lxdialog-makefile.patch
|
||||||
|
@ -150,7 +150,12 @@ CONFIG_RT_GROUP_SCHED=y
|
|||||||
CONFIG_CGROUP_BPF=y
|
CONFIG_CGROUP_BPF=y
|
||||||
CONFIG_SOCK_CGROUP_DATA=y
|
CONFIG_SOCK_CGROUP_DATA=y
|
||||||
# CONFIG_CHECKPOINT_RESTORE is not set
|
# CONFIG_CHECKPOINT_RESTORE is not set
|
||||||
# CONFIG_NAMESPACES is not set
|
CONFIG_NAMESPACES=y
|
||||||
|
CONFIG_UTS_NS=y
|
||||||
|
CONFIG_IPC_NS=y
|
||||||
|
CONFIG_USER_NS=y
|
||||||
|
CONFIG_PID_NS=y
|
||||||
|
CONFIG_NET_NS=y
|
||||||
# CONFIG_SCHED_AUTOGROUP is not set
|
# CONFIG_SCHED_AUTOGROUP is not set
|
||||||
CONFIG_SCHED_TUNE=y
|
CONFIG_SCHED_TUNE=y
|
||||||
CONFIG_DEFAULT_USE_ENERGY_AWARE=y
|
CONFIG_DEFAULT_USE_ENERGY_AWARE=y
|
||||||
@ -1114,7 +1119,7 @@ CONFIG_ARM_AMBA=y
|
|||||||
CONFIG_UEVENT_HELPER=y
|
CONFIG_UEVENT_HELPER=y
|
||||||
CONFIG_UEVENT_HELPER_PATH=""
|
CONFIG_UEVENT_HELPER_PATH=""
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
# CONFIG_DEVTMPFS_MOUNT is not set
|
CONFIG_DEVTMPFS_MOUNT=y
|
||||||
CONFIG_STANDALONE=y
|
CONFIG_STANDALONE=y
|
||||||
CONFIG_PREVENT_FIRMWARE_BUILD=y
|
CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
CONFIG_FW_LOADER=y
|
CONFIG_FW_LOADER=y
|
||||||
@ -4082,7 +4087,7 @@ CONFIG_ANDROID_BINDER_DEVICES="binder,hwbinder,vndbinder"
|
|||||||
#
|
#
|
||||||
CONFIG_ARM_PSCI_FW=y
|
CONFIG_ARM_PSCI_FW=y
|
||||||
# CONFIG_ARM_SCPI_PROTOCOL is not set
|
# CONFIG_ARM_SCPI_PROTOCOL is not set
|
||||||
CONFIG_FIRMWARE_MEMMAP=y
|
# CONFIG_FIRMWARE_MEMMAP is not set
|
||||||
CONFIG_HAVE_ARM_SMCCC=y
|
CONFIG_HAVE_ARM_SMCCC=y
|
||||||
# CONFIG_MESON_SM is not set
|
# CONFIG_MESON_SM is not set
|
||||||
|
|
||||||
@ -4094,11 +4099,11 @@ CONFIG_DCACHE_WORD_ACCESS=y
|
|||||||
# CONFIG_EXT3_FS is not set
|
# CONFIG_EXT3_FS is not set
|
||||||
CONFIG_EXT4_FS=y
|
CONFIG_EXT4_FS=y
|
||||||
CONFIG_EXT4_USE_FOR_EXT2=y
|
CONFIG_EXT4_USE_FOR_EXT2=y
|
||||||
CONFIG_EXT4_FS_POSIX_ACL=y
|
# CONFIG_EXT4_FS_POSIX_ACL is not set
|
||||||
CONFIG_EXT4_FS_SECURITY=y
|
CONFIG_EXT4_FS_SECURITY=y
|
||||||
CONFIG_EXT4_ENCRYPTION=y
|
CONFIG_EXT4_ENCRYPTION=y
|
||||||
CONFIG_EXT4_FS_ENCRYPTION=y
|
CONFIG_EXT4_FS_ENCRYPTION=y
|
||||||
CONFIG_EXT4_DEBUG=y
|
# CONFIG_EXT4_DEBUG is not set
|
||||||
CONFIG_JBD2=y
|
CONFIG_JBD2=y
|
||||||
# CONFIG_JBD2_DEBUG is not set
|
# CONFIG_JBD2_DEBUG is not set
|
||||||
CONFIG_FS_MBCACHE=y
|
CONFIG_FS_MBCACHE=y
|
||||||
|
Loading…
x
Reference in New Issue
Block a user