removed openipc suffix from package name

pull/1886/head
Daniel Banar 2025-09-22 15:18:47 +02:00
parent 48fe1d4699
commit 619a13c51b
5 changed files with 7 additions and 7 deletions

View File

@ -13,7 +13,7 @@ source "$BR2_EXTERNAL_GENERAL_PATH/package/divinus/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/dropbear-openipc/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/exfat-openipc/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/f2fs-tools-openipc/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/fake-hwclock-openipc/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/fake-hwclock/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/fdk-aac-openipc/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/ffmpeg-openipc/Config.in"
source "$BR2_EXTERNAL_GENERAL_PATH/package/fullhan-osdrv-fh8852v100/Config.in"

View File

@ -1,5 +1,5 @@
config BR2_PACKAGE_FAKE_HWCLOCK_OPENIPC
bool "fake-hwclock-openipc"
config BR2_PACKAGE_FAKE_HWCLOCK
bool "fake-hwclock"
help
Restores system time from a file on boot, saves the current time, or periodically updates a timestamp file to maintain time on systems without a hardware RTC.

View File

@ -1,15 +1,15 @@
################################################################################
#
# fake-hwclock-openipc
# fake-hwclock
#
################################################################################
define FAKE_HWCLOCK_OPENIPC_INSTALL_TARGET_CMDS
define FAKE_HWCLOCK_INSTALL_TARGET_CMDS
$(INSTALL) -m 755 -d $(TARGET_DIR)/etc/init.d
$(INSTALL) -m 755 -t $(TARGET_DIR)/etc/init.d $(FAKE_HWCLOCK_OPENIPC_PKGDIR)/files/S39fakehwclock
$(INSTALL) -m 755 -t $(TARGET_DIR)/etc/init.d $(FAKE_HWCLOCK_PKGDIR)/files/S39fakehwclock
$(INSTALL) -m 755 -d $(TARGET_DIR)/usr/bin
$(INSTALL) -m 755 -t $(TARGET_DIR)/usr/bin $(FAKE_HWCLOCK_OPENIPC_PKGDIR)/files/fake-hwclock
$(INSTALL) -m 755 -t $(TARGET_DIR)/usr/bin $(FAKE_HWCLOCK_PKGDIR)/files/fake-hwclock
endef
$(eval $(generic-package))