-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
package: jesd204b_status: Add JESD204B Status Monitoring Utility
And enable it in our microblaze default configs. Signed-off-by: Michael Hennerich <[email protected]>
- Loading branch information
1 parent
529a433
commit 2d936c0
Showing
5 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
config BR2_PACKAGE_JESD204B_STATUS | ||
bool "JESD204B Status Monitoring Utility" | ||
select BR2_PACKAGE_NCURSES | ||
help | ||
JESD204B Status Monitoring Utility | ||
https://wiki.analog.com/resources/tools-software/linux-software/jesd_status |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
################################################################################ | ||
# | ||
# jesd204b_status | ||
# | ||
################################################################################ | ||
|
||
|
||
JESD204B_STATUS_VERSION = 45a0eb36c480f11bc0799991a6663d5ff8fb3936 | ||
JESD204B_STATUS_SITE = https://github.com/analogdevicesinc/jesd-eye-scan-gtk.git | ||
JESD204B_STATUS_SITE_METHOD = git | ||
JESD204B_STATUS_LICENSE = BSD | ||
JESD204B_STATUS_LICENSE_FILES = LICENSE | ||
JESD204B_STATUS_DEPENDENCIES = ncurses | ||
|
||
define JESD204B_STATUS_BUILD_CMDS | ||
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) \ | ||
$(@D)/jesd_status.c $(@D)/jesd_common.c -o $(@D)/jesd_status -lncurses | ||
endef | ||
|
||
define JESD204B_STATUS_INSTALL_TARGET_CMDS | ||
$(INSTALL) -D -m 755 $(@D)/jesd_status $(TARGET_DIR)/usr/sbin/jesd_status | ||
endef | ||
|
||
$(eval $(generic-package)) |