Accepting request 384345 from Base:System
1 OBS-URL: https://build.opensuse.org/request/show/384345 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=71
This commit is contained in:
parent
ee1fa58cf2
commit
12105bc013
@ -25,6 +25,8 @@ armv7_boards="$armv7_boards rpi_2"
|
||||
armv7_boards="$armv7_boards colibri_t20 paz00 jetson-tk1"
|
||||
# Rockchip
|
||||
armv7_boards="$armv7_boards firefly-rk3288"
|
||||
# Marvell
|
||||
armv7_boards="$armv7_boards clearfog"
|
||||
|
||||
aarch64_boards="p2371-2180 rpi_3"
|
||||
|
||||
@ -64,6 +66,7 @@ fi
|
||||
|
||||
OMAP_SPL=0
|
||||
ORIGEN_SPL=0
|
||||
ROCKCHIP_SPL=0
|
||||
SUNXI_SPL=0
|
||||
ARNDALE_SPL=0
|
||||
CUBOXI_SPL=0
|
||||
@ -99,6 +102,12 @@ udoo)
|
||||
BINEND=img
|
||||
UDOO_SPL=1
|
||||
;;
|
||||
firefly-rk3288)
|
||||
BINEND=img
|
||||
ROCKCHIP_SPL=1
|
||||
ROCKCHIP_SPL_IMAGE_TYPES="rksd rkimage"
|
||||
ROCKCHIP_SPL_SOC=rk3288
|
||||
;;
|
||||
|
||||
*) BINEND=bin ;;
|
||||
esac
|
||||
@ -109,6 +118,9 @@ s/ARCH_RESTRICTIONS/$ARCH_RESTRICTIONS/g
|
||||
s/BINEND/$BINEND/g
|
||||
s/ORIGEN_SPL/$ORIGEN_SPL/g
|
||||
s/ARNDALE_SPL/$ARNDALE_SPL/g
|
||||
s/ROCKCHIP_SPL_IMAGE_TYPES/$ROCKCHIP_SPL_IMAGE_TYPES/g
|
||||
s/ROCKCHIP_SPL_SOC/$ROCKCHIP_SPL_SOC/g
|
||||
s/ROCKCHIP_SPL/$ROCKCHIP_SPL/g
|
||||
s/SUNXI_SPL/$SUNXI_SPL/g
|
||||
s/TEGRA_SPL/$TEGRA_SPL/g
|
||||
s/CUBOXI_SPL/$CUBOXI_SPL/g
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 1
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 1
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 1
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 1
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 1
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 1
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 1
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 1
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 1
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 1
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
1098
u-boot-clearfog.changes
Normal file
1098
u-boot-clearfog.changes
Normal file
File diff suppressed because it is too large
Load Diff
194
u-boot-clearfog.spec
Normal file
194
u-boot-clearfog.spec
Normal file
@ -0,0 +1,194 @@
|
||||
#
|
||||
# spec file for package u-boot-clearfog
|
||||
#
|
||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
%define udoo_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2016.03
|
||||
|
||||
Name: u-boot-clearfog
|
||||
Version: 2016.03
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the clearfog arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
# Fix exynos KVM support
|
||||
Patch1: u-boot-exynos.patch
|
||||
# Add EFI support. Will be upstream in the next version of u-boot.
|
||||
Patch3: efi.patch
|
||||
Patch4: efi2.patch
|
||||
# Set default environment slightly different for EFI, so it finds our dtbs
|
||||
Patch5: efi-default-env.patch
|
||||
# Move omap3 to distro boot method
|
||||
Patch6: omap3-Move-to-distro-bootcmd.patch
|
||||
# efi: Run memory node fixups in device tree
|
||||
Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
||||
# Allow grub2 to find its config file
|
||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||
# Fix Raspberry Pi 1 build
|
||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||
# Ensure we mark the device tree as reserved
|
||||
Patch11: efi-map-fdt-as-reserved.patch
|
||||
Patch12: rpi3.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
# Arndale board need DTC >= 1.4
|
||||
BuildRequires: bc
|
||||
BuildRequires: dtc >= 1.4.0
|
||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||
# Owns /usr/share/qemu directory
|
||||
BuildRequires: qemu
|
||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
||||
# Owns /boot/vc directory
|
||||
BuildRequires: raspberrypi-firmware
|
||||
%endif
|
||||
Provides: u-boot-loader
|
||||
Conflicts: otherproviders(u-boot-loader)
|
||||
%if %x_loader == 1
|
||||
Obsoletes: x-loader-clearfog
|
||||
Provides: x-loader-clearfog
|
||||
%endif
|
||||
ExclusiveArch: armv7l armv7hl
|
||||
|
||||
%description
|
||||
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
|
||||
This package contains the firmware for the clearfog arm platform.
|
||||
|
||||
%package doc
|
||||
Summary: Documentation for the u-boot Firmware
|
||||
Group: Documentation/Other
|
||||
|
||||
%description doc
|
||||
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch1 -p1
|
||||
%patch3 -p1
|
||||
%patch4 -p1
|
||||
%patch5 -p1
|
||||
%patch6 -p1
|
||||
%patch7 -p1
|
||||
%patch8 -p1
|
||||
%patch9 -p1
|
||||
%patch11 -p1
|
||||
%patch12
|
||||
|
||||
%build
|
||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" clearfog_defconfig
|
||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||
# Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%define uboot_dir /boot
|
||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
||||
%define uboot_dir /boot/vc
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||
%define uboot_dir %{_datadir}/qemu
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
# Some times u-boot needs a dtb to configure itself appended to the binary.
|
||||
# In that case prefer the one with a working dtb already appended.
|
||||
if [ -f u-boot-dtb-tegra.bin ]; then
|
||||
install -D -m 0644 u-boot-dtb-tegra.bin %{buildroot}%{uboot_dir}/u-boot.bin
|
||||
elif [ -f u-boot-dtb.bin ]; then
|
||||
install -D -m 0644 u-boot-dtb.bin %{buildroot}%{uboot_dir}/u-boot.bin
|
||||
else
|
||||
install -D -m 0644 u-boot.bin %{buildroot}%{uboot_dir}/u-boot.bin
|
||||
fi
|
||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||
mv %{buildroot}%{uboot_dir}/u-boot.bin %{buildroot}%{uboot_dir}/u-boot.e500
|
||||
%endif
|
||||
%endif
|
||||
%if %x_loader == 1
|
||||
install -D -m 0755 MLO %{buildroot}/boot/MLO
|
||||
%endif
|
||||
%if %origen_spl == 1
|
||||
install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
%endif
|
||||
%if %arndale_spl == 1
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
%endif
|
||||
%if %cuboxi_spl == 1
|
||||
install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
||||
%endif
|
||||
%if %udoo_spl == 1
|
||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||
%endif
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{uboot_dir}/*
|
||||
%doc Licenses/gpl-2.0.txt README
|
||||
|
||||
%files doc
|
||||
%defattr(-,root,root)
|
||||
# Generic documents
|
||||
%doc doc/README.JFFS2 doc/README.JFFS2_NAND doc/README.commands
|
||||
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
|
||||
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
|
||||
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
|
||||
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
|
||||
# Copy some useful kermit scripts as well
|
||||
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
|
||||
# Now any h/w dependent Documentation
|
||||
%doc doc/README.ARM-memory-map
|
||||
|
||||
%changelog
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 1
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 1
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 1
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 1
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in rksd rkimage; do
|
||||
./tools/mkimage -n rk3288 -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,21 +129,21 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
# Some times u-boot needs a dtb to configure itself appended to the binary.
|
||||
# In that case prefer the one with a working dtb already appended.
|
||||
if [ -f u-boot-dtb-tegra.bin ]; then
|
||||
install -D -m 0644 u-boot-dtb-tegra.bin %{buildroot}%{uboot_dir}/u-boot.bin
|
||||
elif [ -f u-boot-dtb.bin ]; then
|
||||
install -D -m 0644 u-boot-dtb.bin %{buildroot}%{uboot_dir}/u-boot.bin
|
||||
install -D -m 0644 u-boot-dtb-tegra.img %{buildroot}%{uboot_dir}/u-boot.img
|
||||
elif [ -f u-boot-dtb.img ]; then
|
||||
install -D -m 0644 u-boot-dtb.img %{buildroot}%{uboot_dir}/u-boot.img
|
||||
else
|
||||
install -D -m 0644 u-boot.bin %{buildroot}%{uboot_dir}/u-boot.bin
|
||||
install -D -m 0644 u-boot.img %{buildroot}%{uboot_dir}/u-boot.img
|
||||
fi
|
||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||
mv %{buildroot}%{uboot_dir}/u-boot.bin %{buildroot}%{uboot_dir}/u-boot.e500
|
||||
mv %{buildroot}%{uboot_dir}/u-boot.img %{buildroot}%{uboot_dir}/u-boot.e500
|
||||
%endif
|
||||
%endif
|
||||
%if %x_loader == 1
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in rksd rkimage; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 1
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 1
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 1
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 1
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 1
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 1
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader 0
|
||||
%define origen_spl 0
|
||||
%define rockchip_spl 0
|
||||
%define sunxi_spl 0
|
||||
%define arndale_spl 0
|
||||
%define cuboxi_spl 0
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ; do
|
||||
./tools/mkimage -n -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package .img for firefly-rk3288
|
||||
- Package firefly-rk3288 SPL images. Generate them here so that we
|
||||
notice early if the size constraints are ever again not met.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de
|
||||
|
||||
- Add clearfog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
%define x_loader OMAP_SPL
|
||||
%define origen_spl ORIGEN_SPL
|
||||
%define rockchip_spl ROCKCHIP_SPL
|
||||
%define sunxi_spl SUNXI_SPL
|
||||
%define arndale_spl ARNDALE_SPL
|
||||
%define cuboxi_spl CUBOXI_SPL
|
||||
@ -110,6 +111,11 @@ make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=
|
||||
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
for t in ROCKCHIP_SPL_IMAGE_TYPES; do
|
||||
./tools/mkimage -n ROCKCHIP_SPL_SOC -d spl/u-boot-spl-dtb.bin -T $t u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
|
||||
%install
|
||||
export NO_BRP_STRIP_DEBUG=true
|
||||
@ -123,7 +129,7 @@ export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||
%endif
|
||||
%if "%{name}" == "u-boot-jetson-tk1"
|
||||
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do
|
||||
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||
done
|
||||
%else
|
||||
@ -150,6 +156,12 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||
%endif
|
||||
%if %rockchip_spl == 1
|
||||
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
|
||||
for t in ROCKCHIP_SPL_IMAGE_TYPES; do
|
||||
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||
done
|
||||
%endif
|
||||
%if %sunxi_spl == 1
|
||||
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||
|
Loading…
Reference in New Issue
Block a user