1package { 2 default_applicable_licenses: ["Android-Apache-2.0"], 3} 4 5prebuilt_etc { 6 name: "cuttlefish_crosvm_bootloader", 7 // We don't have u-boot for arm and x86. But Soong demands us to provide 8 // src anyway. Satisfy that by providing a bogus empty file as the src. 9 src: "empty", 10 arch: { 11 arm64: { 12 src: "crosvm_aarch64/u-boot.bin", 13 }, 14 x86_64: { 15 src: "crosvm_x86_64/u-boot.rom", 16 }, 17 }, 18 filename_from_src: true, 19} 20