diff options
-rw-r--r-- | classes/image_types_sdcard.bbclass | 5 | ||||
-rw-r--r-- | conf/distro/b2qt.conf | 3 | ||||
-rw-r--r-- | conf/distro/include/image_type.conf | 14 |
3 files changed, 21 insertions, 1 deletions
diff --git a/classes/image_types_sdcard.bbclass b/classes/image_types_sdcard.bbclass new file mode 100644 index 0000000..64b7726 --- /dev/null +++ b/classes/image_types_sdcard.bbclass | |||
@@ -0,0 +1,5 @@ | |||
1 | inherit image_types_fsl | ||
2 | |||
3 | IMAGE_CMD_sdcard_append () { | ||
4 | parted -s ${SDCARD} set 1 boot on | ||
5 | } | ||
diff --git a/conf/distro/b2qt.conf b/conf/distro/b2qt.conf index 0f94be0..1b11877 100644 --- a/conf/distro/b2qt.conf +++ b/conf/distro/b2qt.conf | |||
@@ -12,11 +12,12 @@ SANITY_TESTED_DISTROS += " \ | |||
12 | LinuxMint-14 \n \ | 12 | LinuxMint-14 \n \ |
13 | " | 13 | " |
14 | 14 | ||
15 | IMAGE_FSTYPES = "tar.gz" | 15 | include conf/distro/include/image_type.conf |
16 | 16 | ||
17 | SYSVINIT_ENABLED_GETTYS = "" | 17 | SYSVINIT_ENABLED_GETTYS = "" |
18 | 18 | ||
19 | DISTRO_FEATURES ?= "alsa argp bluetooth ext2 irda largefile pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g nfc ${DISTRO_FEATURES_LIBC}" | 19 | DISTRO_FEATURES ?= "alsa argp bluetooth ext2 irda largefile pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g nfc ${DISTRO_FEATURES_LIBC}" |
20 | DISTRO_FEATURES_BACKFILL_CONSIDERED = "pulseaudio" | ||
20 | 21 | ||
21 | COMMERCIAL_AUDIO_PLUGINS ?= "gst-plugins-ugly-mad gst-plugins-ugly-mpegaudioparse" | 22 | COMMERCIAL_AUDIO_PLUGINS ?= "gst-plugins-ugly-mad gst-plugins-ugly-mpegaudioparse" |
22 | COMMERCIAL_VIDEO_PLUGINS ?= "gst-plugins-ugly-mpeg2dec gst-plugins-ugly-mpegstream gst-plugins-bad-mpegvideoparse" | 23 | COMMERCIAL_VIDEO_PLUGINS ?= "gst-plugins-ugly-mpeg2dec gst-plugins-ugly-mpegstream gst-plugins-bad-mpegvideoparse" |
diff --git a/conf/distro/include/image_type.conf b/conf/distro/include/image_type.conf new file mode 100644 index 0000000..596551b --- /dev/null +++ b/conf/distro/include/image_type.conf | |||
@@ -0,0 +1,14 @@ | |||
1 | IMAGE_FSTYPES = "tar.gz ext3 sdcard" | ||
2 | IMAGE_CLASSES += "image_types_sdcard" | ||
3 | |||
4 | IMAGE_ROOTFS_EXTRA_SPACE = "300000" | ||
5 | SDCARD_ROOTFS = "${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext3" | ||
6 | |||
7 | BOOT_SCRIPTS_mx6 = "6x_bootscript-${MACHINE}:6x_bootscript" | ||
8 | |||
9 | BOOT_SCRIPTS_beagleboard = "\ | ||
10 | u-boot-${MACHINE}.img:u-boot.img \ | ||
11 | MLO-${MACHINE}:MLO \ | ||
12 | " | ||
13 | SDCARD_GENERATION_COMMAND_beagleboard = "generate_imx_sdcard" | ||
14 | UBOOT_SUFFIX_beagleboard = "img" | ||