diff options
-rw-r--r-- | README.adoc | 6 | ||||
-rw-r--r-- | classes/sota_qemux86-64.bbclass | 3 |
2 files changed, 3 insertions, 6 deletions
diff --git a/README.adoc b/README.adoc index c47dd1d..75ee9ae 100644 --- a/README.adoc +++ b/README.adoc | |||
@@ -53,12 +53,6 @@ Although `aglsetup.sh` hooks provide reasonable defaults for SOTA-related variab | |||
53 | 53 | ||
54 | === Build problems | 54 | === Build problems |
55 | 55 | ||
56 | Multilib systems may require adding this line to `local.conf`: | ||
57 | |||
58 | .... | ||
59 | HOSTTOOLS += "x86_64-linux-gnu-gcc" | ||
60 | .... | ||
61 | |||
62 | Ubuntu users that encounter an error due to missing `Python.h` should install `libpython2.7-dev` on their host machine. | 56 | Ubuntu users that encounter an error due to missing `Python.h` should install `libpython2.7-dev` on their host machine. |
63 | 57 | ||
64 | == Supported boards | 58 | == Supported boards |
diff --git a/classes/sota_qemux86-64.bbclass b/classes/sota_qemux86-64.bbclass index 15b2043..82efe52 100644 --- a/classes/sota_qemux86-64.bbclass +++ b/classes/sota_qemux86-64.bbclass | |||
@@ -9,3 +9,6 @@ OSTREE_INITRAMFS_FSTYPES ?= "ext4.gz" | |||
9 | OSTREE_KERNEL_ARGS ?= "ramdisk_size=16384 rw rootfstype=ext4 rootwait rootdelay=2 ostree_root=/dev/hda" | 9 | OSTREE_KERNEL_ARGS ?= "ramdisk_size=16384 rw rootfstype=ext4 rootwait rootdelay=2 ostree_root=/dev/hda" |
10 | 10 | ||
11 | IMAGE_ROOTFS_EXTRA_SPACE = "${@bb.utils.contains('DISTRO_FEATURES', 'sota', '65536', '', d)}" | 11 | IMAGE_ROOTFS_EXTRA_SPACE = "${@bb.utils.contains('DISTRO_FEATURES', 'sota', '65536', '', d)}" |
12 | |||
13 | # fix for u-boot/swig build issue | ||
14 | HOSTTOOLS_NONFATAL += "x86_64-linux-gnu-gcc" | ||