summaryrefslogtreecommitdiffstats
path: root/boards.yaml.example
blob: ee4469fa08b59df1510a6f2dfdf81dfb834027e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
masters:
  - name: master1
    host: local
    users:
    - name: admin
      token: longrandomtokenadmin
      password: admin
      superuser: yes
      staff: yes
slaves:
  - name: lab-slave-0
    host: local
    remote_master: master1
    remote_user: admin
    dispatcher_ip: 192.168.66.1

boards:
  - name: qemu-02
    type: qemu
    slave: lab-slave-0
    kvm: True
  - name: meson-gxl-s905x-libretech-cc-01
    type: meson-gxl-s905x-libretech-cc
    slave: lab-slave-0
    pdu_generic:
      hard_reset_command: /usr/local/bin/acme-cli -s 192.168.66.2 reset 2
      power_off_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_off 2
      power_on_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_on 2
    uart:
      idvendor: 0x0403
      idproduct: 0x6001
      serial: FT9QR2TZ
  - name: meson-gxbb-nanopi-k2-01
    type: meson-gxbb-nanopi-k2
    slave: lab-slave-0
    custom_option:
    - 'set bootloader_prompt = "nanopi-k2#"'
    - "set interrupt_prompt = 'nanopi'"
    uboot_ipaddr: 192.168.66.201
    pdu_generic:
      hard_reset_command: /usr/local/bin/acme-cli -s 192.168.66.2 reset 3
      power_off_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_off 3
      power_on_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_on 3
    uart:
      idvendor: 0x0403
      idproduct: 0x6001
      serial: FT9ZOR0I
c87d Mon Sep 17 00:00:00 2001 From: Prabhu Sundararaj <prabhu.sundararaj@nxp.com> Date: Tue, 19 Jul 2016 12:14:26 -0500 Subject: [PATCH] Avoid attaching NULL buffer while hiding EGL windows Incremental fix for QTBUG-46921. Destroying the callback for NULL surface is not working all the time. If the window is hidden by destroying the EGL surface and hence setting the NULL buffer is no longer required. Task-number:QTBUG-47902 Signed-off-by: Prabhu Sundararaj <prabhu.sundararaj@nxp.com> --- src/client/qwaylandwindow.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/client/qwaylandwindow.cpp b/src/client/qwaylandwindow.cpp index 2dd58e8..24b5653 100644 --- a/src/client/qwaylandwindow.cpp +++ b/src/client/qwaylandwindow.cpp @@ -312,8 +312,6 @@ void QWaylandWindow::setVisible(bool visible) QPointer<QWaylandWindow> deleteGuard(this); QWindowSystemInterface::flushWindowSystemEvents(); if (!deleteGuard.isNull()) { - attach(static_cast<QWaylandBuffer *>(0), 0, 0); - commit(); if (mBackingStore) { mBackingStore->hidden(); } -- 2.7.4