Skip to content

Commit e7b1988

Browse files
authored
[submodule] update sonic-linux-kernel (#2985)
* [submodule] update sonic-linux-kernel * update linux kernel version * Fix many version strings * update mellanox components (built with new kernel) * [mlnx] add make files for SDK WJH libs * Update arista driver submodule (#8) Make the debian packaging point to a newer kernel version.
1 parent d67c6d4 commit e7b1988

File tree

35 files changed

+102
-67
lines changed

35 files changed

+102
-67
lines changed

build_debian.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ set -x -e
3030

3131
## docker engine version (with platform)
3232
DOCKER_VERSION=5:18.09.2~3-0~debian-stretch
33-
LINUX_KERNEL_VERSION=4.9.0-8-2
33+
LINUX_KERNEL_VERSION=4.9.0-9-2
3434

3535
## Working directory to prepare the file system
3636
FILESYSTEM_ROOT=./fsroot
@@ -121,7 +121,7 @@ sudo dpkg --root=$FILESYSTEM_ROOT -i $debs_path/initramfs-tools_*.deb || \
121121
sudo dpkg --root=$FILESYSTEM_ROOT -i $debs_path/linux-image-${LINUX_KERNEL_VERSION}-amd64_*.deb || \
122122
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y install -f
123123
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y install acl
124-
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y install dmidecode
124+
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y install dmidecode
125125

126126
## Update initramfs for booting with squashfs+overlay
127127
cat files/initramfs-tools/modules | sudo tee -a $FILESYSTEM_ROOT/etc/initramfs-tools/modules > /dev/null
@@ -409,7 +409,7 @@ fi
409409
## Organization specific extensions such as Configuration & Scripts for features like AAA, ZTP...
410410
if [ "${enable_organization_extensions}" = "y" ]; then
411411
if [ -f files/build_templates/organization_extensions.sh ]; then
412-
sudo chmod 755 files/build_templates/organization_extensions.sh
412+
sudo chmod 755 files/build_templates/organization_extensions.sh
413413
./files/build_templates/organization_extensions.sh -f $FILESYSTEM_ROOT -h $HOSTNAME
414414
fi
415415
fi

files/build_templates/swss.service.j2

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Requires=database.service updategraph.service
44
{% if sonic_asic_platform == 'broadcom' %}
55
Requires=opennsl-modules.service
66
{% elif sonic_asic_platform == 'nephos' %}
7-
Requires=nps-modules-4.9.0-8-2-amd64.service
7+
Requires=nps-modules-4.9.0-9-2-amd64.service
88
{% endif %}
99
After=database.service updategraph.service
1010
After=interfaces-config.service

files/build_templates/syncd.service.j2

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ Requires=database.service updategraph.service
44
{% if sonic_asic_platform == 'broadcom' %}
55
Requires=opennsl-modules.service
66
{% elif sonic_asic_platform == 'nephos' %}
7-
Requires=nps-modules-4.9.0-8-2-amd64.service
7+
Requires=nps-modules-4.9.0-9-2-amd64.service
88
{% endif %}
99
After=database.service updategraph.service
1010
After=interfaces-config.service
1111
{% if sonic_asic_platform == 'broadcom' %}
1212
After=opennsl-modules.service
1313
{% elif sonic_asic_platform == 'nephos' %}
14-
After=nps-modules-4.9.0-8-2-amd64.service
14+
After=nps-modules-4.9.0-9-2-amd64.service
1515
{% endif %}
1616
After=swss.service
1717
Before=ntp-config.service

installer/x86_64/install.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ if [ "$install_env" = "onie" ]; then
162162
fi
163163

164164
# Creates a new partition for the DEMO OS.
165-
#
165+
#
166166
# arg $1 -- base block device
167167
#
168168
# Returns the created partition number in $demo_part
@@ -177,7 +177,7 @@ create_demo_gpt_partition()
177177
tmpfifo=$(mktemp -u)
178178
trap_push "rm $tmpfifo || true"
179179
mkfifo -m 600 "$tmpfifo"
180-
180+
181181
# See if demo partition already exists
182182
demo_part=$(sgdisk -p $blk_dev | grep -e "$demo_volume_label" -e "$legacy_volume_label" | awk '{print $1}')
183183
if [ -n "$demo_part" ] ; then
@@ -438,7 +438,7 @@ if [ "$install_env" = "onie" ]; then
438438
echo "Error: Unable to mount $demo_dev on $demo_mnt"
439439
exit 1
440440
}
441-
441+
442442
elif [ "$install_env" = "sonic" ]; then
443443
demo_mnt="/host"
444444
eval running_sonic_revision=$(cat /etc/sonic/sonic_version.yml | grep build_version | cut -f2 -d" ")
@@ -595,12 +595,12 @@ menuentry '$demo_grub_entry' {
595595
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
596596
insmod part_msdos
597597
insmod ext2
598-
linux /$image_dir/boot/vmlinuz-4.9.0-8-2-amd64 root=$grub_cfg_root rw $GRUB_CMDLINE_LINUX \
598+
linux /$image_dir/boot/vmlinuz-4.9.0-9-2-amd64 root=$grub_cfg_root rw $GRUB_CMDLINE_LINUX \
599599
net.ifnames=0 biosdevname=0 \
600600
loop=$image_dir/$FILESYSTEM_SQUASHFS loopfstype=squashfs \
601601
apparmor=1 security=apparmor varlog_size=$VAR_LOG_SIZE usbcore.autosuspend=-1 $ONIE_PLATFORM_EXTRA_CMDLINE_LINUX
602602
echo 'Loading $demo_volume_label $demo_type initial ramdisk ...'
603-
initrd /$image_dir/boot/initrd.img-4.9.0-8-2-amd64
603+
initrd /$image_dir/boot/initrd.img-4.9.0-9-2-amd64
604604
}
605605
EOF
606606

platform/barefoot/bfn-modules/debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ Standards-Version: 3.9.3
77

88
Package: bfn-modules
99
Architecture: amd64
10-
Depends: linux-image-4.9.0-8-2-amd64
10+
Depends: linux-image-4.9.0-9-2-amd64
1111
Description: kernel modules for bfn asic for mmap
1212

platform/barefoot/sonic-platform-modules-bfn-montara/debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ Standards-Version: 3.9.3
77

88
Package: sonic-platform-modules-bfn-montara
99
Architecture: amd64
10-
Depends: linux-image-4.9.0-8-2-amd64
10+
Depends: linux-image-4.9.0-9-2-amd64
1111
Description: kernel modules for platform devices such as fan, led, sfp
1212

platform/barefoot/sonic-platform-modules-bfn/debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ Standards-Version: 3.9.3
77

88
Package: sonic-platform-modules-bfn
99
Architecture: amd64
10-
Depends: linux-image-4.9.0-8-2-amd64
10+
Depends: linux-image-4.9.0-9-2-amd64
1111
Description: kernel modules for platform devices such as fan, led, sfp
1212

platform/broadcom/sai-modules.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Broadcom SAI modules
22

3-
KVERSION = 4.9.0-8-2-amd64
3+
KVERSION = 4.9.0-9-2-amd64
44
BRCM_OPENNSL_KERNEL_VERSION = 3.4.1.11-1
55

66
BRCM_OPENNSL_KERNEL = opennsl-modules_$(BRCM_OPENNSL_KERNEL_VERSION)_amd64.deb

platform/broadcom/saibcm-modules/debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ Standards-Version: 3.9.3
1010
Package: opennsl-modules
1111
Architecture: amd64
1212
Section: main
13-
Depends: linux-image-4.9.0-8-2-amd64
13+
Depends: linux-image-4.9.0-9-2-amd64
1414
Description: kernel modules for broadcom SAI
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lib/modules/4.9.0-8-2-amd64/extra
1+
lib/modules/4.9.0-9-2-amd64/extra
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
systems/linux/user/x86-smp_generic_64-2_6/linux-bcm-knet.ko lib/modules/4.9.0-8-2-amd64/extra
2-
systems/linux/user/x86-smp_generic_64-2_6/linux-kernel-bde.ko lib/modules/4.9.0-8-2-amd64/extra
3-
systems/linux/user/x86-smp_generic_64-2_6/linux-user-bde.ko lib/modules/4.9.0-8-2-amd64/extra
4-
systems/linux/user/x86-smp_generic_64-2_6/linux-knet-cb.ko lib/modules/4.9.0-8-2-amd64/extra
1+
systems/linux/user/x86-smp_generic_64-2_6/linux-bcm-knet.ko lib/modules/4.9.0-9-2-amd64/extra
2+
systems/linux/user/x86-smp_generic_64-2_6/linux-kernel-bde.ko lib/modules/4.9.0-9-2-amd64/extra
3+
systems/linux/user/x86-smp_generic_64-2_6/linux-user-bde.ko lib/modules/4.9.0-9-2-amd64/extra
4+
systems/linux/user/x86-smp_generic_64-2_6/linux-knet-cb.ko lib/modules/4.9.0-9-2-amd64/extra
55
systemd/opennsl-modules.service lib/systemd/system

platform/broadcom/saibcm-modules/debian/rules

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ kdist_config: prep-deb-files
6060
kdist_clean: clean
6161
dh_testdir
6262
dh_clean
63-
SDK=$(realpath .) LINUX_UAPI_SPLIT=1 DEBIAN_LINUX_HEADER=1 BUILD_KNET_CB=1 KERNDIR=/usr/src/linux-headers-4.9.0-8-2-amd64 KERNEL_SRC=/usr/src/linux-headers-4.9.0-8-2-amd64 $(MAKE) -C systems/linux/user/x86-smp_generic_64-2_6 clean
63+
SDK=$(realpath .) LINUX_UAPI_SPLIT=1 DEBIAN_LINUX_HEADER=1 BUILD_KNET_CB=1 KERNDIR=/usr/src/linux-headers-4.9.0-9-2-amd64 KERNEL_SRC=/usr/src/linux-headers-4.9.0-9-2-amd64 $(MAKE) -C systems/linux/user/x86-smp_generic_64-2_6 clean
6464
# rm -f driver/*.o driver/*.ko
6565
#
6666
### end KERNEL SETUP
@@ -78,7 +78,7 @@ build-arch-stamp:
7878
dh_testdir
7979

8080
# Add here command to compile/build the package.
81-
SDK=$(realpath .) LINUX_UAPI_SPLIT=1 DEBIAN_LINUX_HEADER=1 BUILD_KNET_CB=1 KERNDIR=/usr/src/linux-headers-4.9.0-8-2-amd64 KERNEL_SRC=/usr/src/linux-headers-4.9.0-8-2-amd64 $(MAKE) -C systems/linux/user/x86-smp_generic_64-2_6
81+
SDK=$(realpath .) LINUX_UAPI_SPLIT=1 DEBIAN_LINUX_HEADER=1 BUILD_KNET_CB=1 KERNDIR=/usr/src/linux-headers-4.9.0-9-2-amd64 KERNEL_SRC=/usr/src/linux-headers-4.9.0-9-2-amd64 $(MAKE) -C systems/linux/user/x86-smp_generic_64-2_6
8282

8383
touch $@
8484

@@ -103,7 +103,7 @@ clean:
103103
rm -f build-arch-stamp build-indep-stamp configure-stamp
104104

105105
# Add here commands to clean up after the build process.
106-
SDK=$(realpath .) LINUX_UAPI_SPLIT=1 DEBIAN_LINUX_HEADER=1 BUILD_KNET_CB=1 KERNDIR=/usr/src/linux-headers-4.9.0-8-2-amd64 KERNEL_SRC=/usr/src/linux-headers-4.9.0-8-2-amd64 $(MAKE) -C systems/linux/user/x86-smp_generic_64-2_6 clean
106+
SDK=$(realpath .) LINUX_UAPI_SPLIT=1 DEBIAN_LINUX_HEADER=1 BUILD_KNET_CB=1 KERNDIR=/usr/src/linux-headers-4.9.0-9-2-amd64 KERNEL_SRC=/usr/src/linux-headers-4.9.0-9-2-amd64 $(MAKE) -C systems/linux/user/x86-smp_generic_64-2_6 clean
107107

108108
dh_clean
109109

platform/broadcom/sonic-platform-modules-alphanetworks/debian/control

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Standards-Version: 3.9.3
77

88
Package: sonic-platform-alphanetworks-snh60a0-320fv2
99
Architecture: amd64
10-
Depends: linux-image-4.9.0-8-2-amd64
10+
Depends: linux-image-4.9.0-9-2-amd64
1111
Description: kernel modules for platform devices such as fan, led, sfp
1212

1313
Package: sonic-platform-alphanetworks-snh60b0-640f
1414
Architecture: amd64
15-
Depends: linux-image-4.9.0-8-2-amd64
15+
Depends: linux-image-4.9.0-9-2-amd64
1616
Description: kernel modules for platform devices such as fan, led, sfp
1717

platform/broadcom/sonic-platform-modules-cel/debian/control

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Standards-Version: 3.9.3
77

88
Package: platform-modules-dx010
99
Architecture: amd64
10-
Depends: linux-image-4.9.0-8-2-amd64
10+
Depends: linux-image-4.9.0-9-2-amd64
1111
Description: kernel modules for platform devices such as fan, led, sfp
1212

1313

1414
Package: platform-modules-haliburton
1515
Architecture: amd64
16-
Depends: linux-image-4.9.0-8-2-amd64
16+
Depends: linux-image-4.9.0-9-2-amd64
1717
Description: kernel modules for platform devices such as fan, led, sfp

platform/broadcom/sonic-platform-modules-dell/debian/control

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ Standards-Version: 3.9.3
77

88
Package: platform-modules-z9264f
99
Architecture: amd64
10-
Depends: linux-image-4.9.0-8-2-amd64
10+
Depends: linux-image-4.9.0-9-2-amd64
1111
Description: kernel modules for platform devices such as fan, led, sfp
1212

1313
Package: platform-modules-z9100
1414
Architecture: amd64
15-
Depends: linux-image-4.9.0-8-2-amd64
15+
Depends: linux-image-4.9.0-9-2-amd64
1616
Description: kernel modules for platform devices such as fan, led, sfp
1717

1818
Package: platform-modules-s6100
1919
Architecture: amd64
20-
Depends: linux-image-4.9.0-8-2-amd64
20+
Depends: linux-image-4.9.0-9-2-amd64
2121
Description: kernel modules for platform devices such as fan, led, sfp
2222

platform/broadcom/sonic-platform-modules-delta/debian/control

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ Standards-Version: 3.9.3
77

88
Package: platform-modules-ag9032v1
99
Architecture: amd64
10-
Depends: linux-image-4.9.0-8-2-amd64
10+
Depends: linux-image-4.9.0-9-2-amd64
1111
Description: kernel modules for platform devices such as fan, led, sfp
1212

1313
Package: platform-modules-ag9064
1414
Architecture: amd64
15-
Depends: linux-image-4.9.0-8-2-amd64
15+
Depends: linux-image-4.9.0-9-2-amd64
1616
Description: kernel modules for platform devices such as fan, led, sfp
1717

1818
Package: platform-modules-ag5648
1919
Architecture: amd64
20-
Depends: linux-image-4.9.0-8-2-amd64
20+
Depends: linux-image-4.9.0-9-2-amd64
2121
Description: kernel modules for platform devices such as fan, led, sfp
2222

2323
Package: platform-modules-et-6248brb
2424
Architecture: amd64
25-
Depends: linux-image-4.9.0-8-2-amd64
25+
Depends: linux-image-4.9.0-9-2-amd64
2626
Description: kernel modules for platform devices such as fan, led, sfp
2727

platform/broadcom/sonic-platform-modules-delta/debian/platform-modules-et-6248brb.init

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ start)
2525
modprobe dni_gpio
2626
modprobe delta_et-6248brb_platform
2727

28-
if [ `uname -a | awk '{print $3}'` = "4.9.0-8-2-amd64" ]; then
28+
if [ `uname -a | awk '{print $3}'` = "4.9.0-9-2-amd64" ]; then
2929
echo "453" > "/sys/class/gpio/export"
3030
echo "454" > "/sys/class/gpio/export"
3131
echo "455" > "/sys/class/gpio/export"

platform/broadcom/sonic-platform-modules-delta/et-6248brb/scripts/led_status.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FAN2_RPM="/sys/bus/i2c/devices/0-002e/fan2_input"
77
FAN_TRAY1_LED="/sys/devices/platform/delta-et6248brb-gpio.0/FAN/fan1_led_ag"
88
FAN_TRAY2_LED="/sys/devices/platform/delta-et6248brb-gpio.0/FAN/fan2_led_ag"
99

10-
if [ `uname -a | awk '{print $3}'` = "4.9.0-8-2-amd64" ]; then
10+
if [ `uname -a | awk '{print $3}'` = "4.9.0-9-2-amd64" ]; then
1111
SYS_LED_G="/sys/class/gpio/gpio453/value"
1212
SYS_LED_R="/sys/class/gpio/gpio454/value"
1313
PWR_LED_G="/sys/class/gpio/gpio455/value"

platform/broadcom/sonic-platform-modules-inventec/debian/control

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,25 @@ Standards-Version: 3.9.3
77

88
Package: platform-modules-d7032q28b
99
Architecture: amd64
10-
Depends: linux-image-4.9.0-8-2-amd64
10+
Depends: linux-image-4.9.0-9-2-amd64
1111
Description: kernel modules for platform devices such as fan, led
1212

1313
Package: platform-modules-d7054q28b
1414
Architecture: amd64
15-
Depends: linux-image-4.9.0-8-2-amd64
15+
Depends: linux-image-4.9.0-9-2-amd64
1616
Description: kernel modules for platform devices such as fan, led
1717

1818
Package: platform-modules-d6254qs
1919
Architecture: amd64
20-
Depends: linux-image-4.9.0-8-2-amd64
20+
Depends: linux-image-4.9.0-9-2-amd64
2121
Description: kernel modules for platform devices such as fan, led
2222

2323
Package: platform-modules-d6556
2424
Architecture: amd64
25-
Depends: linux-image-4.9.0-8-2-amd64
25+
Depends: linux-image-4.9.0-9-2-amd64
2626
Description: kernel modules for platform devices such as fan, led
2727

2828
Package: platform-modules-d7264q28b
2929
Architecture: amd64
30-
Depends: linux-image-4.9.0-8-2-amd64
30+
Depends: linux-image-4.9.0-9-2-amd64
3131
Description: kernel modules for platform devices such as fan, led

platform/broadcom/sonic-platform-modules-s6000/debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ Standards-Version: 3.9.3
77

88
Package: platform-modules-s6000
99
Architecture: amd64
10-
Depends: linux-image-4.9.0-8-2-amd64
10+
Depends: linux-image-4.9.0-9-2-amd64
1111
Description: kernel modules for platform devices such as fan, led, sfp
1212

platform/centec/sonic-platform-modules-e582/debian/control

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Standards-Version: 3.9.3
77

88
Package: platform-modules-e582-48x2q4z
99
Architecture: amd64
10-
Depends: linux-image-4.9.0-8-2-amd64
10+
Depends: linux-image-4.9.0-9-2-amd64
1111
Description: kernel modules for platform devices such as fan, led, sfp
1212

1313
Package: platform-modules-e582-48x6q
1414
Architecture: amd64
15-
Depends: linux-image-4.9.0-8-2-amd64
15+
Depends: linux-image-4.9.0-9-2-amd64
1616
Description: kernel modules for platform devices such as fan, led, sfp
1717

platform/mellanox/fw.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
MLNX_FW_BASE_URL = $(MLNX_SDK_BASE_URL)
44

5-
MLNX_SPC_FW_VERSION = 13.2000.1140
5+
MLNX_SPC_FW_VERSION = 13.2000.1420
66
MLNX_SPC_FW_FILE = fw-SPC-rel-$(subst .,_,$(MLNX_SPC_FW_VERSION))-EVB.mfa
77
$(MLNX_SPC_FW_FILE)_URL = $(MLNX_FW_BASE_URL)/$(MLNX_SPC_FW_FILE)
88
SONIC_ONLINE_FILES += $(MLNX_SPC_FW_FILE)
99

10-
MLNX_SPC2_FW_VERSION = 29.2000.1140
10+
MLNX_SPC2_FW_VERSION = 29.2000.1420
1111
MLNX_SPC2_FW_FILE = fw-SPC2-rel-$(subst .,_,$(MLNX_SPC2_FW_VERSION))-EVB.mfa
1212
$(MLNX_SPC2_FW_FILE)_URL = $(MLNX_FW_BASE_URL)/$(MLNX_SPC2_FW_FILE)
1313
SONIC_ONLINE_FILES += $(MLNX_SPC2_FW_FILE)

platform/mellanox/mlnx-sai.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Mellanox SAI
22

3-
MLNX_SAI_VERSION = SAIRel1.14.0-master
3+
MLNX_SAI_VERSION = SAIRel1.14.1-master
44

55
export MLNX_SAI_VERSION
66

Submodule SAI-Implementation updated 58 files
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
.ONESHELL:
2+
SHELL = /bin/bash
3+
4+
MAIN_TARGET = wjh-libs_1.mlnx.$(MLNX_SDK_DEB_VERSION)_amd64.deb
5+
DERIVED_TARGETS = wjh-libs-dev_1.mlnx.$(MLNX_SDK_DEB_VERSION)_amd64.deb \
6+
wjh-libs-dev-static_1.mlnx.$(MLNX_SDK_DEB_VERSION)_amd64.deb
7+
PACKAGE_NAME = wjh_libs
8+
9+
$(addprefix $(DEST)/, $(MAIN_TARGET)): $(DEST)/% :
10+
# get sources
11+
rm -rf $(PACKAGE_NAME)-$(MLNX_SDK_VERSION)-$(MLNX_SDK_ISSU_VERSION)
12+
13+
wget -c $(MLNX_SDK_SOURCE_BASE_URL)/$(PACKAGE_NAME)-$(MLNX_SDK_VERSION)-$(MLNX_SDK_ISSU_VERSION).tar.gz -O - | tar -xz
14+
15+
# build
16+
pushd $(PACKAGE_NAME)-$(MLNX_SDK_VERSION)-$(MLNX_SDK_ISSU_VERSION)
17+
18+
if [ -f autogen.sh ]; then
19+
./autogen.sh
20+
fi
21+
22+
debuild -b -us -uc -j$(SONIC_CONFIG_MAKE_JOBS)
23+
24+
popd
25+
26+
mv $(DERIVED_TARGETS) $* $(DEST)/
27+
28+
$(addprefix $(DEST)/, $(DERIVED_TARGETS)): $(DEST)/% : $(DEST)/$(MAIN_TARGET)

0 commit comments

Comments
 (0)