summaryrefslogtreecommitdiff
path: root/elements/ivi/bsp-x86_64-ivi/linux-x86-64-ivi.bst
diff options
context:
space:
mode:
Diffstat (limited to 'elements/ivi/bsp-x86_64-ivi/linux-x86-64-ivi.bst')
-rw-r--r--elements/ivi/bsp-x86_64-ivi/linux-x86-64-ivi.bst78
1 files changed, 78 insertions, 0 deletions
diff --git a/elements/ivi/bsp-x86_64-ivi/linux-x86-64-ivi.bst b/elements/ivi/bsp-x86_64-ivi/linux-x86-64-ivi.bst
new file mode 100644
index 00000000..3b7ba268
--- /dev/null
+++ b/elements/ivi/bsp-x86_64-ivi/linux-x86-64-ivi.bst
@@ -0,0 +1,78 @@
+kind: manual
+depends:
+- bsp-x86_both-tools.bst
+sources:
+- kind: git
+ url: upstream:linux
+ track: v4.12
+ ref: 6f7da290413ba713f0cdd9ff1a2a9bb129ef4f6c
+config:
+ configure-commands:
+ - make defconfig
+ - scripts/config -e ATA
+ - scripts/config -e ATA_PIIX
+ - scripts/config -e AUTOFS4_FS
+ - scripts/config -e BLK_DEV_BSG
+ - scripts/config -e BLK_DEV_SD
+ - scripts/config -e BTRFS_FS
+ - scripts/config -e BTRFS_FS_POSIX_ACL
+ - scripts/config -e CFS_BANDWIDTH
+ - scripts/config -e CGROUPS
+ - scripts/config -e CGROUP_SCHED
+ - scripts/config -e CHECKPOINT_RESTORE
+ - scripts/config -e DEVPTS_MULTIPLE_INSTANCES
+ - scripts/config -e DEVTMPFS
+ - scripts/config -e DMIID
+ - scripts/config -e EFIVAR_FS
+ - scripts/config -e EFI_PARTITION
+ - scripts/config -e EPOLL
+ - scripts/config -e FAIR_GROUP_SCHED
+ - scripts/config -e FHANDLE
+ - scripts/config -d FW_LOADER_USER_HELPER
+ - scripts/config -e INOTIFY_USER
+ - scripts/config -e IPV6
+ - scripts/config -e NET
+ - scripts/config -e NET_NS
+ - scripts/config -e PROC_FS
+ - scripts/config -e SATA_AHCI
+ - scripts/config -e SCSI
+ - scripts/config -e SCSI_MOD
+ - scripts/config -e SECCOMP
+ - scripts/config -e SIGNALFD
+ - scripts/config -e SYSFS
+ - scripts/config -d SYSFS_DEPRECATED
+ - scripts/config -e TIMERFD
+ - scripts/config -e TMPFS_POSIX_ACL
+ - scripts/config -e TMPFS_XATTR
+ - scripts/config -e UEVENT_HELPER_PATH=""
+ - scripts/config -m CONFIG_DRM_CIRRUS_QEMU
+ - scripts/config -m CONFIG_DRM_BOCHS
+ - scripts/config -m CONFIG_DRM_VIRTIO_GPU
+ - scripts/config -m CONFIG_BT_INTEL
+ - scripts/config -m CONFIG_MOSTCORE
+ - yes '' | make oldconfig
+ build-commands:
+ - make $MAKEFLAGS
+ install-commands:
+ - mkdir -p "%{install-root}"/boot
+ - make INSTALL_PATH="%{install-root}"/boot install
+ - make INSTALL_MOD_PATH="%{install-root}" modules_install
+ - install -d "%{install-root}%{prefix}/src/linux"
+ - |
+ (
+ printf 'Makefile\0'
+ printf 'Module.symvers\0'
+ find arch/x86 -maxdepth 1 -name 'Makefile*' -print0
+ find arch/x86 \( -name 'module.lds' -o -name 'Kbuild.platforms' -o -name 'Platform' \) -print0
+ find arch/x86 \( -type d -a \( -name include -o -name scripts \) \) -o \
+ \! -type d -a \( -path '*include/*' -o -path '*scripts/*' \) -print0
+ find include -name 'asm*' -prune -o -print0
+ find include/asm-generic -print0
+ find include/uapi -print0
+ find scripts -print0
+ ) | cpio -0pumd "%{install-root}%{prefix}/src/linux"
+public:
+ bst:
+ integration-commands:
+ - if which depmod; then (cd /usr/lib/modules && for version in *; do depmod -a
+ "$version"; done) fi