hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import infra.basetest
from tests.init.base import InitSystemBase as InitSystemBase
 
 
class InitSystemBusyboxBase(InitSystemBase):
    config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
        """
        # BR2_TARGET_ROOTFS_TAR is not set
        """
 
    def check_init(self):
        super(InitSystemBusyboxBase, self).check_init("/bin/busybox")
 
 
class TestInitSystemBusyboxRo(InitSystemBusyboxBase):
    config = InitSystemBusyboxBase.config + \
        """
        # BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW is not set
        BR2_TARGET_ROOTFS_SQUASHFS=y
        """
 
    def test_run(self):
        self.start_emulator("squashfs")
        self.check_init()
        self.check_network("eth0", 1)
 
 
class TestInitSystemBusyboxRw(InitSystemBusyboxBase):
    config = InitSystemBusyboxBase.config + \
        """
        BR2_TARGET_ROOTFS_EXT2=y
        """
 
    def test_run(self):
        self.start_emulator("ext2")
        self.check_init()
        self.check_network("eth0", 1)
 
 
class TestInitSystemBusyboxRoNet(InitSystemBusyboxBase):
    config = InitSystemBusyboxBase.config + \
        """
        BR2_SYSTEM_DHCP="eth0"
        # BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW is not set
        BR2_TARGET_ROOTFS_SQUASHFS=y
        """
 
    def test_run(self):
        self.start_emulator("squashfs")
        self.check_init()
        self.check_network("eth0")
 
 
class TestInitSystemBusyboxRwNet(InitSystemBusyboxBase):
    config = InitSystemBusyboxBase.config + \
        """
        BR2_SYSTEM_DHCP="eth0"
        BR2_TARGET_ROOTFS_EXT2=y
        """
 
    def test_run(self):
        self.start_emulator("ext2")
        self.check_init()
        self.check_network("eth0")