mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-07-24 13:36:31 +00:00
Merge branch 'master' of https://github.com/home-assistant/hassio-os
This commit is contained in:
commit
c20cdf10c4
@ -3,13 +3,17 @@ CONFIG_PROMPT="hassio-os:"
|
||||
CONFIG_BLOCK=y
|
||||
CONFIG_PARTITION=y
|
||||
CONFIG_PARTITION_DISK=y
|
||||
CONFIG_PARTITION_DISK_EFI=y
|
||||
CONFIG_DEFAULT_COMPRESSION_LZ4=y
|
||||
CONFIG_STATE=y
|
||||
CONFIG_BOOTCHOOSER=y
|
||||
CONFIG_CLOCKSOURCE_EFI=y
|
||||
CONFIG_FS_EXT4=y
|
||||
# CONFIG_FS_RAMFS is not set
|
||||
CONFIG_FS_FAT=y
|
||||
CONFIG_FS_SQUASHFS=y
|
||||
CONFIG_ZLIB=y
|
||||
CONFIG_FS_EFI=y
|
||||
CONFIG_FS_EFIVARFS=y
|
||||
CONFIG_FS_FAT=y
|
||||
CONFIG_FS_FAT_WRITE=y
|
||||
CONFIG_FS_FAT_LFN=y
|
||||
CONFIG_LZ4_DECOMPRESS=y
|
||||
|
54
buildroot-external/board/ova/genimage.config
Normal file
54
buildroot-external/board/ova/genimage.config
Normal file
@ -0,0 +1,54 @@
|
||||
image boot.vfat {
|
||||
vfat {
|
||||
files = {
|
||||
"bzImage"
|
||||
}
|
||||
}
|
||||
size = 64M
|
||||
}
|
||||
|
||||
image overlay.ext4 {
|
||||
ext4 {
|
||||
label = "overlay"
|
||||
}
|
||||
size = 128M
|
||||
}
|
||||
|
||||
image data.ext4 {
|
||||
ext4 {
|
||||
label = "data"
|
||||
}
|
||||
size = 128M
|
||||
}
|
||||
|
||||
image sdcard.img {
|
||||
hdimage {
|
||||
}
|
||||
|
||||
partition boot {
|
||||
partition-type = 0xC
|
||||
bootable = "true"
|
||||
image = "boot.vfat"
|
||||
}
|
||||
|
||||
partition root-a {
|
||||
partition-type = 0x83
|
||||
image = "rootfs.squashfs"
|
||||
size = 256M
|
||||
}
|
||||
|
||||
partition root-b {
|
||||
partition-type = 0x83
|
||||
size = 256M
|
||||
}
|
||||
|
||||
partition overlay {
|
||||
partition-type = 0x83
|
||||
image = "overlay.ext4"
|
||||
}
|
||||
|
||||
partition data {
|
||||
partition-type = 0x83
|
||||
image = "data.ext4"
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user