From 1959156370b64cbec828aaa0582c8514bdbd7ffa Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 23 Aug 2019 18:47:46 +0800 Subject: [PATCH] fix Unix permissions, add shebangs --- experiments/dds_timing.py | 0 experiments/device_db.py | 0 experiments/mandelbrot.py | 0 experiments/minimal.py | 0 experiments/ttl.py | 0 experiments/wall_time.py | 0 firmware/Cargo.toml | 0 firmware/libboard_misoc/Cargo.toml | 0 firmware/libboard_misoc/lib.rs | 0 firmware/libboard_misoc/uart.rs | 0 firmware/libboard_misoc/uart_console.rs | 0 firmware/libksupport/Cargo.toml | 0 firmware/libksupport/api.rs | 0 firmware/libksupport/build.rs | 0 firmware/libksupport/glue.c | 0 firmware/libksupport/lib.rs | 0 firmware/libksupport/rtio.rs | 0 firmware/libunwind-rs/Cargo.toml | 0 firmware/libunwind-rs/build.rs | 0 firmware/libunwind-rs/lib.rs | 0 firmware/libunwind-rs/libunwind.rs | 0 firmware/runtime/Cargo.toml | 0 firmware/runtime/Makefile | 0 firmware/runtime/build.rs | 0 firmware/runtime/glue.c | 0 firmware/runtime/lscript.ld | 0 firmware/runtime/main.rs | 0 firmware/runtime/startup.S | 0 firmware/runtime/translation_table.S | 0 hp_dma.py | 0 maxi_dma.py | 0 ps7_init.tcl | 0 test_hp_dma.py | 2 ++ test_maxi_dma.py | 2 ++ test_rtio_dma.py | 2 ++ xilinx-tcl.cfg | 0 zedboard.py | 2 ++ 37 files changed, 8 insertions(+) mode change 100755 => 100644 experiments/dds_timing.py mode change 100755 => 100644 experiments/device_db.py mode change 100755 => 100644 experiments/mandelbrot.py mode change 100755 => 100644 experiments/minimal.py mode change 100755 => 100644 experiments/ttl.py mode change 100755 => 100644 experiments/wall_time.py mode change 100755 => 100644 firmware/Cargo.toml mode change 100755 => 100644 firmware/libboard_misoc/Cargo.toml mode change 100755 => 100644 firmware/libboard_misoc/lib.rs mode change 100755 => 100644 firmware/libboard_misoc/uart.rs mode change 100755 => 100644 firmware/libboard_misoc/uart_console.rs mode change 100755 => 100644 firmware/libksupport/Cargo.toml mode change 100755 => 100644 firmware/libksupport/api.rs mode change 100755 => 100644 firmware/libksupport/build.rs mode change 100755 => 100644 firmware/libksupport/glue.c mode change 100755 => 100644 firmware/libksupport/lib.rs mode change 100755 => 100644 firmware/libksupport/rtio.rs mode change 100755 => 100644 firmware/libunwind-rs/Cargo.toml mode change 100755 => 100644 firmware/libunwind-rs/build.rs mode change 100755 => 100644 firmware/libunwind-rs/lib.rs mode change 100755 => 100644 firmware/libunwind-rs/libunwind.rs mode change 100755 => 100644 firmware/runtime/Cargo.toml mode change 100755 => 100644 firmware/runtime/Makefile mode change 100755 => 100644 firmware/runtime/build.rs mode change 100755 => 100644 firmware/runtime/glue.c mode change 100755 => 100644 firmware/runtime/lscript.ld mode change 100755 => 100644 firmware/runtime/main.rs mode change 100755 => 100644 firmware/runtime/startup.S mode change 100755 => 100644 firmware/runtime/translation_table.S mode change 100755 => 100644 hp_dma.py mode change 100755 => 100644 maxi_dma.py mode change 100755 => 100644 ps7_init.tcl mode change 100755 => 100644 xilinx-tcl.cfg diff --git a/experiments/dds_timing.py b/experiments/dds_timing.py old mode 100755 new mode 100644 diff --git a/experiments/device_db.py b/experiments/device_db.py old mode 100755 new mode 100644 diff --git a/experiments/mandelbrot.py b/experiments/mandelbrot.py old mode 100755 new mode 100644 diff --git a/experiments/minimal.py b/experiments/minimal.py old mode 100755 new mode 100644 diff --git a/experiments/ttl.py b/experiments/ttl.py old mode 100755 new mode 100644 diff --git a/experiments/wall_time.py b/experiments/wall_time.py old mode 100755 new mode 100644 diff --git a/firmware/Cargo.toml b/firmware/Cargo.toml old mode 100755 new mode 100644 diff --git a/firmware/libboard_misoc/Cargo.toml b/firmware/libboard_misoc/Cargo.toml old mode 100755 new mode 100644 diff --git a/firmware/libboard_misoc/lib.rs b/firmware/libboard_misoc/lib.rs old mode 100755 new mode 100644 diff --git a/firmware/libboard_misoc/uart.rs b/firmware/libboard_misoc/uart.rs old mode 100755 new mode 100644 diff --git a/firmware/libboard_misoc/uart_console.rs b/firmware/libboard_misoc/uart_console.rs old mode 100755 new mode 100644 diff --git a/firmware/libksupport/Cargo.toml b/firmware/libksupport/Cargo.toml old mode 100755 new mode 100644 diff --git a/firmware/libksupport/api.rs b/firmware/libksupport/api.rs old mode 100755 new mode 100644 diff --git a/firmware/libksupport/build.rs b/firmware/libksupport/build.rs old mode 100755 new mode 100644 diff --git a/firmware/libksupport/glue.c b/firmware/libksupport/glue.c old mode 100755 new mode 100644 diff --git a/firmware/libksupport/lib.rs b/firmware/libksupport/lib.rs old mode 100755 new mode 100644 diff --git a/firmware/libksupport/rtio.rs b/firmware/libksupport/rtio.rs old mode 100755 new mode 100644 diff --git a/firmware/libunwind-rs/Cargo.toml b/firmware/libunwind-rs/Cargo.toml old mode 100755 new mode 100644 diff --git a/firmware/libunwind-rs/build.rs b/firmware/libunwind-rs/build.rs old mode 100755 new mode 100644 diff --git a/firmware/libunwind-rs/lib.rs b/firmware/libunwind-rs/lib.rs old mode 100755 new mode 100644 diff --git a/firmware/libunwind-rs/libunwind.rs b/firmware/libunwind-rs/libunwind.rs old mode 100755 new mode 100644 diff --git a/firmware/runtime/Cargo.toml b/firmware/runtime/Cargo.toml old mode 100755 new mode 100644 diff --git a/firmware/runtime/Makefile b/firmware/runtime/Makefile old mode 100755 new mode 100644 diff --git a/firmware/runtime/build.rs b/firmware/runtime/build.rs old mode 100755 new mode 100644 diff --git a/firmware/runtime/glue.c b/firmware/runtime/glue.c old mode 100755 new mode 100644 diff --git a/firmware/runtime/lscript.ld b/firmware/runtime/lscript.ld old mode 100755 new mode 100644 diff --git a/firmware/runtime/main.rs b/firmware/runtime/main.rs old mode 100755 new mode 100644 diff --git a/firmware/runtime/startup.S b/firmware/runtime/startup.S old mode 100755 new mode 100644 diff --git a/firmware/runtime/translation_table.S b/firmware/runtime/translation_table.S old mode 100755 new mode 100644 diff --git a/hp_dma.py b/hp_dma.py old mode 100755 new mode 100644 diff --git a/maxi_dma.py b/maxi_dma.py old mode 100755 new mode 100644 diff --git a/ps7_init.tcl b/ps7_init.tcl old mode 100755 new mode 100644 diff --git a/test_hp_dma.py b/test_hp_dma.py index 664350d..20f0ffb 100755 --- a/test_hp_dma.py +++ b/test_hp_dma.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + from migen import * from hp_dma import * diff --git a/test_maxi_dma.py b/test_maxi_dma.py index 72cec5e..14eeb61 100755 --- a/test_maxi_dma.py +++ b/test_maxi_dma.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + from migen import * from maxi_dma import * diff --git a/test_rtio_dma.py b/test_rtio_dma.py index b2ca64d..2161cdd 100755 --- a/test_rtio_dma.py +++ b/test_rtio_dma.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + from migen import * from maxi_dma import * diff --git a/xilinx-tcl.cfg b/xilinx-tcl.cfg old mode 100755 new mode 100644 diff --git a/zedboard.py b/zedboard.py index 61e0edb..0fbd44b 100755 --- a/zedboard.py +++ b/zedboard.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + from migen_axi.integration.soc_core import SoCCore from migen_axi.platforms import zedboard from migen import *