Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ clean:
distclean:
@rm -rf $(BR_FILE) $(TARGET)

audit-abi:
@python3 $(PWD)/general/scripts/audit-vendor-abi.py

deps:
sudo apt-get install -y automake autotools-dev bc build-essential cpio \
curl file fzf git libncurses-dev libtool lzop make rsync unzip wget libssl-dev
Expand Down
1 change: 1 addition & 0 deletions general/package/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ source "$BR2_EXTERNAL_GENERAL_PATH/package/ssv615x-openipc/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/ssv635x-openipc/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/ssw101b/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/uacme-openipc/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/uclibc-compat/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/uqmi-openipc/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/usrsctp/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/vdec-openipc/Config.in"
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@ HISILICON_OSDRV_HI3516CV100_VERSION =
HISILICON_OSDRV_HI3516CV100_SITE =
HISILICON_OSDRV_HI3516CV100_LICENSE = MIT
HISILICON_OSDRV_HI3516CV100_LICENSE_FILES = LICENSE

define HISILICON_OSDRV_HI3516CV100_BUILD_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(HISILICON_OSDRV_HI3516CV100_PKGDIR)/libhisicompat all
endef
HISILICON_OSDRV_HI3516CV100_DEPENDENCIES = uclibc-compat

define HISILICON_OSDRV_HI3516CV100_INSTALL_TARGET_CMDS
$(INSTALL) -m 755 -d $(TARGET_DIR)/etc/sensors
Expand Down Expand Up @@ -92,7 +89,6 @@ define HISILICON_OSDRV_HI3516CV100_INSTALL_TARGET_CMDS
$(INSTALL) -m 644 -t $(TARGET_DIR)/usr/lib $(HISILICON_OSDRV_HI3516CV100_PKGDIR)/files/lib/libVoiceEngine.so
$(INSTALL) -m 644 -t $(TARGET_DIR)/usr/lib $(HISILICON_OSDRV_HI3516CV100_PKGDIR)/files/lib/libvqev2.so

$(INSTALL) -D -m 0755 $(HISILICON_OSDRV_HI3516CV100_PKGDIR)/libhisicompat/libhisicompat.so $(TARGET_DIR)/usr/lib
endef

$(eval $(generic-package))

This file was deleted.

Binary file not shown.

This file was deleted.

7 changes: 7 additions & 0 deletions general/scripts/audit-vendor-abi.allow
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Allowlist for audit-vendor-abi.py
# Format: <package-name>/files/<path-to-binary>:<symbol>
# Lines starting with # are comments.
#
# Entries here suppress findings for symbols that are known to be
# handled by compatibility shims or otherwise confirmed safe.
# Only add entries after verifying the shim actually covers the call.
Loading
Loading