Remix OS , Nvidia VGA and Summoners War - Remix OS for PC

Hi all.
I'm use laptop M6400 , cpu T9800 and vga Quadro Fx3700M.
I'm try install remix os in my laptop and is work. But when i try install game summoners war , it not work (Clash of clans ok). I guess that there are compatibility issues between remix os and my vga. I tried config grub file . efi\boot\gub.cfg . But all not work. How can i do now ?
Code:
set timeout=60
set gfxmode=1024x768
terminal_output gfxterm
menuentry 'Resident mode - All your data and apps are saved ' --class android-x86 {
search --file --no-floppy --set=root /system.sfs
linuxefi /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet DATA= CREATE_DATA_IMG=1
initrdefi /initrd.img
nouveau.modeset=1 i915.modeset=0
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset nouveau.blacklist=1
}
menuentry 'Guest mode - No data will be saved after each session' --class android-x86 {
search --file --no-floppy --set=root /system.sfs
linuxefi /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet DATA= DATA_IN_MEM=1
initrdefi /initrd.img
nouveau.modeset=1 i915.modeset=0
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset nouveau.blacklist=1
}

Why did you add the line ¨ nouveau.modeset=1 i915.modeset=0 ¨ after from the initrd line?
Could you try to add one of them (or both) in the linuxefi line.
My gpu is also nvidia and adding ¨nouveau.modeset=1¨to the linuxefi line works for me.

biorap said:
Why did you add the line ¨ nouveau.modeset=1 i915.modeset=0 ¨ after from the initrd line?
Could you try to add one of them (or both) in the linuxefi line.
My gpu is also nvidia and adding ¨nouveau.modeset=1¨to the linuxefi line works for me.
Click to expand...
Click to collapse
i try add nouveau.modeset=1 but it not work
Code:
set timeout=60
set gfxmode=1920x1080
terminal_output gfxterm
nouveau.modeset=1
menuentry 'Resident mode - All your data and apps are saved ' --class android-x86 {
search --file --no-floppy --set=root /system.sfs
linuxefi /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet DATA= CREATE_DATA_IMG=1
initrdefi /initrd.img
}
menuentry 'Guest mode - No data will be saved after each session' --class android-x86 {
search --file --no-floppy --set=root /system.sfs
linuxefi /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet DATA= DATA_IN_MEM=1
initrdefi /initrd.img
}
Code:
default=0
timeout=6
nouveau.modeset=1
title Guest Mode
root (hd1,2)
kernel /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet SRC= DATA= DATA_IN_MEM=1
initrd /initrd.img
title Resident Mode
root (hd1,2)
kernel /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet SRC= DATA= CREATE_DATA_IMG=1
initrd /initrd.img
maybe i'm wrong ??

I'm saying why you don't add "nouveau.modeset=1" to linuxefi/kernel line. This is a kernel command and should be included in kernel line.But it seems you add this to wrong place.
phomuabay said:
i try add nouveau.modeset=1 but it not work
Code:
set timeout=60
set gfxmode=1920x1080
terminal_output gfxterm
nouveau.modeset=1
menuentry 'Resident mode - All your data and apps are saved ' --class android-x86 {
search --file --no-floppy --set=root /system.sfs
linuxefi /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet DATA= CREATE_DATA_IMG=1
initrdefi /initrd.img
}
menuentry 'Guest mode - No data will be saved after each session' --class android-x86 {
search --file --no-floppy --set=root /system.sfs
linuxefi /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet DATA= DATA_IN_MEM=1
initrdefi /initrd.img
}
Code:
default=0
timeout=6
nouveau.modeset=1
title Guest Mode
root (hd1,2)
kernel /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet SRC= DATA= DATA_IN_MEM=1
initrd /initrd.img
title Resident Mode
root (hd1,2)
kernel /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet SRC= DATA= CREATE_DATA_IMG=1
initrd /initrd.img
maybe i'm wrong ??
Click to expand...
Click to collapse
SM-N920C cihazımdan Tapatalk kullanılarak gönderildi

biorap said:
I'm saying why you don't add "nouveau.modeset=1" to linuxefi/kernel line. This is a kernel command and should be included in kernel line.But it seems you add this to wrong place.
SM-N920C cihazımdan Tapatalk kullanılarak gönderildi
Click to expand...
Click to collapse
Code:
set timeout=60
set gfxmode=1920x1080
terminal_output gfxterm
menuentry 'Resident mode - All your data and apps are saved ' --class android-x86 {
search --file --no-floppy --set=root /system.sfs
linuxefi /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet DATA= CREATE_DATA_IMG=1 nouveau.modeset=1
initrdefi /initrd.img
}
menuentry 'Guest mode - No data will be saved after each session' --class android-x86 {
search --file --no-floppy --set=root /system.sfs
linuxefi /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet DATA= DATA_IN_MEM=1 nouveau.modeset=1
initrdefi /initrd.img
}
Code:
default=0
timeout=6
title Guest Mode
root (hd1,2)
kernel /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet SRC= DATA= DATA_IN_MEM=1 nouveau.modeset=1
initrd /initrd.img
title Resident Mode
root (hd1,2)
kernel /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet SRC= DATA= CREATE_DATA_IMG=1 nouveau.modeset=1
initrd /initrd.img
not working. please show me your code .

phomuabay said:
Code:
set timeout=60
set gfxmode=1920x1080
terminal_output gfxterm
menuentry 'Resident mode - All your data and apps are saved ' --class android-x86 {
search --file --no-floppy --set=root /system.sfs
linuxefi /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet DATA= CREATE_DATA_IMG=1 nouveau.modeset=1
initrdefi /initrd.img
}
menuentry 'Guest mode - No data will be saved after each session' --class android-x86 {
search --file --no-floppy --set=root /system.sfs
linuxefi /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet DATA= DATA_IN_MEM=1 nouveau.modeset=1
initrdefi /initrd.img
}
Code:
default=0
timeout=6
title Guest Mode
root (hd1,2)
kernel /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet SRC= DATA= DATA_IN_MEM=1 nouveau.modeset=1
initrd /initrd.img
title Resident Mode
root (hd1,2)
kernel /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet SRC= DATA= CREATE_DATA_IMG=1 nouveau.modeset=1
initrd /initrd.img
not working. please show me your code .
Click to expand...
Click to collapse
like this. but it works for me flawlessly (my gpu is nvidia g103m - 512 mb)
i'm not sure but i think your gpu is not supported yet. because nvidia support is new and restricted in android-x86.
unknown cihazımdan Tapatalk kullanılarak gönderildi

Question
phomuabay said:
Hi all.
I'm use laptop M6400 , cpu T9800 and vga Quadro Fx3700M.
I'm try install remix os in my laptop and is work. But when i try install game summoners war , it not work (Clash of clans ok). I guess that there are compatibility issues between remix os and my vga. I tried config grub file . efi\boot\gub.cfg . But all not work. How can i do now ?
Code:
set timeout=60
set gfxmode=1024x768
terminal_output gfxterm
menuentry 'Resident mode - All your data and apps are saved ' --class android-x86 {
search --file --no-floppy --set=root /system.sfs
linuxefi /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet DATA= CREATE_DATA_IMG=1
initrdefi /initrd.img
nouveau.modeset=1 i915.modeset=0
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset nouveau.blacklist=1
}
menuentry 'Guest mode - No data will be saved after each session' --class android-x86 {
search --file --no-floppy --set=root /system.sfs
linuxefi /kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet DATA= DATA_IN_MEM=1
initrdefi /initrd.img
nouveau.modeset=1 i915.modeset=0
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset nouveau.blacklist=1
}
Click to expand...
Click to collapse
do you playing Summoner Wars in Remix OS at the moment?

Firuges said:
do you playing Summoner Wars in Remix OS at the moment?
Click to expand...
Click to collapse
i've try this game but it close becose i'm rooted
i'm like that in my grub intel_idle.max_cstate=0 processor.max_cstate=0 cpu_dma_latency=0 acpi_irq_nobalance irqpoll pcie_aspm=off i915.modeset=0 radeon.modeset=0 r128.modeset=0
i've try to force my nvidia but it was bad my vga come crazy
http://swartools.com/summoners-war-patch-notice-nov-2nd-v3-1-4-update-notice-android-only/
maybe try to change ur id also
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}

Related

[Q] Please internal swap external

I'm Koreans.
Galaxy Grand Korean version being used.
Please internal swap external
file is vold.fstab.
I are not familiar with English.
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## Regular device mount
##
## Format: dev_mount <label> <mount_point> <part> <sysfs_path1...>
## label - Label for the volume
## mount_point - Where the volume will be mounted
## part - Partition # (1 based), or 'auto' for first usable partition.
## <sysfs_path> - List of sysfs paths to source devices
######################
#storage_struct = series, "/storage/sdcard/extStorages"
#storage_struct = parallel
{
supported_exfat = yes
android_secure_containers = enable
}
dev_mount sdcard /storage/extSdCard auto /devices/platform/s3c-sdhci.2/mmc_host/mmc1/
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sda /storage/UsbDriveA auto /devices/platform/s5p-ehci
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdb /storage/UsbDriveB auto /devices/platform/s5p-ehci
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdc /storage/UsbDriveC auto /devices/platform/s5p-ehci
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdd /storage/UsbDriveD auto /devices/platform/s5p-ehci
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sde /storage/UsbDriveE auto /devices/platform/s5p-ehci
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdf /storage/UsbDriveF auto /devices/platform/s5p-ehci
#EOF

[Q] galaxy grand quattro

guys I have galaxy grand quattro my vold.fstab code Is:
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## Regular device mount
##
## Format: dev_mount <label> <mount_point> <part> <sysfs_path1...>
## label - Label for the volume
## mount_point - Where the volume will be mounted
## part - Partition # (1 based), or 'auto' for first usable partition.
## <sysfs_path> - List of sysfs paths to source devices
######################
#storage_struct = series, "/mnt/sdcard/extStorages"
#storage_struct = parallel
{
supported_exfat = yes
android_secure_containers = enable
}
dev_mount sdcard /storage/extSdCard auto /devices/platform/msm_sdcc.1/mmc_host/mmc1/
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sda /storage/UsbDriveA auto /devices/platform/msm_hsusb_host/usb
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdb /storage/UsbDriveB auto /devices/platform/msm_hsusb_host/usb
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdc /storage/UsbDriveC auto /devices/platform/msm_hsusb_host/usb
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdd /storage/UsbDriveD auto /devices/platform/msm_hsusb_host/usb
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sde /storage/UsbDriveE auto /devices/platform/msm_hsusb_host/usb
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdf /storage/UsbDriveF auto /devices/platform/msm_hsusb_host/usb
#EOF
SO please tell me where should i change the code to swap memory pls pls pls i beg u ........
Thanks in advance

vold.fstab mod on s2 plus

Hello
i have a i9105p with 4.2.2 and i want to swap internal sd memory with external sd card to get more space. I tried any vold.fstab from this forum without success (some times the phone stucked at samsung logo at boot).
Original vold.fstab:
Code:
## Vold 2.0 Generic fstab
## - San Mehat ([email protected])
##
#######################
## Regular device mount
##
## Format: dev_mount <label> <mount_point> <part> <sysfs_path1...>
## label - Label for the volume
## mount_point - Where the volume will be mounted
## part - Partition # (1 based), or 'auto' for first usable partition.
## <sysfs_path> - List of sysfs paths to source devices
######################
{
supported_exfat = yes
}
#dev_mount sdcard /storage/sdcard auto /devices/platform/mmc_host/mmc2
dev_mount sdcard /storage/extSdCard auto /devices/platform/sdhci.3/mmc_host/mmc2
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sda /storage/UsbDriveA auto /devices/platform/dwc_otg/usb1
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdb /storage/UsbDriveB auto /devices/platform/dwc_otg/usb1
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdc /storage/UsbDriveC auto /devices/platform/dwc_otg/usb1
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdd /storage/UsbDriveD auto /devices/platform/dwc_otg/usb1
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sde /storage/UsbDriveE auto /devices/platform/dwc_otg/usb1
#usb host device
{
media_type = usb
supported_exfat = yes
}
dev_mount sdf /storage/UsbDriveF auto /devices/platform/dwc_otg/usb1
Can you help me to modify it? Thanks in advance!!!
bump...nobody?

[Help] Using sed (or awk?) to search and comment out lines using addon.d script

EDIT: Nevermind. I found a solution.
I've been searching non-stop for almost 2 days using different search terms and am at a total loss here.
What I am trying to do is have my addon.d script comment out a few lines (lines 32 to 38) upon flashing a CM12 ROM update in audio_policy.conf (in red bold.)
Code:
# Global configuration section: lists input and output devices always present on the device
# as well as the output device selected by default.
# Devices are designated by a string that corresponds to the enum in audio.h
global_configuration {
attached_output_devices AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_TELEPHONY_TX
default_output_device AUDIO_DEVICE_OUT_SPEAKER
attached_input_devices AUDIO_DEVICE_IN_BUILTIN_MIC|AUDIO_DEVICE_IN_BACK_MIC|AUDIO_DEVICE_IN_REMOTE_SUBMIX|AUDIO_DEVICE_IN_VOICE_CALL|AUDIO_DEVICE_IN_TELEPHONY_RX
}
# audio hardware module section: contains descriptors for all audio hw modules present on the
# device. Each hw module node is named after the corresponding hw module library base name.
# For instance, "primary" corresponds to audio.primary.<device>.so.
# The "primary" module is mandatory and must include at least one output with
# AUDIO_OUTPUT_FLAG_PRIMARY flag.
# Each module descriptor contains one or more output profile descriptors and zero or more
# input profile descriptors. Each profile lists all the parameters supported by a given output
# or input stream category.
# The "channel_masks", "formats", "devices" and "flags" are specified using strings corresponding
# to enums in audio.h and audio_policy.h. They are concatenated by use of "|" without space or "\n".
audio_hw_modules {
primary {
outputs {
primary {
sampling_rates 44100|48000
channel_masks AUDIO_CHANNEL_OUT_STEREO
formats AUDIO_FORMAT_PCM_16_BIT
devices AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_AUX_DIGITAL|AUDIO_DEVICE_OUT_PROXY
flags AUDIO_OUTPUT_FLAG_PRIMARY
}
[B][COLOR="Red"] deep_buffer {
sampling_rates 8000|11025|12000|16000|22050|24000|32000|44100|48000
channel_masks AUDIO_CHANNEL_OUT_STEREO
formats AUDIO_FORMAT_PCM_16_BIT
devices AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_AUX_DIGITAL|AUDIO_DEVICE_OUT_PROXY
flags AUDIO_OUTPUT_FLAG_DEEP_BUFFER
}[/COLOR][/B]
multichannel {
sampling_rates 8000|11025|12000|16000|22050|24000|32000|44100|48000|96000
channel_masks dynamic
formats AUDIO_FORMAT_PCM_16_BIT
devices AUDIO_DEVICE_OUT_AUX_DIGITAL|AUDIO_DEVICE_OUT_PROXY
flags AUDIO_OUTPUT_FLAG_DIRECT
}
compress_offload {
sampling_rates 8000|11025|16000|22050|32000|44100|48000|64000|88200|96000|176400|192000
channel_masks AUDIO_CHANNEL_OUT_MONO|AUDIO_CHANNEL_OUT_STEREO|AUDIO_CHANNEL_OUT_2POINT1|AUDIO_CHANNEL_OUT_QUAD|AUDIO_CHANNEL_OUT_PENTA|AUDIO_CHANNEL_OUT_5POINT1|AUDIO_CHANNEL_OUT_6POINT1|AUDIO_CHANNEL_OUT_7POINT1
formats AUDIO_FORMAT_MP3|AUDIO_FORMAT_AAC_LC|AUDIO_FORMAT_AAC_HE_V1|AUDIO_FORMAT_AAC_HE_V2|AUDIO_FORMAT_MP2|AUDIO_FORMAT_PCM_16_BIT_OFFLOAD|AUDIO_FORMAT_PCM_24_BIT_OFFLOAD
devices AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_AUX_DIGITAL
flags AUDIO_OUTPUT_FLAG_DIRECT|AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD|AUDIO_OUTPUT_FLAG_NON_BLOCKING
}
voice_tx {
sampling_rates 8000|16000|48000
channel_masks AUDIO_CHANNEL_OUT_STEREO|AUDIO_CHANNEL_OUT_MONO
formats AUDIO_FORMAT_PCM_16_BIT
devices AUDIO_DEVICE_OUT_TELEPHONY_TX
}
voip_rx {
sampling_rates 8000|16000
channel_masks AUDIO_CHANNEL_OUT_MONO
formats AUDIO_FORMAT_PCM_16_BIT|AUDIO_FORMAT_AMR_NB|AUDIO_FORMAT_AMR_WB|AUDIO_FORMAT_QCELP|AUDIO_FORMAT_EVRC|AUDIO_FORMAT_EVRCB|AUDIO_FORMAT_EVRCWB|AUDIO_FORMAT_EVRCNW
devices AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ANLG_DOCK_HEADSET|AUDIO_DEVICE_OUT_DGTL_DOCK_HEADSET|AUDIO_DEVICE_OUT_ALL_SCO
flags AUDIO_OUTPUT_FLAG_DIRECT|AUDIO_OUTPUT_FLAG_VOIP_RX
}
}
inputs {
primary {
sampling_rates 8000|11025|12000|16000|22050|24000|32000|44100|48000
channel_masks AUDIO_CHANNEL_IN_5POINT1|AUDIO_CHANNEL_IN_MONO|AUDIO_CHANNEL_IN_STEREO|AUDIO_CHANNEL_IN_FRONT_BACK
formats AUDIO_FORMAT_PCM_16_BIT|AUDIO_FORMAT_AMR_NB|AUDIO_FORMAT_AMR_WB|AUDIO_FORMAT_QCELP|AUDIO_FORMAT_EVRC|AUDIO_FORMAT_EVRCB|AUDIO_FORMAT_EVRCWB|AUDIO_FORMAT_EVRCNW
devices AUDIO_DEVICE_IN_BUILTIN_MIC|AUDIO_DEVICE_IN_WIRED_HEADSET|AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET|AUDIO_DEVICE_IN_BACK_MIC|AUDIO_DEVICE_IN_VOICE_CALL
}
voice_rx {
sampling_rates 8000|16000|48000
channel_masks AUDIO_CHANNEL_IN_STEREO|AUDIO_CHANNEL_IN_MONO
formats AUDIO_FORMAT_PCM_16_BIT
devices AUDIO_DEVICE_IN_TELEPHONY_RX
}
}
}
a2dp {
outputs {
a2dp {
sampling_rates 44100
channel_masks AUDIO_CHANNEL_OUT_STEREO
formats AUDIO_FORMAT_PCM_16_BIT
devices AUDIO_DEVICE_OUT_ALL_A2DP
}
}
}
usb {
outputs {
usb_accessory {
sampling_rates 44100
channel_masks AUDIO_CHANNEL_OUT_STEREO
formats AUDIO_FORMAT_PCM_16_BIT
devices AUDIO_DEVICE_OUT_USB_ACCESSORY
}
usb_device {
sampling_rates 44100
channel_masks AUDIO_CHANNEL_OUT_STEREO
formats AUDIO_FORMAT_PCM_16_BIT
devices AUDIO_DEVICE_OUT_USB_DEVICE
}
}
}
r_submix {
outputs {
submix {
sampling_rates 48000
channel_masks AUDIO_CHANNEL_OUT_STEREO
formats AUDIO_FORMAT_PCM_16_BIT
devices AUDIO_DEVICE_OUT_REMOTE_SUBMIX
}
}
inputs {
submix {
sampling_rates 48000
channel_masks AUDIO_CHANNEL_IN_STEREO
formats AUDIO_FORMAT_PCM_16_BIT
devices AUDIO_DEVICE_IN_REMOTE_SUBMIX
}
}
}
}
I've came across a few solutions, but none of them worked -> except the one I found here which was the closest to working <-
Code:
sed -i '32 s/^/#/' /system/etc/audio_policy.conf;
sed -i '33 s/^/#/' /system/etc/audio_policy.conf;
sed -i '34 s/^/#/' /system/etc/audio_policy.conf;
sed -i '35 s/^/#/' /system/etc/audio_policy.conf;
sed -i '36 s/^/#/' /system/etc/audio_policy.conf;
sed -i '37 s/^/#/' /system/etc/audio_policy.conf;
sed -i '38 s/^/#/' /system/etc/audio_policy.conf;
After flashing a ROM, TWRP doesn't give any errors about it in tmp/recovery.log, but it doesn't change anything in audio_policy.conf.
When I run them manually through terminal in adb shell, they work.
Here is my entire addon.d script, named 70-customize.sh, and the sed commands are at the bottom of it:
EDIT: Solved
Does anyone have any way that I can make this thing work?
Be a good internet citizen and post your solution.

Cannot start many apps

Hello,
i have the same problem with many apps.....
Logcat :
Code:
F/libc ( 3649): Fatal signal 4 (SIGILL), code 2, fault addr 0x7fe91564f0ae in tid 3649 (tutu.ABenchMark)
I/DEBUG ( 1557): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 1557): Build fingerprint: 'Jide/remix_x86_64/remix_x86_64:5.1.1/LMY48W/B2016031502:user/release-keys'
I/DEBUG ( 1557): Revision: '0'
I/DEBUG ( 1557): ABI: 'x86_64'
I/DEBUG ( 1557): pid: 3649, tid: 3649, name: tutu.ABenchMark >>> com.antutu.ABenchMark <<<
I/DEBUG ( 1557): signal 4 (SIGILL), code 2 (ILL_ILLOPN), fault addr 0x7fe91564f0af
I/DEBUG ( 1557): rax 00007fe915702a40 rbx 00007fe915693b96 rcx 00007fe9156a1804 rdx 00007fe915702a90
I/DEBUG ( 1557): rsi 00007fe9156a17e0 rdi 00007fe915702b20
I/DEBUG ( 1557): r8 0000000000000010 r9 00007fe915703690 r10 0000000000000000 r11 0000000000000246
I/DEBUG ( 1557): r12 00007fe915702620 r13 00007fe915702650 r14 00007fe915702658 r15 00007fe915702638
I/DEBUG ( 1557): cs 0000000000000033 ss 000000000000002b
I/DEBUG ( 1557): rip 00007fe91564f0af rbp 00007fe915702698 rsp 00007ffe0c46bf40 eflags 0000000000010287
I/DEBUG ( 1557):
I/DEBUG ( 1557): backtrace:
I/DEBUG ( 1557): #00 pc 00000000001180af /data/app/com.antutu.ABenchMark-1/lib/x86_64/libabenchmark.so
I/DEBUG ( 1557): #01 pc 00000000001161ec /data/app/com.antutu.ABenchMark-1/lib/x86_64/libabenchmark.so
I/DEBUG ( 1557): #02 pc 0000000000116a25 /data/app/com.antutu.ABenchMark-1/lib/x86_64/libabenchmark.so
I/DEBUG ( 1557): #03 pc 0000000000033b32 /system/lib64/libc.so (pthread_once+130)
I/DEBUG ( 1557): #04 pc 0000000000116a63 /data/app/com.antutu.ABenchMark-1/lib/x86_64/libabenchmark.so
I/DEBUG ( 1557): #05 pc 0000000000116ac2 /data/app/com.antutu.ABenchMark-1/lib/x86_64/libabenchmark.so
I/DEBUG ( 1557): #06 pc 00000000000f9836 /data/app/com.antutu.ABenchMark-1/lib/x86_64/libabenchmark.so
I/DEBUG ( 1557): #07 pc 000000000003792b /data/app/com.antutu.ABenchMark-1/lib/x86_64/libabenchmark.so
I/DEBUG ( 1557): #08 pc 000000000000317a /system/bin/linker64 (__dl__ZN6soinfo16CallConstructorsEv.part.24+1418)
I/DEBUG ( 1557): #09 pc 0000000000007bff /system/bin/linker64 (__dl__Z9do_dlopenPKciPK17android_dlextinfo+383)
I/DEBUG ( 1557): #10 pc 0000000000002692 /system/bin/linker64 (__dl_dlopen+34)
I/DEBUG ( 1557): #11 pc 00000000002fc35c /system/lib64/libart.so (art::JavaVMExt::LoadNativeLibrary(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, art::Handle<art::mirror::ClassLoader>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*)+1212)
I/DEBUG ( 1557): #12 pc 00000000003479d6 /system/lib64/libart.so (art::Runtime_nativeLoad(_JNIEnv*, _jclass*, _jstring*, _jobject*, _jstring*)+870)
I/DEBUG ( 1557): #13 pc 00000000000a68f4 /data/dalvik-cache/x86_64/[email protected]@boot.oat
I/DEBUG ( 1557):
I/DEBUG ( 1557): Tombstone written to: /data/tombstones/tombstone_01
I/BootReceiver( 1836): Copying /data/tombstones/tombstone_01 to DropBox (SYSTEM_TOMBSTONE)
W/ActivityManager( 1836): Force finishing activity 1 com.antutu.ABenchMark/.ABenchMarkStart
I/Zygote ( 1563): Process 3649 exited due to signal (4)
I/WindowManager( 1836): Screenshot max retries 4 of Token{9516833 ActivityRecord{1b1793a2 u0 com.antutu.ABenchMark/.ABenchMarkStart t3 f}} appWin=Window{26ff47ee u0 Starting com.antutu.ABenchMark} drawState=4
W/ActivityManager( 1836): Exception thrown during pause
W/ActivityManager( 1836): android.os.DeadObjectException
W/ActivityManager( 1836): at android.os.BinderProxy.transactNative(Native Method)
W/ActivityManager( 1836): at android.os.BinderProxy.transact(Binder.java:496)
W/ActivityManager( 1836): at android.app.ApplicationThreadProxy.schedulePauseActivity(ApplicationThreadNative.java:704)
W/ActivityManager( 1836): at com.android.server.am.ActivityStack.startPausingLocked(ActivityStack.java:884)
W/ActivityManager( 1836): at com.android.server.am.ActivityStack.finishActivityLocked(ActivityStack.java:2874)
W/ActivityManager( 1836): at com.android.server.am.ActivityStack.finishActivityLocked(ActivityStack.java:2815)
W/ActivityManager( 1836): at com.android.server.am.ActivityStack.finishTopRunningActivityLocked(ActivityStack.java:2718)
W/ActivityManager( 1836): at com.android.server.am.ActivityStackSupervisor.finishTopRunningActivityLocked(ActivityStackSupervisor.java:2739)
W/ActivityManager( 1836): at com.android.server.am.ActivityManagerService.handleAppCrashLocked(ActivityManagerService.java:11734)
W/ActivityManager( 1836): at com.android.server.am.ActivityManagerService.makeAppCrashingLocked(ActivityManagerService.java:11631)
W/ActivityManager( 1836): at com.android.server.am.ActivityManagerService.crashApplication(ActivityManagerService.java:12315)
W/ActivityManager( 1836): at com.android.server.am.ActivityManagerService.handleApplicationCrashInner(ActivityManagerService.java:11826)
W/ActivityManager( 1836): at com.android.server.am.NativeCrashListener$NativeCrashReporter.run(NativeCrashListener.java:86)
D/PowerManagerService( 1836): screen wakeup blocked by @jide @powercop
E/lowmemorykiller( 1550): Error opening /proc/3649/oom_score_adj; errno=2
I/ActivityManager( 1836): Process com.antutu.ABenchMark (pid 3649) has died
This problem only appears on my laptop.... On my PC everything is working fine o___o
Laptop :
CPU : AMD E-450
GPU : AMD Radeon HD 6320
RAM : 8GB
Harddisk : 1TB Toshiba Harddisk
(Just office laptop.....)
Disable kernel mode setting
Note: Do not do this if you are using powerXpress technology (or hybrid AMD-Intel graphics) because Intel driver needs it.
Disabling kernel mode setting is important, as the Catalyst driver does not take advantage of KMS. If you do not deactivate KMS, your system might freeze when trying to switch to a TTY or even when shutting down via your DE.
To disable kernel mode setting, add nomodeset to your kernel parameters in the grub.cfg
JNI
Q8-V08 said:
Disable kernel mode setting
Note: Do not do this if you are using powerXpress technology (or hybrid AMD-Intel graphics) because Intel driver needs it.
Disabling kernel mode setting is important, as the Catalyst driver does not take advantage of KMS. If you do not deactivate KMS, your system might freeze when trying to switch to a TTY or even when shutting down via your DE.
To disable kernel mode setting, add nomodeset to your kernel parameters in the grub.cfg
Click to expand...
Click to collapse
hi there, does Remix OS runs APKs that needs JNI support ?
Q8-V08 said:
Disable kernel mode setting
Note: Do not do this if you are using powerXpress technology (or hybrid AMD-Intel graphics) because Intel driver needs it.
Disabling kernel mode setting is important, as the Catalyst driver does not take advantage of KMS. If you do not deactivate KMS, your system might freeze when trying to switch to a TTY or even when shutting down via your DE.
To disable kernel mode setting, add nomodeset to your kernel parameters in the grub.cfg
Click to expand...
Click to collapse
Like this?
Code:
terminal_output gfxterm
set timeout=30
set prefix=/efi/RemixOS
if [ -s $prefix/themes/Aurora-Penguinis/theme.cfg ]; then
source $prefix/themes/Aurora-Penguinis/theme.cfg
elif [ -s /isolinux/remixos.png ]; then
background_image /isolinux/remixos.png
elif [ -s /isolinux/android-x86.png ]; then
background_image /isolinux/android-x86.png
fi
menuentry 'Resident mode - All your data and apps are saved ' --class remixos --class android-x86 --class gnu-linux --class os {
search --file --no-floppy --set=root /kernel
linux /kernel root=/dev/ram0 androidboot.selinux=permissive quiet SERIAL=random logo.showlogo=1 DATA= USB_DATA_PARTITION=1
initrd /initrd.img nomodeset
}
menuentry 'Guest mode - No data will be saved after each session' --class remixos --class android-x86 --class gnu-linux --class os {
search --file --no-floppy --set=root /kernel
linux /kernel root=/dev/ram0 androidboot.selinux=permissive quiet SERIAL=random logo.showlogo=1 REMOUNT_RW=0 DATA= DATA_IN_MEM=1
initrd /initrd.img nomodeset
}
search --no-floppy -f /EFI/RemixOS/theme.cfg --set=efi --hint hd0,msdos1
set prefix=(${efi})/EFI/RemixOS
if [ -e ${prefix}/theme.cfg ]; then
source ${prefix}/theme.cfg
else
set timeout=30
fi
Dunard said:
Like this?
Code:
terminal_output gfxterm
set timeout=30
set prefix=/efi/RemixOS
if [ -s $prefix/themes/Aurora-Penguinis/theme.cfg ]; then
source $prefix/themes/Aurora-Penguinis/theme.cfg
elif [ -s /isolinux/remixos.png ]; then
background_image /isolinux/remixos.png
elif [ -s /isolinux/android-x86.png ]; then
background_image /isolinux/android-x86.png
fi
menuentry 'Resident mode - All your data and apps are saved ' --class remixos --class android-x86 --class gnu-linux --class os {
search --file --no-floppy --set=root /kernel
linux /kernel root=/dev/ram0 androidboot.selinux=permissive quiet SERIAL=random logo.showlogo=1 DATA= USB_DATA_PARTITION=1
initrd /initrd.img nomodeset
}
menuentry 'Guest mode - No data will be saved after each session' --class remixos --class android-x86 --class gnu-linux --class os {
search --file --no-floppy --set=root /kernel
linux /kernel root=/dev/ram0 androidboot.selinux=permissive quiet SERIAL=random logo.showlogo=1 REMOUNT_RW=0 DATA= DATA_IN_MEM=1
initrd /initrd.img nomodeset
}
search --no-floppy -f /EFI/RemixOS/theme.cfg --set=efi --hint hd0,msdos1
set prefix=(${efi})/EFI/RemixOS
if [ -e ${prefix}/theme.cfg ]; then
source ${prefix}/theme.cfg
else
set timeout=30
fi
Click to expand...
Click to collapse
No, you would add it to the linux line. But @Gamephantom I'd try the 32bit version and see if the issue is there also. [Only issue with using the 32bit would be that not all of the RAM will be usable]

Categories

Resources