From: "Chang, Rebecca Swee Fun" <[email protected]>
To create baytrail & its associated scc & cfg files under meta branch Signed-off-by: Chang, Rebecca Swee Fun <[email protected]> --- .../bsp/baytrail/baytrail-preempt-rt.scc | 16 +++++ .../bsp/baytrail/baytrail-standard.scc | 16 +++++ meta/cfg/kernel-cache/bsp/baytrail/baytrail.cfg | 71 ++++++++++++++++++++ meta/cfg/kernel-cache/bsp/baytrail/baytrail.scc | 16 +++++ .../bsp/baytrail/baytrail32-preempt-rt.scc | 16 +++++ .../bsp/baytrail/baytrail32-standard.scc | 16 +++++ meta/cfg/kernel-cache/bsp/baytrail/baytrail32.scc | 14 ++++ 7 files changed, 165 insertions(+) create mode 100644 meta/cfg/kernel-cache/bsp/baytrail/baytrail-preempt-rt.scc create mode 100644 meta/cfg/kernel-cache/bsp/baytrail/baytrail-standard.scc create mode 100644 meta/cfg/kernel-cache/bsp/baytrail/baytrail.cfg create mode 100644 meta/cfg/kernel-cache/bsp/baytrail/baytrail.scc create mode 100644 meta/cfg/kernel-cache/bsp/baytrail/baytrail32-preempt-rt.scc create mode 100644 meta/cfg/kernel-cache/bsp/baytrail/baytrail32-standard.scc create mode 100644 meta/cfg/kernel-cache/bsp/baytrail/baytrail32.scc diff --git a/meta/cfg/kernel-cache/bsp/baytrail/baytrail-preempt-rt.scc b/meta/cfg/kernel-cache/bsp/baytrail/baytrail-preempt-rt.scc new file mode 100644 index 0000000..0513dab --- /dev/null +++ b/meta/cfg/kernel-cache/bsp/baytrail/baytrail-preempt-rt.scc @@ -0,0 +1,16 @@ +define KMACHINE baytrail +define KTYPE preempt-rt +define KARCH x86_64 + +# no new branch required, re-use the ktypes/preempt-rt/preempt-rt.scc branch +include ktypes/preempt-rt/preempt-rt.scc + +include baytrail.scc + +include cfg/efi-ext.scc + +# default policy for preempt-rt kernels +include cfg/usb-mass-storage.scc +include cfg/boot-live.scc +include features/latencytop/latencytop.scc +include features/profiling/profiling.scc diff --git a/meta/cfg/kernel-cache/bsp/baytrail/baytrail-standard.scc b/meta/cfg/kernel-cache/bsp/baytrail/baytrail-standard.scc new file mode 100644 index 0000000..609b580 --- /dev/null +++ b/meta/cfg/kernel-cache/bsp/baytrail/baytrail-standard.scc @@ -0,0 +1,16 @@ +define KMACHINE baytrail +define KTYPE standard +define KARCH x86_64 + +include ktypes/standard/standard.scc +branch baytrail + +include baytrail.scc + +include cfg/efi-ext.scc + +# default policy for standard kernels +include cfg/usb-mass-storage.scc +include cfg/boot-live.scc +include features/latencytop/latencytop.scc +include features/profiling/profiling.scc diff --git a/meta/cfg/kernel-cache/bsp/baytrail/baytrail.cfg b/meta/cfg/kernel-cache/bsp/baytrail/baytrail.cfg new file mode 100644 index 0000000..bb6f2b8 --- /dev/null +++ b/meta/cfg/kernel-cache/bsp/baytrail/baytrail.cfg @@ -0,0 +1,71 @@ +CONFIG_MCORE2=y +CONFIG_X86_INTEL_LPSS=y +CONFIG_BYT_LPSS_BRD=y +CONFIG_PRINTK=y +CONFIG_PRINTK_TIME=y + +# Basic hardware support for the box - network, USB, PCI, sound +CONFIG_PM=y +CONFIG_ASPM=y + +CONFIG_PCI=y +CONFIG_PCIEPORTBUS=y + +CONFIG_INPUT=y +CONFIG_INPUT_EVDEV=y + +CONFIG_NET=y +CONFIG_NETDEVICES=y + +CONFIG_ATA=y +CONFIG_ATA_GENERIC=y +CONFIG_ATA_SFF=y +CONFIG_ATA_PIIX=y +CONFIG_CHR_DEV_SG=y +CONFIG_SATA_AHCI=y + +CONFIG_SOUND=y +CONFIG_SND=y +CONFIG_SND_HDA_INTEL=y + +CONFIG_BACKLIGHT_LCD_SUPPORT=y +CONFIG_BACKLIGHT_CLASS_DEVICE=y + +# Make sure these are on, otherwise the bootup won't be fun +CONFIG_UNIX=y +CONFIG_INET=y +CONFIG_MODULES=y +CONFIG_SHMEM=y +CONFIG_TMPFS=y +CONFIG_PACKET=y + +CONFIG_AGP=y +CONFIG_AGP_INTEL=y +CONFIG_DRM=y +CONFIG_DRM_EMGD=y + +CONFIG_DW_DMAC=y +CONFIG_DW_DMAC_PCI=y + +CONFIG_SERIAL_8250_DW=y + +CONFIG_SPI=y +CONFIG_SPI_SPIDEV=y +CONFIG_SPI_PXA2XX_DMA=y +CONFIG_SPI_PXA2XX=y +CONFIG_SPI_PXA2XX_PCI=y + +CONFIG_I2C=y +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_DESIGNWARE_CORE=y +CONFIG_I2C_DESIGNWARE_PLATFORM=y +CONFIG_I2C_DESIGNWARE_PCI=y + +CONFIG_GPIOLIB=y +CONFIG_GPIO_BYT=y +CONFIG_GPIO_BYT_DEVICE=y + +CONFIG_MMC=y +CONFIG_MMC_SDHCI=y +CONFIG_MMC_SDHCI_PCI=y +CONFIG_MMC_SDHCI_ACPI=y diff --git a/meta/cfg/kernel-cache/bsp/baytrail/baytrail.scc b/meta/cfg/kernel-cache/bsp/baytrail/baytrail.scc new file mode 100644 index 0000000..bc2a059 --- /dev/null +++ b/meta/cfg/kernel-cache/bsp/baytrail/baytrail.scc @@ -0,0 +1,16 @@ +kconf hardware baytrail.cfg + +include cfg/x86_64.scc +include cfg/efi.scc +include cfg/dmaengine.scc +include cfg/8250.scc + +include features/power/intel.scc + +include features/i915/i915.scc + +include features/intel-e1xxxx/intel-e100.scc +include features/intel-e1xxxx/intel-e1xxxx.scc + +include features/usb/ehci-hcd.scc +include features/usb/xhci-hcd.scc diff --git a/meta/cfg/kernel-cache/bsp/baytrail/baytrail32-preempt-rt.scc b/meta/cfg/kernel-cache/bsp/baytrail/baytrail32-preempt-rt.scc new file mode 100644 index 0000000..477f6ed --- /dev/null +++ b/meta/cfg/kernel-cache/bsp/baytrail/baytrail32-preempt-rt.scc @@ -0,0 +1,16 @@ +define KMACHINE baytrail32 +define KTYPE preempt-rt +define KARCH i386 + +# no new branch required, re-use the ktypes/preempt-rt/preempt-rt.scc branch +include ktypes/preempt-rt/preempt-rt.scc + +include baytrail32.scc + +include cfg/efi-ext.scc + +# default policy for preempt-rt kernels +include cfg/usb-mass-storage.scc +include cfg/boot-live.scc +include features/latencytop/latencytop.scc +include features/profiling/profiling.scc diff --git a/meta/cfg/kernel-cache/bsp/baytrail/baytrail32-standard.scc b/meta/cfg/kernel-cache/bsp/baytrail/baytrail32-standard.scc new file mode 100644 index 0000000..84b487f --- /dev/null +++ b/meta/cfg/kernel-cache/bsp/baytrail/baytrail32-standard.scc @@ -0,0 +1,16 @@ +define KMACHINE baytrail32 +define KTYPE standard +define KARCH i386 + +include ktypes/standard/standard.scc +branch baytrail + +include baytrail32.scc + +include cfg/efi-ext.scc + +# default policy for standard kernels +include cfg/usb-mass-storage.scc +include cfg/boot-live.scc +include features/latencytop/latencytop.scc +include features/profiling/profiling.scc diff --git a/meta/cfg/kernel-cache/bsp/baytrail/baytrail32.scc b/meta/cfg/kernel-cache/bsp/baytrail/baytrail32.scc new file mode 100644 index 0000000..b52a9e4 --- /dev/null +++ b/meta/cfg/kernel-cache/bsp/baytrail/baytrail32.scc @@ -0,0 +1,14 @@ +kconf hardware baytrail.cfg + +include cfg/x86.scc +include cfg/efi.scc +include cfg/dmaengine.scc +include cfg/8250.scc + +include features/power/intel.scc + +include features/intel-e1xxxx/intel-e100.scc +include features/intel-e1xxxx/intel-e1xxxx.scc + +include features/usb/ehci-hcd.scc +include features/usb/xhci-hcd.scc -- 1.7.10.4 _______________________________________________ linux-yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/linux-yocto
