[GH-ISSUE #13] Problem with compiling package #8

Closed
opened 2026-03-04 12:06:52 +03:00 by kerem · 7 comments
Owner

Originally created by @Doanduy09 on GitHub (Oct 2, 2025).
Original GitHub issue: https://github.com/4IceG/luci-app-modemdata/issues/13

I did not build successfully, please help:

Index has 505 packages (of which 505 are new)
find /root/libwrt/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax -type d | xargs -r chmod 0755
rm -rf /root/libwrt/build_dir/target-aarch64_cortex-a53_musl/root-qualcommax /root/libwrt/build_dir/target-aarch64_cortex-a53_musl/root.orig-qualcommax
mkdir -p /root/libwrt/build_dir/target-aarch64_cortex-a53_musl/root-qualcommax/tmp
IPKG_INSTROOT=/root/libwrt/build_dir/target-aarch64_cortex-a53_musl/root-qualcommax /root/libwrt/staging_dir/host/bin/fakeroot /root/libwrt/staging_dir/host/bin/apk --root /root/libwrt/build_dir/target-aarch64_cortex-a53_musl/root-qualcommax --keys-dir /root/libwrt --no-logfile --preserve-env add --no-cache --initdb --no-scripts --arch aarch64_cortex-a53 \ 
--repositories-file /dev/null --repository file:///root/libwrt/staging_dir/packages/qualcommax/packages.adb \ 
$(cat /root/libwrt/tmp/apk_install_list) \ 
"base-files=1~57c2d8b4f0" \ 
"libc=1.2.5-r5" \ 
"kernel=6.12.49~c18f30a75c54b293c9a7bd5ac2cd0943-r1"
ERROR: unable to select packages: 
modemdata (no such package): 
required by: luci-app-modemdata-1.0.16-r20250927[modemdata]
make[2]: *** [package/Makefile:99: package/install] Error 2
make[2]: Leaving directory '/root/libwrt'
make[1]: *** [package/Makefile:178: /root/libwrt/staging_dir/target-aarch64_cortex-a53_musl/stamp/.package_install] Error 2
make[1]: Leaving directory '/root/libwrt'
make: *** [/root/libwrt/include/toplevel.mk:233: world] Error 2
root@debian:~/libwrt#

please see and support thank you

Originally created by @Doanduy09 on GitHub (Oct 2, 2025). Original GitHub issue: https://github.com/4IceG/luci-app-modemdata/issues/13 I did not build successfully, please help: ``` Index has 505 packages (of which 505 are new) find /root/libwrt/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax -type d | xargs -r chmod 0755 rm -rf /root/libwrt/build_dir/target-aarch64_cortex-a53_musl/root-qualcommax /root/libwrt/build_dir/target-aarch64_cortex-a53_musl/root.orig-qualcommax mkdir -p /root/libwrt/build_dir/target-aarch64_cortex-a53_musl/root-qualcommax/tmp IPKG_INSTROOT=/root/libwrt/build_dir/target-aarch64_cortex-a53_musl/root-qualcommax /root/libwrt/staging_dir/host/bin/fakeroot /root/libwrt/staging_dir/host/bin/apk --root /root/libwrt/build_dir/target-aarch64_cortex-a53_musl/root-qualcommax --keys-dir /root/libwrt --no-logfile --preserve-env add --no-cache --initdb --no-scripts --arch aarch64_cortex-a53 \ --repositories-file /dev/null --repository file:///root/libwrt/staging_dir/packages/qualcommax/packages.adb \ $(cat /root/libwrt/tmp/apk_install_list) \ "base-files=1~57c2d8b4f0" \ "libc=1.2.5-r5" \ "kernel=6.12.49~c18f30a75c54b293c9a7bd5ac2cd0943-r1" ERROR: unable to select packages: modemdata (no such package): required by: luci-app-modemdata-1.0.16-r20250927[modemdata] make[2]: *** [package/Makefile:99: package/install] Error 2 make[2]: Leaving directory '/root/libwrt' make[1]: *** [package/Makefile:178: /root/libwrt/staging_dir/target-aarch64_cortex-a53_musl/stamp/.package_install] Error 2 make[1]: Leaving directory '/root/libwrt' make: *** [/root/libwrt/include/toplevel.mk:233: world] Error 2 root@debian:~/libwrt# ``` please see and support thank you
kerem closed this issue 2026-03-04 12:06:52 +03:00
Author
Owner

@4IceG commented on GitHub (Oct 2, 2025):

Hi @Doanduy09

You have indicated where error is:

ERROR: unable to select packages:
modemdata (no such package):
required by: luci-app-modemdata-1.0.16-r20250927[modemdata]

Did you download modemdata package from Cezary?

Luci-app-modemdata has in dependencies the modemdata package.

<!-- gh-comment-id:3361617592 --> @4IceG commented on GitHub (Oct 2, 2025): Hi @Doanduy09 You have indicated where error is: > ERROR: unable to select packages: > modemdata (no such package): > required by: luci-app-modemdata-1.0.16-r20250927[modemdata] Did you download [modemdata](https://github.com/obsy/modemdata) package from Cezary? Luci-app-modemdata has in dependencies the modemdata package.
Author
Owner

@Jalakas commented on GitHub (Oct 2, 2025):

I have same problem.

I have included modemdata feed:

$ cat feeds.conf | grep modemdata
src-git luciappmodemdata https://github.com/4IceG/luci-app-modemdata
src-git modemdata https://github.com/obsy/modemdata

adding modemdata package fails:

$ ./scripts/feeds install -a
...
Installing all packages from feed luciappmodemband.
Installing all packages from feed modemdata.
Ignoring feed 'modemdata' - index missing
Installing all packages from feed packages.

because this problem:

$ ./scripts/feeds update -a
...
Updating feed 'luciappmodemdata' from 'https://github.com/4IceG/luci-app-modemdata' ...
Already up to date.
Updating feed 'modemdata' from 'https://github.com/obsy/modemdata' ...
Already up to date.
...
Create index file './feeds/luciappmodemdata.index'
Create index file './feeds/modemdata.index'
./openwrt/feeds/modemdata.tmp/info/.files-packageinfo.mk:1: *** target pattern contains no '%'. Stop.

<!-- gh-comment-id:3362084356 --> @Jalakas commented on GitHub (Oct 2, 2025): I have same problem. I have included modemdata feed: > $ cat feeds.conf | grep modemdata > src-git luciappmodemdata https://github.com/4IceG/luci-app-modemdata > src-git modemdata https://github.com/obsy/modemdata adding modemdata package fails: > $ ./scripts/feeds install -a > ... > Installing all packages from feed luciappmodemband. > Installing all packages from feed modemdata. > **Ignoring feed 'modemdata' - index missing** > Installing all packages from feed packages. because this problem: > $ ./scripts/feeds update -a > ... > Updating feed 'luciappmodemdata' from 'https://github.com/4IceG/luci-app-modemdata' ... > Already up to date. > Updating feed 'modemdata' from 'https://github.com/obsy/modemdata' ... > Already up to date. > ... > Create index file './feeds/luciappmodemdata.index' > Create index file './feeds/modemdata.index' > **./openwrt/feeds/modemdata.tmp/info/.files-packageinfo.mk:1: *** target pattern contains no '%'. Stop.**
Author
Owner

@4IceG commented on GitHub (Oct 2, 2025):

@Doanduy09 @Jalakas I am not sure what is broken.

And if add packages manually to

\package\modemdata
\package\luci-app-modemdata

do they compile correctly?

<!-- gh-comment-id:3362155963 --> @4IceG commented on GitHub (Oct 2, 2025): @Doanduy09 @Jalakas I am not sure what is broken. And if add packages manually to ``` \package\modemdata \package\luci-app-modemdata ``` do they compile correctly?
Author
Owner

@Doanduy09 commented on GitHub (Oct 2, 2025):

@Doanduy09 @Jalakas I am not sure what is broken.

And if add packages manually to

\package\modemdata
\package\luci-app-modemdata

do they compile correctly?
thank you i have build successfully

<!-- gh-comment-id:3363617063 --> @Doanduy09 commented on GitHub (Oct 2, 2025): > [@Doanduy09](https://github.com/Doanduy09) [@Jalakas](https://github.com/Jalakas) I am not sure what is broken. > > And if add packages manually to > > ``` > \package\modemdata > \package\luci-app-modemdata > ``` > > do they compile correctly? thank you i have build successfully
Author
Owner

@Doanduy09 commented on GitHub (Oct 3, 2025):

@Doanduy09 @Jalakas I am not sure what is broken.

And if add packages manually to

\package\modemdata
\package\luci-app-modemdata

do they compile correctly?

but it still has a small error, please help fix it, thank you

Image
<!-- gh-comment-id:3363733216 --> @Doanduy09 commented on GitHub (Oct 3, 2025): > [@Doanduy09](https://github.com/Doanduy09) [@Jalakas](https://github.com/Jalakas) I am not sure what is broken. > > And if add packages manually to > > ``` > \package\modemdata > \package\luci-app-modemdata > ``` > > do they compile correctly? but it still has a small error, please help fix it, thank you <img width="2560" height="1600" alt="Image" src="https://github.com/user-attachments/assets/2a86cc62-7beb-4d1c-9616-ceee7c7fa2de" />
Author
Owner

@Jalakas commented on GitHub (Oct 4, 2025):

Feed 'modemdata' - index is fixed now for me after commit github.com/obsy/modemdata@f3a71ad4e9.

<!-- gh-comment-id:3367973730 --> @Jalakas commented on GitHub (Oct 4, 2025): Feed 'modemdata' - index is fixed now for me after commit https://github.com/obsy/modemdata/commit/f3a71ad4e9bc1d8a2abbcc3dce7fc709b5dc2b44.
Author
Owner

@4IceG commented on GitHub (Oct 4, 2025):

If so, I'm closing this.

<!-- gh-comment-id:3367976287 --> @4IceG commented on GitHub (Oct 4, 2025): If so, I'm closing this.
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/luci-app-modemdata#8
No description provided.