archlinux-arm

Pulseaudio not detecting bluetooth headset [closed]

喜欢而已 提交于 2019-12-22 08:23:32
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I am trying to connect a bluetooth headset to my RPI. My setup is the following: archlinux-arm, kernel: linux-raspberrypi 3.12.23-1 bluez4 4.101-4 from AUR, built and installed bluez-tools 0.1.38-3 bluez-utils 5.20-1 pulseaudio 5.0-1 pulseaudio-alsa 2-3 I scan for the device, successfully pair it, add as trusted

UART4 with Pandaboard and Arch Linux

孤者浪人 提交于 2019-12-12 03:59:35
问题 I'm trying to use UART4 in my Pandaboard with Arch Linux. I'm using the latest kernel (4.2.0-2-ARCH) so I can't configure MUX in the old way using omap_mux , I have to do it using Device Tree Overlay. This is new to me so it's hard, I've never done this before. I have been reading some post about how to use them in Beaglebone boards in sites like this and this. So I downloaded the OMAP4 Technical Reference Manual (download here). Table 18-504 shows the UART4 control register. Based on that

Pulseaudio not detecting bluetooth headset [closed]

无人久伴 提交于 2019-12-05 15:06:12
I am trying to connect a bluetooth headset to my RPI. My setup is the following: archlinux-arm, kernel: linux-raspberrypi 3.12.23-1 bluez4 4.101-4 from AUR , built and installed bluez-tools 0.1.38-3 bluez-utils 5.20-1 pulseaudio 5.0-1 pulseaudio-alsa 2-3 I scan for the device, successfully pair it, add as trusted and connect it: hcitool scan bluez-simple-agent hci0 <MAC> bt-device --set <MAC> Trusted 1 bt-audio -c <MAC> After this, the device state is as follows ( bt-device -i <MAC> output): [00:23:7F:2A:3B:24] Name: PLT 510 Alias: PLT 510 [rw] Address: 00:23:7F:2A:3B:24 Icon: audio-card Class

How to create a defconfig file from a .config?

非 Y 不嫁゛ 提交于 2019-12-03 04:16:30
问题 I have done make menuconfig for a board defconfig and modified few configurations. When I select save, a new .config was created in the Kernel top directory. I want to create new defconfig for this .config file created. Can I copy the .config as a new defconfig and copy to arch/arm/configs/ ? $ cp .config arch/arm/configs/board_new_defconfig 回答1: I think you have to do just one command and use the created file as you want to. % make savedefconfig % cp defconfig arch/arm/configs/my_cool

How to create a defconfig file from a .config?

余生颓废 提交于 2019-12-02 19:16:42
I have done make menuconfig for a board defconfig and modified few configurations. When I select save, a new .config was created in the Kernel top directory. I want to create new defconfig for this .config file created. Can I copy the .config as a new defconfig and copy to arch/arm/configs/ ? $ cp .config arch/arm/configs/board_new_defconfig 0andriy I think you have to do just one command and use the created file as you want to. % make savedefconfig % cp defconfig arch/arm/configs/my_cool_defconfig To get all possible targets just run % make help As noted by Adam Miller followed by Jeremy ,

Tomcat 8 enable debug logging to list unneeded jars

蹲街弑〆低调 提交于 2019-11-27 05:06:23
When starting Tomcat 8 on Arch Linux ARM I get the following warning: INFO: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.` I already modified ${catalina.home}/logging.properties like described here: How to fix JSP compiler warning: one JAR was scanned for TLDs yet contained no TLDs? I changed some logging levels from INFO to FINE, uncommented "org.apache.jasper.compiler

Tomcat 8 enable debug logging to list unneeded jars

半腔热情 提交于 2019-11-26 11:28:02
问题 When starting Tomcat 8 on Arch Linux ARM I get the following warning: INFO: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.` I already modified ${catalina.home}/logging.properties like described here: How to fix JSP compiler warning: one JAR was scanned for TLDs yet contained no