You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
define Build/Compile
|
|
$(call Build/Compile/Default)
|
|
$(TARGET_CC) -o $(PKG_BUILD_DIR)/patch-cmdline $(PLATFORM_DIR)/src/patch-cmdline.c
|
|
endef
|
|
|
|
define Package/base-files/install-target
|
|
mkdir -p $(1)/sbin
|
|
$(CP) $(PKG_BUILD_DIR)/patch-cmdline $(1)/sbin
|
|
endef
|
|
|
|
|
|
|