diff options
author | jino.cho <jino.cho@samsung.com> | 2016-06-21 14:33:54 +0900 |
---|---|---|
committer | jino.cho <jino.cho@samsung.com> | 2016-06-21 14:33:54 +0900 |
commit | 8997a274d8159c3aac71652ee4d53d24097ad088 (patch) | |
tree | 183e589b1633b307b2060f506f90a3ac3e07f53a | |
parent | 801ab1503b3b6e310a64130f7206c33b80f0c2a7 (diff) | |
download | u-boot-artik-tizen_20160927.tar.gz u-boot-artik-tizen_20160927.tar.bz2 u-boot-artik-tizen_20160927.zip |
artik: configs: change attribute of installed files.tizen_20160927
u-boot.bin and params.bin don't need executable attribute.
Change-Id: Idb706b1bbde124b62cc9e7f6c4e11cb0e7c4aca5
Signed-off-by: jino.cho <jino.cho@samsung.com>
-rw-r--r-- | packaging/u-boot-artik.spec | 4 | ||||
-rw-r--r-- | packaging/u-boot-artik10.spec | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/packaging/u-boot-artik.spec b/packaging/u-boot-artik.spec index d840343a8..146453bd4 100644 --- a/packaging/u-boot-artik.spec +++ b/packaging/u-boot-artik.spec @@ -39,8 +39,8 @@ rm -rf %{buildroot} # u-boot installation mkdir -p %{buildroot}/boot/u-boot install -d %{buildroot}/boot/u-boot -install -m 755 u-boot.bin %{buildroot}/boot/u-boot -install -m 755 params.bin %{buildroot}/boot/u-boot +install -m 644 u-boot.bin %{buildroot}/boot/u-boot +install -m 644 params.bin %{buildroot}/boot/u-boot %clean diff --git a/packaging/u-boot-artik10.spec b/packaging/u-boot-artik10.spec index ae868a430..7f632a12b 100644 --- a/packaging/u-boot-artik10.spec +++ b/packaging/u-boot-artik10.spec @@ -39,8 +39,8 @@ rm -rf %{buildroot} # u-boot installation mkdir -p %{buildroot}/boot/u-boot install -d %{buildroot}/boot/u-boot -install -m 755 u-boot.bin %{buildroot}/boot/u-boot -install -m 755 params.bin %{buildroot}/boot/u-boot +install -m 644 u-boot.bin %{buildroot}/boot/u-boot +install -m 644 params.bin %{buildroot}/boot/u-boot %clean |