Remove deprecated kernel builds.

This commit is contained in:
Jeffrey Townsend
2017-02-16 15:17:34 +00:00
parent 7e8e5ea2ef
commit 43c687bed9
20 changed files with 0 additions and 208 deletions

View File

@@ -1 +0,0 @@
include $(ONL)/make/pkg.mk

View File

@@ -1,22 +0,0 @@
common:
arch: amd64
version: 1.0.0
copyright: Copyright 2013, 2014, 2015 Big Switch Networks
maintainer: support@bigswitch.com
support: opennetworklinux@googlegroups.com
packages:
- name: onl-kernel-3.18-x86-64-all
version: 1.0.0
summary: Open Network Linux Kernel 3.18 for X86_64 Platforms.
files:
builds/kernel-3.18-x86_64-all : $$PKG_INSTALL/
builds/linux-3.18.25-mbuild : $$PKG_INSTALL/mbuilds
changelog: Change changes changes.,

View File

@@ -1 +0,0 @@
This package is no longer in use. It will be fully removed.

View File

@@ -1,2 +0,0 @@
linux-3.18*
kernel-3.18-x86_64-all

View File

@@ -1,19 +0,0 @@
# -*- Makefile -*-
############################################################
# <bsn.cl fy=2013 v=none>
#
# Copyright 2013, 2014 BigSwitch Networks, Inc.
#
#
#
# </bsn.cl>
############################################################
THIS_DIR := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
include $(ONL)/make/config.mk
kernel:
$(MAKE) -C $(ONL)/packages/base/any/kernels/3.18.25/configs/x86_64-all K_TARGET_DIR=$(THIS_DIR) $(ONL_MAKE_PARALLEL)
clean:
rm -rf linux-3.18.25 linux-3.18.25-mbuild

View File

@@ -1 +0,0 @@
include $(ONL)/make/pkg.mk

View File

@@ -1,29 +0,0 @@
variables:
basename: onl-kernel-3.2-deb7-x86-64-all
common:
arch: amd64
version: 1.0.0
copyright: Copyright 2013, 2014, 2015 Big Switch Networks
maintainer: support@bigswitch.com
support: opennetworklinux@googlegroups.com
packages:
- name: $basename
version: 1.0.0
summary: Open Network Linux Kernel 3.2-deb7 for X86_64 Platforms.
files:
builds/kernel-3.2-deb7-x86_64-all : $$PKG_INSTALL/
builds/linux-3.2.65-1+deb7u2-mbuild : $$PKG_INSTALL/mbuilds
changelog: Change changes changes.,
- name: $basename-modules
version: 1.0.0
summary: Open Network Linux 3.2 Kernel Modules for X86_64 Platforms
files:
builds/lib: /lib
changelog: Change changes changes.,

View File

@@ -1 +0,0 @@
This package is no longer in use. It will be fully removed.

View File

@@ -1,3 +0,0 @@
linux-3.2.65-1+deb7u2*
kernel-3.2-deb7-x86_64-all
lib

View File

@@ -1,19 +0,0 @@
# -*- Makefile -*-
############################################################
# <bsn.cl fy=2013 v=none>
#
# Copyright 2013, 2014 BigSwitch Networks, Inc.
#
#
#
# </bsn.cl>
############################################################
THIS_DIR := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
include $(ONL)/make/config.mk
kernel:
$(MAKE) -C $(ONL)/packages/base/any/kernels/3.2.65-1+deb7u2/configs/x86_64-all K_TARGET_DIR=$(THIS_DIR) $(ONL_MAKE_PARALLEL)
ARCH=x86_64 $(ONL)/tools/scripts/kmodbuild.sh linux-3.2.65-1+deb7u2-mbuild "$(wildcard $(ONL)/packages/base/any/kernels/modules/*)" onl
clean:
rm -rf linux-3.2.65-1+deb7u2 linux-3.2.65-1+deb7u2-mbuild

View File

@@ -1 +0,0 @@
include $(ONL)/make/pkg.mk

View File

@@ -1,25 +0,0 @@
prerequisites:
submodules:
- { root : $ONL, path : packages/base/any/kernels/legacy/linux-3.9.6 }
common:
arch: amd64
version: 1.0.0
copyright: Copyright 2013, 2014, 2015 Big Switch Networks
maintainer: support@bigswitch.com
support: opennetworklinux@googlegroups.com
packages:
- name: onl-kernel-3.9.6-x86-64-all
version: 1.0.0
summary: Open Network Linux Legacy 3.9.6 Kernel for X86_64 platforms.
files:
builds/kernel-x86_64 : $$PKG_INSTALL/kernel-3.9.6-x86-64-all
builds/linux-x86_64-headers : $$PKG_INSTALL/mbuilds
changelog: Change changes changes.,

View File

@@ -1 +0,0 @@
This package is no longer in use. It will be fully removed.

View File

@@ -1,3 +0,0 @@
kernel-x86_64
linux-x86_64-headers
linux-build-x86_64

View File

@@ -1,35 +0,0 @@
# -*- Makefile -*-
############################################################
# <bsn.cl fy=2013 v=none>
#
# Copyright 2013, 2014 BigSwitch Networks, Inc.
#
#
#
# </bsn.cl>
############################################################
THISDIR := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
include $(ONL)/make/config.amd64.mk
all: kernel-x86_64 linux-x86_64-headers
LINUX := $(ONL)/packages/base/any/kernels/legacy/linux-3.9.6
ARCH := x86_64
kernel-x86_64: $(LINUX)/arch/x86/configs/onl_x86_64_defconfig
mkdir -p $(THISDIR)/linux-build-x86_64
$(MAKE) -C $(LINUX) onl_x86_64_defconfig O=$(THISDIR)/linux-build-x86_64
$(MAKE) -C $(LINUX) bzImage O=$(THISDIR)/linux-build-x86_64
cp $(THISDIR)/linux-build-x86_64/arch/x86/boot/bzImage $(THISDIR)/kernel-x86_64
.PHONY: linux-x86_64-headers deb
linux-x86_64-headers: $(LINUX)/arch/x86/configs/onl_x86_64_defconfig
mkdir -p $(THISDIR)/linux-x86_64-headers
cp -a $(LINUX)/include $(LINUX)/arch/x86/include $(THISDIR)/linux-x86_64-headers
$(MAKE) -C $(LINUX) ARCH=x86 O=$(THISDIR)/linux-x86_64-headers onl_x86_64_defconfig
$(MAKE) -C $(LINUX) ARCH=x86 O=$(THISDIR)/linux-x86_64-headers headers_install modules_prepare
deb:
$(MAKE) -C deb

View File

@@ -1 +0,0 @@
include $(ONL)/make/pkg.mk

View File

@@ -1,22 +0,0 @@
common:
arch: powerpc
version: 1.0.0
copyright: Copyright 2013, 2014, 2015 Big Switch Networks
maintainer: support@bigswitch.com
support: opennetworklinux@googlegroups.com
packages:
- name: onl-kernel-3.2-deb7-powerpc-e500v-all
version: 1.0.0
summary: Open Network Linux Kernel 3.2-deb7 for PowerPC e500v platforms.
files:
builds/kernel-3.2-deb7-powerpc-e500v-all.bin.gz : $$PKG_INSTALL/
builds/linux-3.2.65-1+deb7u2-dtbs : $$PKG_INSTALL/dtbs
builds/linux-3.2.65-1+deb7u2-mbuild : $$PKG_INSTALL/mbuilds
changelog: Change changes changes.,

View File

@@ -1 +0,0 @@
This package is no longer in use. It will be fully removed.

View File

@@ -1,2 +0,0 @@
linux-3.2.65-1+deb7u2*
*.bin.gz

View File

@@ -1,19 +0,0 @@
# -*- Makefile -*-
############################################################
# <bsn.cl fy=2013 v=none>
#
# Copyright 2013, 2014 BigSwitch Networks, Inc.
#
#
#
# </bsn.cl>
############################################################
THIS_DIR := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
include $(ONL)/make/config.mk
kernel:
$(MAKE) -C $(ONL)/packages/base/any/kernels/3.2.65-1+deb7u2/configs/powerpc-e500v-all K_TARGET_DIR=$(THIS_DIR) K_COPY_DST=kernel-3.2-deb7-powerpc-e500v-all.bin.gz $(ONL_MAKE_PARALLEL)
clean:
rm -rf linux-3.2.65-1+deb7u2 linux-3.2.65-1+deb7u2-mbuild linux-3.2.65-1+deb7u2-dtbs