Lines Matching +full:check +full:- +full:system +full:- +full:debian
3 # Functional tests for the little-endian 64-bit MIPS Malta board
5 # Copyright (c) Philippe Mathieu-Daudé <f4bug@amsat.org>
8 # See the COPYING file in the top-level directory.
10 # SPDX-License-Identifier: GPL-2.0-or-later
36 ('http://snapshot.debian.org/archive/debian/'
37 '20130217T032700Z/pool/main/l/linux-2.6/'
38 'linux-image-2.6.32-5-5kc-malta_2.6.32-48_mipsel.deb'),
44 the Debian package.
46 The kernel can be rebuilt using this Debian kernel source [1] and
49 [1] http://snapshot.debian.org/package/linux-2.6/2.6.32-48/
50 #linux-source-2.6.32_2.6.32-48
51 [2] https://kernel-team.pages.debian.net/kernel-handbook/
52 ch-common-tasks.html#s-common-official
56 '/boot/vmlinux-2.6.32-5-5kc-malta')
61 self.vm.add_args('-kernel', kernel_path,
62 '-append', kernel_command_line)
68 ('https://github.com/philmd/qemu-testing-blob/'
70 'vmlinux-3.19.3.mtoman.20150408'),
74 ('https://github.com/groeck/linux-build-test/'
91 self.vm.add_args('-cpu', '5KEc',
92 '-kernel', kernel_path,
93 '-initrd', initrd_path,
94 '-append', kernel_command_line,
95 '-no-reboot')
101 exec_command_and_wait_for_pattern(self, 'uname -a',
104 'reboot: Restarting system')
116 ('https://github.com/philmd/qemu-testing-blob/raw/a5966ca4b5/'
117 'mips/malta/mips64el/vmlinux-4.7.0-rc1.I6400.gz'),
127 Boot Linux kernel and check Tux logo is displayed on the framebuffer.
141 self.vm.add_args('-kernel', kernel_path,
142 '-cpu', 'I6400',
143 '-smp', '%u' % cpu_cores_count,
144 '-vga', 'std',
145 '-append', kernel_command_line)
149 self.vm.cmd('human-monitor-command', command_line='stop')
150 self.vm.cmd('human-monitor-command',
163 for tuxlogo_count, pt in enumerate(zip(*loc[::-1]), start=1):