packaging: u-boot: remove u-boot-tools package 32/217232/1
authorSeung-Woo Kim <sw0312.kim@samsung.com>
Fri, 8 Nov 2019 01:48:55 +0000 (10:48 +0900)
committerSeung-Woo Kim <sw0312.kim@samsung.com>
Fri, 8 Nov 2019 01:49:03 +0000 (10:49 +0900)
Remove u-boot-tools package in u-boot.spec. For armv7l, The
u-boot-tools rpm is also building from u-boot-rpi3-32b.spec, so
no need duplicated packaging.

Change-Id: I7280e3add4079c66e1c8340f739b067427e49a58
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
packaging/u-boot.spec

index e5a3e74..fdb779b 100644 (file)
@@ -29,16 +29,6 @@ intended to be easy to port and to debug, and runs on many
 supported architectures, including PPC, ARM, MIPS, x86, m68k, NIOS,
 and Microblaze.
 
-%package -n u-boot-tools
-Summary: Companion tools for Das U-Boot bootloader
-Group: System/Kernel
-Provides: dtc
-
-%description -n u-boot-tools
-This package includes the mkimage program, which allows generation of U-Boot
-images in various formats, and the fw_printenv and fw_setenv programs to read
-and modify U-Boot's environment.
-
 %ifarch %{arm}
 %global use_mmc_storage 1
 %endif
@@ -91,13 +81,6 @@ rm copy_env_common.o default_envs.txt
 %install
 rm -rf %{buildroot}
 
-# Tools installation
-mkdir -p %{buildroot}%{_bindir}
-install -p -m 0755 tools/mkimage %{buildroot}%{_bindir}
-install -p -m 0755 tools/env/fw_printenv %{buildroot}%{_bindir}
-install -p -m 0755 tools/dtc/dtc %{buildroot}%{_bindir}
-( cd %{buildroot}%{_bindir}; ln -sf fw_printenv fw_setenv )
-
 # u-boot installation
 mkdir -p %{buildroot}/var/tmp/u-boot
 install -d %{buildroot}/var/tmp/u-boot
@@ -111,11 +94,3 @@ install -m 755 params.bin %{buildroot}/var/tmp/u-boot
 %manifest u_boot.manifest
 %defattr(-,root,root,-)
 /var/tmp/u-boot
-
-%files -n u-boot-tools
-%manifest u_boot.manifest
-%defattr(-,root,root,-)
-%{_bindir}/mkimage
-%{_bindir}/fw_printenv
-%{_bindir}/fw_setenv
-%{_bindir}/dtc