Skip to content

Commit

Permalink
Drop KERNEL_UBOOT_EXTRA_TARGET, it's never used
Browse files Browse the repository at this point in the history
  • Loading branch information
jernejsk committed May 15, 2019
1 parent e2e3c37 commit 4d1699c
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 19 deletions.
8 changes: 1 addition & 7 deletions packages/linux/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ PKG_DEPENDS_INIT="toolchain"
PKG_NEED_UNPACK="$LINUX_DEPENDS"
PKG_LONGDESC="This package contains a precompiled kernel image and the modules."
PKG_IS_KERNEL_PKG="yes"
PKG_STAMP="$KERNEL_TARGET $KERNEL_MAKE_EXTRACMD $KERNEL_UBOOT_EXTRA_TARGET"
PKG_STAMP="$KERNEL_TARGET $KERNEL_MAKE_EXTRACMD"

PKG_PATCH_DIRS="$LINUX"

Expand Down Expand Up @@ -190,12 +190,6 @@ make_target() {
$SCRIPTS/install initramfs
)

if [ "$BOOTLOADER" = "u-boot" -a -n "$KERNEL_UBOOT_EXTRA_TARGET" ]; then
for extra_target in "$KERNEL_UBOOT_EXTRA_TARGET"; do
kernel_make $extra_target
done
fi

# arm64 target does not support creating uImage.
# Build Image first, then wrap it using u-boot's mkimage.
if [[ "$TARGET_KERNEL_ARCH" = "arm64" && "$KERNEL_TARGET" = uImage* ]]; then
Expand Down
3 changes: 0 additions & 3 deletions projects/Allwinner/options
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
# u-boot version to use (default)
UBOOT_VERSION="default"

# Kernel extra targets to build
KERNEL_UBOOT_EXTRA_TARGET=""

# Additional kernel make parameters (for example to specify the u-boot loadaddress)
KERNEL_MAKE_EXTRACMD="dtbs"

Expand Down
3 changes: 0 additions & 3 deletions projects/Generic/options
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
# Kernel target
KERNEL_TARGET="bzImage"

# Kernel extra targets to build
KERNEL_UBOOT_EXTRA_TARGET=""

# Additional kernel make parameters (for example to specify the u-boot loadaddress)
KERNEL_MAKE_EXTRACMD=""

Expand Down
3 changes: 0 additions & 3 deletions projects/RPi/options
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@
# Kernel target
KERNEL_TARGET="zImage"

# Kernel extra targets to build
KERNEL_UBOOT_EXTRA_TARGET=""

# Additional kernel make parameters (for example to specify the u-boot loadaddress)
KERNEL_MAKE_EXTRACMD="dtbs"

Expand Down
3 changes: 0 additions & 3 deletions projects/Rockchip/options
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
# Bootloader to use (syslinux / u-boot / bcm2835-bootloader)
BOOTLOADER="u-boot"

# Kernel extra targets to build
KERNEL_UBOOT_EXTRA_TARGET=""

# Kernel to use. values can be:
# default: default mainline kernel
LINUX="${LINUX:-rockchip-4.4}"
Expand Down

0 comments on commit 4d1699c

Please sign in to comment.