This one also works fine on my host (Ubuntu 18.04 LTS): Tested-by: Niek Linnenbank On Tue, Dec 17, 2019 at 7:27 PM Philippe Mathieu-Daudé wrote: > This test boots a Linux kernel on a OrangePi PC board and verify > the serial output is working. > > The kernel image and DeviceTree blob are built by the Raspbian > project (based on Debian): > https://www.raspbian.org/RaspbianImages > > The cpio image used comes from the linux-build-test project: > https://github.com/groeck/linux-build-test > > If ARM is a target being built, "make check-acceptance" will > automatically include this test by the use of the "arch:arm" tags. > > Alternatively, this test can be run using: > > $ avocado --show=console run -t machine:orangepi-pc > tests/acceptance/boot_linux_console.py > console: Uncompressing Linux... done, booting the kernel. > console: Booting Linux on physical CPU 0x0 > console: Linux version 4.20.7-sunxi (root@armbian.com) (gcc version > 7.2.1 20171011 (Linaro GCC 7.2-2017.11)) #5.75 SMP Fri Feb 8 09:02:10 CET > 2019 > console: CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=50c5387d > console: CPU: div instructions available: patching division code > console: CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing > instruction cache > console: OF: fdt: Machine model: Xunlong Orange Pi PC > [...] > console: Trying to unpack rootfs image as initramfs... > console: Freeing initrd memory: 3256K > console: Freeing unused kernel memory: 1024K > console: Run /init as init process > console: mount: mounting devtmpfs on /dev failed: Device or resource busy > console: Starting logging: OK > console: Initializing random number generator... random: dd: > uninitialized urandom read (512 bytes read) > console: done. > console: Starting network: OK > console: Found console ttyS0 > console: Linux version 4.20.7-sunxi (root@armbian.com) (gcc version > 7.2.1 20171011 (Linaro GCC 7.2-2017.11)) #5.75 SMP Fri Feb 8 09:02:10 CET > 2019 > console: Boot successful. > console: cat /proc/cpuinfo > console: / # cat /proc/cpuinfo > console: processor : 0 > console: model name : ARMv7 Processor rev 5 (v7l) > console: BogoMIPS : 125.00 > console: Features : half thumb fastmult vfp edsp neon vfpv3 tls > vfpv4 idiva idivt vfpd32 lpae evtstrm > console: CPU implementer : 0x41 > console: CPU architecture: 7 > console: CPU variant : 0x0 > console: CPU part : 0xc07 > console: CPU revision : 5 > [...] > console: processor : 3 > console: model name : ARMv7 Processor rev 5 (v7l) > console: BogoMIPS : 125.00 > console: Features : half thumb fastmult vfp edsp neon vfpv3 tls > vfpv4 idiva idivt vfpd32 lpae evtstrm > console: CPU implementer : 0x41 > console: CPU architecture: 7 > console: CPU variant : 0x0 > console: CPU part : 0xc07 > console: CPU revision : 5 > console: Hardware : Allwinner sun8i Family > console: Revision : 0000 > console: Serial : 0000000000000000 > console: cat /proc/iomem > console: / # cat /proc/iomem > console: 01000000-010fffff : clock@1000000 > console: 01c00000-01c00fff : system-control@1c00000 > console: 01c02000-01c02fff : dma-controller@1c02000 > [...] > console: reboot > console: / # reboot > console: / # Found console ttyS0 > console: Stopping network: OK > console: hrtimer: interrupt took 21852064 ns > console: Saving random seed... random: dd: uninitialized urandom read > (512 bytes read) > console: done. > console: Stopping logging: OK > console: umount: devtmpfs busy - remounted read-only > console: umount: can't unmount /: Invalid argument > console: The system is going down NOW! > console: Sent SIGTERM to all processes > console: Sent SIGKILL to all processes > console: Requesting system reboot > console: reboot: Restarting system > PASS (48.32 s) > JOB TIME : 49.16 s > > Signed-off-by: Philippe Mathieu-Daudé > --- > tests/acceptance/boot_linux_console.py | 41 ++++++++++++++++++++++++++ > 1 file changed, 41 insertions(+) > > diff --git a/tests/acceptance/boot_linux_console.py > b/tests/acceptance/boot_linux_console.py > index 820239e439..daabd47404 100644 > --- a/tests/acceptance/boot_linux_console.py > +++ b/tests/acceptance/boot_linux_console.py > @@ -437,6 +437,47 @@ class BootLinuxConsole(Test): > console_pattern = 'Kernel command line: %s' % kernel_command_line > self.wait_for_console_pattern(console_pattern) > > + def test_arm_orangepi_initrd(self): > + """ > + :avocado: tags=arch:arm > + :avocado: tags=machine:orangepi-pc > + """ > + deb_url = ('https://apt.armbian.com/pool/main/l/' > + > 'linux-4.20.7-sunxi/linux-image-dev-sunxi_5.75_armhf.deb') > + deb_hash = '1334c29c44d984ffa05ed10de8c3361f33d78315' > + deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash) > + kernel_path = self.extract_from_deb(deb_path, > + '/boot/vmlinuz-4.20.7-sunxi') > + dtb_path = > '/usr/lib/linux-image-dev-sunxi/sun8i-h3-orangepi-pc.dtb' > + dtb_path = self.extract_from_deb(deb_path, dtb_path) > + initrd_url = ('https://github.com/groeck/linux-build-test/raw/' > + '2eb0a73b5d5a28df3170c546ddaaa9757e1e0848/rootfs/' > + 'arm/rootfs-armv7a.cpio.gz') > + initrd_hash = '604b2e45cdf35045846b8bbfbf2129b1891bdc9c' > + initrd_path_gz = self.fetch_asset(initrd_url, > asset_hash=initrd_hash) > + initrd_path = os.path.join(self.workdir, 'rootfs.cpio') > + archive.gzip_uncompress(initrd_path_gz, initrd_path) > + > + self.vm.set_machine('orangepi-pc') > + self.vm.set_console() > + kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE + > + 'console=ttyS0,115200 ' > + 'panic=-1 noreboot') > + self.vm.add_args('-kernel', kernel_path, > + '-dtb', dtb_path, > + '-initrd', initrd_path, > + '-append', kernel_command_line, > + '-no-reboot') > + self.vm.launch() > + self.wait_for_console_pattern('Boot successful.') > + > + exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo', > + 'Allwinner sun8i Family') > + exec_command_and_wait_for_pattern(self, 'cat /proc/iomem', > + 'system-control@1c00000') > + exec_command_and_wait_for_pattern(self, 'reboot', > + 'reboot: Restarting > system') > + > def test_s390x_s390_ccw_virtio(self): > """ > :avocado: tags=arch:s390x > -- > 2.21.0 > > -- Niek Linnenbank